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 /51/CH3/EX3.10 | |
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 '51/CH3/EX3.10')
-rwxr-xr-x | 51/CH3/EX3.10/3_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/51/CH3/EX3.10/3_10.sce b/51/CH3/EX3.10/3_10.sce new file mode 100755 index 000000000..a8c5e298e --- /dev/null +++ b/51/CH3/EX3.10/3_10.sce @@ -0,0 +1,16 @@ +clc;
+clear;
+T=60;//degree farenheit
+z1=5;//ft
+atmp=14.7;//psia
+//applying bernoulli equation at points 1,2 and 3
+z3=-5;//ft
+v1=0;//large tank
+p1=0;//open tank
+p3=0;//open jet
+//applying continuity equation A2*v2=A3*v3; A2=A3; so v2=v3
+v3=(2*32.2*(z1-z3))^0.5;
+//vapor pressure of water at 60 degree farenheit = p2=0.256 psia
+p2=0.256;
+z2=z1-((((p2-atmp)*144)+(0.5*1.94*v3^2))/62.4);
+disp("ft",z2,"The maximum height over which the water can be siphoned without cavitation occuring=")
\ No newline at end of file |