diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3433/CH10/EX10.7/Ex10_7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3433/CH10/EX10.7/Ex10_7.sce')
-rw-r--r-- | 3433/CH10/EX10.7/Ex10_7.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/3433/CH10/EX10.7/Ex10_7.sce b/3433/CH10/EX10.7/Ex10_7.sce new file mode 100644 index 000000000..7942aaeef --- /dev/null +++ b/3433/CH10/EX10.7/Ex10_7.sce @@ -0,0 +1,33 @@ +clear;
+clc;
+funcprot(0);
+
+//given data
+//data from Exampla 10.5
+Z = 3;//number of blades
+D = 30;//rotor diameter in m
+J = 5.0;//tip-speed ratio
+l = 1.0;//blade chord in m
+beta = 2;//pitch angle in deg
+omega = 2.5;//in rad/s
+
+rho = 1.2;//density in kg/m^3
+cx1 = 7.5;//in m/s
+sum_var1 = 6.9682;//from Table 10.3
+sum_var2 = 47.509*10^-3;//from Table 10.4
+
+//Calculations
+X = sum_var1*0.5*rho*Z*l*0.5*D*cx1^2;
+tau = sum_var2*0.5*rho*Z*l*(omega^2)*(0.5*D)^4;
+P = tau*omega;
+A2 = 0.25*%pi*D^2;
+P0 = 0.5*rho*A2*cx1^3;
+Cp = P/P0;
+zeta = (27/16)*Cp;
+
+//Results
+printf('The total axial force = %d N.',X);
+printf('\n The torque = %.3f *10^3 Nm.',tau/1000);
+printf('\n The power developed = %.3f kW.',P/1000);
+printf('\n The power coefficient = %.3f',Cp);
+printf('\n The relative power coefficient = %.3f',zeta);
|