blob: c6963d0aab6225459421e7cb15b4d6b5c31d6d93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//Example 11.4
//Page no. 115
printf("Example 11.4-Page no. 115\n\n")
//given
//mass flowrate of flue gas ,average moleculer weight flue gas,standard conditions
m=50//lb/min
M=29//lb/lbmol
Ts=60//degree F
Ps=1//atm
R=0.73//atm.ft^3/(lbmol.degree R)
Ts=Ts+460//rankin
Qs=(m/M)*(R*Ts/Ps)
printf("standard volumetric flowrate Qs=%f scfm",Qs)
|