diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2066/CH9/EX9.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2066/CH9/EX9.1')
-rwxr-xr-x | 2066/CH9/EX9.1/9_1a.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2066/CH9/EX9.1/9_1a.sce b/2066/CH9/EX9.1/9_1a.sce new file mode 100755 index 000000000..ac3110760 --- /dev/null +++ b/2066/CH9/EX9.1/9_1a.sce @@ -0,0 +1,18 @@ +clc
+clear
+//Initialization of variables
+rho=2.45 //slugs/ft^3
+mu=9.2e-3 //lb-sec/ft^2
+x=3
+v=3 //ft/s
+B=6/12 //ft
+L=36/12 //ft
+//calculatons
+Nr=v*x*rho/mu
+y=[1.32 1.46 1.328]
+Cd=y*Nr^(-0.5)
+Fd=2*Cd*B*L*(0.5*rho*v^2)
+//results
+disp("Drag on the plates using different formulae blasius, parabola and pohlhauser in order")
+format('v',6);Fd
+disp(Fd)
|