summaryrefslogtreecommitdiff
path: root/3511/CH8/EX8.3/Ex8_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3511/CH8/EX8.3/Ex8_3.sce')
-rw-r--r--3511/CH8/EX8.3/Ex8_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3511/CH8/EX8.3/Ex8_3.sce b/3511/CH8/EX8.3/Ex8_3.sce
new file mode 100644
index 000000000..53cce853f
--- /dev/null
+++ b/3511/CH8/EX8.3/Ex8_3.sce
@@ -0,0 +1,18 @@
+clc;
+D=0.15; // Inlet eye diameter in m
+N=20000; // Speed in rpm
+ca1=107; // Axial velocity in m/s
+T01=294; // Inlet temperature in kelvin
+p01=1.03; // Inlet pressure in kg/cm^2
+Cp=1.005; // specific heat at constant pressure in kJ/kg K
+r=1.4; // Specific heat ratio
+R=287; // Characteristic gas constant in J/kg K
+
+u1=3.14*D*N/60;
+beta_1=atand (ca1/u1);// Blade angle
+cr=u1/cosd (beta_1);
+a=sqrt (r*R*(T01-ca1^2/(2*Cp*10^3)));
+M=cr/a; // Mach number at the tip
+
+disp ("degree",beta_1,"(i).Theoretical angle of the blade at this point = ");
+disp (M,"(ii).Mach number of the flow at the tip of the eye = ");