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 /3720/CH14/EX14.6 | |
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 '3720/CH14/EX14.6')
-rw-r--r-- | 3720/CH14/EX14.6/Ex14_6.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3720/CH14/EX14.6/Ex14_6.sce b/3720/CH14/EX14.6/Ex14_6.sce new file mode 100644 index 000000000..9226165e3 --- /dev/null +++ b/3720/CH14/EX14.6/Ex14_6.sce @@ -0,0 +1,28 @@ +//Example 14_6
+clc;clear;
+// Properties
+//For refrigerant R-134a at T=20°C
+v_f=0.0008157; // m^3/kg
+rho=1/v_f; // kg/m^3
+// Given values
+r_1=0.100;
+r_2=0.180;// The impeller inlet and outlet radii in m
+b_1=0.050;
+b_2=0.030;//The impeller inlet and outlet widths in m
+v=0.25;// m^3/s
+H=14.5; // Net head in m
+n=1720;// rpm
+g=9.81; // m/s^2
+
+// Calculation
+W_whp=rho*g*v*H;// The required water horsepower in W
+// We assume 100 percent efficiency such that bhp is approximately equal to W_whp
+bhp=W_whp/745.7;//The required brake horsepower in hp
+printf('The required brake horsepower,bhp=%0.0f hp\n',bhp);
+omega=(2*%pi*n)/60;
+beta_1=atand(v/(2*%pi*b_1*omega*r_1^2));
+printf('The blade inlet angle ,beta_1=%0.0f degree\n',beta_1);
+V_2t=(g*H)/(omega*r_2);
+V_2n=(v)/(2*%pi*r_2*b_2);
+beta_2=atand(V_2n/((omega*r_2)-V_2t));
+printf('The trailing edge blade angle ,beta_2=%0.0f degree\n',beta_2);
|