blob: 5ed448435a00af542e734ec457020fafdbfa98e3 (
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
|
//mass of air flow(in kg/min)
ma=5;
//mass of fuel flow(in kg/min)
mf=0.5;
//specific gravity of fuel
Pf=0.75;
//pressure of air at inlet(in bar)
p1=1;
//temperature at inlet(in K)
T1=300;
//velocity coefficient
Vc=0.8;
//ratio of pressure drop of metering orifice to choke
pd=0.8;
//specific heat a constant pressure
Cp=1005;
//gas constant
R=0.287;
//coefficient of discharge of fuel
Cf=0.6;
//adiabatic constant
y=1.4;
//velocity at throat(in m/s)
C2=100;
|