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 /2159/CH3/EX3.7 | |
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 '2159/CH3/EX3.7')
-rwxr-xr-x | 2159/CH3/EX3.7/37.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2159/CH3/EX3.7/37.sce b/2159/CH3/EX3.7/37.sce new file mode 100755 index 000000000..b3468e76d --- /dev/null +++ b/2159/CH3/EX3.7/37.sce @@ -0,0 +1,14 @@ +// problem 3.7
+q=0.1
+d1=0.2
+Cd=0.9
+H=0.4
+s1=1
+s2=13.6
+g=9.8
+h=H*((s2/s1)-1)
+a1=3.142*d1*d1/4
+z=1+(((Cd*a1*((2*g*h)^0.5))/q)^2)
+a2=((a1^2)/z)^0.5
+d2=(4*a2/3.1)^0.5
+disp(d2,"diameter of throat in m")
|