summaryrefslogtreecommitdiff
path: root/3511/CH9/EX9.3/Ex9_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3511/CH9/EX9.3/Ex9_3.sce')
-rw-r--r--3511/CH9/EX9.3/Ex9_3.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/3511/CH9/EX9.3/Ex9_3.sce b/3511/CH9/EX9.3/Ex9_3.sce
new file mode 100644
index 000000000..f6fc103fe
--- /dev/null
+++ b/3511/CH9/EX9.3/Ex9_3.sce
@@ -0,0 +1,28 @@
+clc;
+beta_1=45; // Inlet blade angle in degree
+beta_2=10; // Outlet blade angle in degree
+rp=6; // Compressor pressure ratio
+eff_C=0.85;// Overall isentropic efficiency
+T1=37+273; // Inet static temperature in kelvin
+u=200; // Blade speed in m/s
+Cp=1005; // Specific heat in J/kg K
+r=1.4; // Specific heat ratio
+R=287; // Characteristic gas constant in J/kg K
+
+// (i). wf=1
+wf=1; // Work factor
+ca=u/(tand(beta_1)+tand(beta_2)); // Axial velocity
+Del_Tstage=wf*u*ca*(tand(beta_1)-tand(beta_2))/Cp; // Stage temperature drop
+Del_Toverall=(T1*(rp^((r-1)/r)-1))/eff_C; // Overall temperature drop
+n=Del_Toverall/Del_Tstage; // No of stages
+
+disp (n,"Number of stages required = ","(i).wf = 1");
+
+// (ii).wf = 0.87
+wf =0.87; // Work factor
+ca=u/(tand(beta_1)+tand(beta_2)); // Axial velocity
+Del_Tstage=wf*u*ca*(tand(beta_1)-tand(beta_2))/Cp; // Stage temperature drop
+Del_Toverall=T1*(rp^((r-1)/r)-1)/eff_C; // Overall temperature drop
+n=Del_Toverall/Del_Tstage; // No of stages
+
+disp (n,"Number of stages required = ","(ii).wf = 0.87");