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/CH6/EX6.4 | |
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/CH6/EX6.4')
-rw-r--r-- | 3751/CH6/EX6.4/Ex6_4.sce | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/3751/CH6/EX6.4/Ex6_4.sce b/3751/CH6/EX6.4/Ex6_4.sce new file mode 100644 index 000000000..ffbb756b6 --- /dev/null +++ b/3751/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,48 @@ +//Fluid System By Shiv Kumar
+//Chapter 6 - Kaplan and Propeller Turbines
+//Example 6.4
+//To Find (a)Discharge (b)Hydraulic Efficiency (c)Overall Efficiency (d)Specific Speed
+
+ clc
+ clear
+
+//Given:
+ N=30 //Speed, rpm
+ Alpha_i=31; //Inlet Guide Vane Angle, Degrees
+ Beta_i=90; //Inlet Runner Vane Angle, Degrees
+ Beta_o=24; //Outlet Runner Vane Angle, Degrees
+ Dm=4; //Mean Diameter of Runner, m
+ A=31; //Area of Flow, m^2
+ ML=5; //Percent of Mechanical Loss
+//Data Required:
+ rho=1000; //Density of Water, Kg/m^3
+ g=9.81; //Acceleration due to gravity, m/s^2
+
+//Computations
+
+ u=%pi*Dm*N/60; //Velocity of runner, m/s
+ ui=u;
+ uo=u;
+ Vwi=ui;
+ Vfi=ui*tand(Alpha_i); //m/s
+ Vf=Vfi;
+ Vfo=Vfi;
+ Vrwo=Vfo/tand(Beta_o); //m/s
+ Vwo=Vrwo-uo;
+ Vo=sqrt(Vfo^2+Vwo^2); //m/s
+//(a)Discharge, Q
+ Q=A*Vfi; //m^3/s
+//(b) Hydraulic Efficiency, eta_H
+ H= (Vwi+Vwo) *u/g+Vo^2/(2*g); // Head, m
+ eta_H=(Vwi*ui+Vwo*uo)*100/(g*H); //Percent(%)
+//(c)Overall Efficiency, eta_o
+ P=rho*Q*(Vwi+Vwo)*u*(1-ML/100); //Shaft Power, Watt(w)
+ eta_o=P/(rho*Q*g*H)*100; //Percent(%)
+//(d)Specific Speed,Ns
+ Ns=N*sqrt(P/1000)/(H^(5/4)); //SI Units
+
+//Results
+ printf("(a)Discharge, Q=%.2f m^3/s\n",Q) //The answer vary due to round off error
+ printf("(b) Hydraulic Efficiency, eta_H =%.2f Percent\n", eta_H) //The answer vary due to round off error
+ printf("(c) Overall Efficiency, eta_o =%.2f Percent\n", eta_o) //The answer vary due to round off error
+ printf("(d)Specific Speed, Ns =%.2f (SI Units)\n", Ns) //The answer vary due to round off error
|