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/CH7/EX7.11 | |
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/CH7/EX7.11')
-rw-r--r-- | 3751/CH7/EX7.11/Ex7_11.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/3751/CH7/EX7.11/Ex7_11.sce b/3751/CH7/EX7.11/Ex7_11.sce new file mode 100644 index 000000000..4c0f85df2 --- /dev/null +++ b/3751/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,33 @@ +//Fluid Systems- By Shiv Kumar +//Chapter 7- Performance of Water Turbine +//Example 7.11 +// To Find (a)Power Developed by Model (b)Ratio of Heads and Ratio of Mass Flow Rates between Prototype and Model. + clc + clear + +//Given:- + Pp=12; //Power Developed by Prototype,MW + Lr=1/10; //Scale Ratio + DmbyDp=Lr; + LmbyLp=Lr; + + +//Computations:- + + //(a)Power Developed by the Model + //As Np=Nm and effeciencies of prototype and model are equal + Pm=Pp*10^6*(DmbyDp)^5; //W + + //(b)Ratio of Heads and Ratio of Mass flow Rates + HpbyHm=DmbyDp^(-2); //Dimensionless + QpbyQm=DmbyDp^(-3) + //As m=rho*Q and rho is Constant. So, + m_pbym_m=QpbyQm; + +//Results + + printf("(a)Power Developed by the Model,Pm=%.f W\n",Pm) + printf(" (b)Ratio of Heads, Hp/Hm=%.f\n Ratio of Mass flow rates, m_p/m_m=%.f\n",HpbyHm,m_pbym_m) + + + |