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 /3785/CH5/EX5.13/Ex5_13.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 '3785/CH5/EX5.13/Ex5_13.sce')
-rw-r--r-- | 3785/CH5/EX5.13/Ex5_13.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3785/CH5/EX5.13/Ex5_13.sce b/3785/CH5/EX5.13/Ex5_13.sce new file mode 100644 index 000000000..e77b1d298 --- /dev/null +++ b/3785/CH5/EX5.13/Ex5_13.sce @@ -0,0 +1,20 @@ +// Example 5_13
+clc;funcprot(0);
+// Given data
+h=100;// Height in m
+A_n=1.0;// The area of the turbine jet stream in in^2
+alpha=20;// The blade angle in degree
+g=9.807;// The acceleration due to gravity in m/s^2
+rho=1*10^3;// The density of water in kg/m^3
+
+// Calculation
+// (a)
+V_n=sqrt(2*g*h);// The nozzle velocity V_n in m/s
+printf("\n(a)The nozzle velocity V_n=%2.2f m/s",V_n);
+// (b)
+maxP_b=((1+cosd(alpha))/2)*(rho*(A_n*2.54*10^-2)^2*(V_n^3/2))/1000;// The maximum power P, of the turbine in kW
+printf("\n(b)The maximum power P_t of the turbine is %2.2f kW.",maxP_b);
+// (c)
+V_b=V_n/2;// The blade speed in m/s
+F_b=rho*(A_n*2.54*10^-2)^2*(V_n-V_b)^2*(1+cosd(alpha));// The force in N
+printf("\n(c)The blade speed,V_b=%2.2f m/s \n The force when maximum power is being produced,F_b=%3.1f N",V_b,F_b);
|