From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 51/CH3/EX3.10/3_10.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 51/CH3/EX3.10/3_10.sce (limited to '51/CH3/EX3.10/3_10.sce') 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 -- cgit