diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3751/CH5/EX5.14/Ex5_14.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3751/CH5/EX5.14/Ex5_14.sce')
-rw-r--r-- | 3751/CH5/EX5.14/Ex5_14.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3751/CH5/EX5.14/Ex5_14.sce b/3751/CH5/EX5.14/Ex5_14.sce new file mode 100644 index 000000000..335ef4025 --- /dev/null +++ b/3751/CH5/EX5.14/Ex5_14.sce @@ -0,0 +1,27 @@ +//Fluid Systems- By Shiv Kumar +//Chapter 5- Francis Turbine +//Example 5.14 +//To Find the Pressure Head at the Entrance. + + clc + clear + +//Given Data:- + Vo=5.6; //Velocity at Inlet, m/s + Vd=1.4; //Velocity at Outlet, m/s + h_f=0.12; //Friction Losses, m + Ho=5.2; //Vertical Height betwen tail-race and entrance of Draft-tube, m + +//Data Required:- + g=9.81; //Acceleration due to gravity, m/s^2 + +//Calculations:- + //Applying Bernoulli's Equation with, + Z2=0; + pa_by_rho_g=0; + p1_by_rho_g=pa_by_rho_g+(Vd^2-Vo^2)/(2*g)+Z2-Ho+h_f; //m + +//Results:- + printf("The Pressure Head at Entrance, p1/(rho*g)=%.3f m\n",p1_by_rho_g) + + |