summaryrefslogtreecommitdiff
path: root/572/CH13/EX13.2/c13_2.sce
blob: d5a00f2cffca847462e322ba7a26f8752fa8359e (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//(13.2)  Methane, CH4, is burned with dry air. The molar analysis of the products on a dry basis is CO2, 9.7%; CO, 0.5%; O2, 2.95%; and N2, 86.85%. Determine (a) the air–fuel ratio on both a molar and a mass basis, (b) the percent theoretical air, (c) the dew point temperature of the products, in C, if the mixture were cooled at 1 atm.

//solution

//part(a)
//The chemical equation
//a CH4 + b*(O2 + 3.76N2)  --->  9.7CO2 + .5CO + 2.95O2 + 86.85N2 + cH2O

//applying conservation of mass 
a = 9.7 + .5
c = 2*a
b = [9.7*2+.5+2*2.95+c]/2

Ma = 28.97                                                                      //molar mass of air
MCH4 = 16.04                                                                    //molar mass of methane
//On a molar basis, the air–fuel ratio is
AFbar = b*(1+3.76)/a
//On a mass basis
AF = AFbar*(Ma/MCH4)

printf('the air-fuel ratio on a molar basis is:  %f',AFbar)
printf('\nthe air-fuel ratio on a mass basis is:  %f',AF)

//part(b)
//The balanced chemical equation for the complete combustion of methane with the theoretical amount of air is
//CH4 + 2(O2 + 3.76N2)  --->  CO2 + 2H2O + 7.52N2
//The theoretical air–fuel ratio on a molar basis is
AFbartheo = 2*(1+3.76)/1
//The percent theoretical air is
Ta = AFbar/AFbartheo
printf('\n\nthe percent theoretical air is:  %f',Ta*100)

//part(c)
//the mole fraction of the water vapor is
yv = 20.4/(100+20.4)
pv = yv*1
//Interpolating in Table A-2,
T = 57                                                                          //in degree celcius
printf('\n\nthe dew point temperature of the products, in C, if the mixture were cooled at 1 atm is:  %f',T)