diff options
Diffstat (limited to '2223/CH11/EX11.7/Ex11_7.sce')
-rwxr-xr-x | 2223/CH11/EX11.7/Ex11_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2223/CH11/EX11.7/Ex11_7.sce b/2223/CH11/EX11.7/Ex11_7.sce new file mode 100755 index 000000000..1c1c510eb --- /dev/null +++ b/2223/CH11/EX11.7/Ex11_7.sce @@ -0,0 +1,16 @@ +// scilab Code Exa 11.7 flow and loading coefficients
+u=339.29; // in m/s
+cx=180; // Axial velocity in m/s
+alpha_1m=25; // air angle at rotor and stator exit
+phi(1)=0.2;
+phi(2)=0.4;
+phi(3)=cx/u;
+phi(4)=0.6;
+phi(5)=0.8;
+n=5;
+for i=1:n
+ shi(i)=1-phi(i)*(2*tand(alpha_1m));
+ disp(phi(i),"when flow coefficient phi=")
+ disp(shi(i),"then loading coefficient shi=")
+end
+
|