From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2223/CH18/EX18.26/Ex18_26.sav | Bin 0 -> 64992 bytes 2223/CH18/EX18.26/Ex18_26.sce | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100755 2223/CH18/EX18.26/Ex18_26.sav create mode 100755 2223/CH18/EX18.26/Ex18_26.sce (limited to '2223/CH18/EX18.26') diff --git a/2223/CH18/EX18.26/Ex18_26.sav b/2223/CH18/EX18.26/Ex18_26.sav new file mode 100755 index 000000000..8d52b7e96 Binary files /dev/null and b/2223/CH18/EX18.26/Ex18_26.sav differ diff --git a/2223/CH18/EX18.26/Ex18_26.sce b/2223/CH18/EX18.26/Ex18_26.sce new file mode 100755 index 000000000..559dbb57e --- /dev/null +++ b/2223/CH18/EX18.26/Ex18_26.sce @@ -0,0 +1,26 @@ +// scilab Code Exa 18.24 Calculation on an axial compressor cascade + +R=0.5906; // Degree of reaction +beta1=66; +beta2=22; +alpha2=61; +p_R=0.865; // pitch-chord ratio(s/l) for rotor +p_S=0.963; // pitch-chord ratio(s/l) for stator +alpha_3=beta2; // air angle at rotor and stator exit +u=100; // test section velocity of air in m/s +Y_D=0.077; // profile loss coefficient for stator blade row +Y_R=0.08; // loss coefficient for rotor blade row +beta_m=atand(0.5*(tand(beta1)+tand(beta2))); +C_D_R=p_R*Y_R*(cosd(beta_m)^3)/(cosd(beta1)^2); +C_L_R=(2*p_R*(tand(beta1)-tand(beta2))*cosd(beta_m))-(C_D_R*tand(beta_m)); +n_R=1-(2*C_D_R/(C_L_R*sind(2*beta_m))); +disp("%",n_R*1e2,"the value of rotor cascade efficiency is") + +alpham=atand(0.5*(tand(alpha2)+tand(alpha_3))); +C_D_S=p_S*Y_D*(cosd(alpham)^3)/(cosd(alpha2)^2); +C_L_S=(2*p_S*(tand(alpha2)-tand(alpha_3))*cosd(alpham))-(C_D_S*tand(alpham)); +n_D=1-(2*C_D_S/(C_L_S*sind(2*alpham))); +disp("%",n_D*1e2,"the value of diffuser cascade efficiency is") + +n_st=R*n_R+(1-R)*n_D; +disp("%",n_st*1e2,"the value of stage efficiency is") -- cgit