blob: 9b035a170952dd9974e549dd262571dc9f1de9cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
//Chapter-4, Illustration 1, Page 161
//Title: Steam Nozzles and Steam Turbines
//=============================================================================
clc
clear
//INPUT DATA
P1=3.5;//Pressure at entry in MN/(m^2)
T1=773;//Temperature at entry in K
P2=0.7;//Pressure at exit in MN/(m^2)
ma=1.3;//mass flow rate of air in kg/s
y=1.4;//Ratio of specific heats
R=0.287;//Universal gas constant in KJ/Kg-K
//CALCULATIONS
c=y/(y-1);//Ratio
Pt=((2/(y+1))^c)*P1;//Throat pressure in MN/(m^2)
v1=(R*T1)/(P1*1000);//Specific volume at entry in (m^3)/kg
Ct=((2*c*P1*v1*(1-((Pt/P1)^(1/c))))^0.5)*1000;//Velocity at throat in m/s
vt=v1*((P1/Pt)^(1/y));//Specific volume at throat in (m^3)/kg
At=((ma*vt)/Ct)*(10^6);//Area of throat in (mm^2)
C2=((2*c*P1*v1*(1-((P2/P1)^(1/c))))^0.5)*1000;//Velocity at exit in m/s
v2=v1*((P1/P2)^(1/y));//Specific volume at exit in (m^3)/kg
A2=((ma*v2)/C2)*(10^6);//Area of exit in (mm^2)
M=C2/Ct;//Mach number at exit
//OUTPUT
mprintf('Throat area is %3.0f (mm^2) \n Exit area is %3.0f (mm^2) \n Mach number at exit is %3.2f',At,A2,M)
//==============================END OF PROGRAM=================================
|