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/CH4/EX4.2 | |
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/CH4/EX4.2')
-rwxr-xr-x | 2159/CH4/EX4.2/42.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2159/CH4/EX4.2/42.sce b/2159/CH4/EX4.2/42.sce new file mode 100755 index 000000000..4aabd5e86 --- /dev/null +++ b/2159/CH4/EX4.2/42.sce @@ -0,0 +1,14 @@ +// problem 4.2
+q=0.0982
+d=0.12
+H=10
+x=4.5
+y=0.54
+g=9.81
+Vth=(2*g*H)^0.5
+a=3.142*d*d/4
+Qth=Vth*a
+Cd=q/Qth
+Cv=((x*x)/(4*y*H))^0.5
+Cc=Cd/Cv
+disp(Cc,Cv,Cd,"Cd ,Cv, Cc of the orifice")
|