diff options
Diffstat (limited to '1052/CH11/EX11.4')
-rwxr-xr-x | 1052/CH11/EX11.4/114.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1052/CH11/EX11.4/114.sce b/1052/CH11/EX11.4/114.sce new file mode 100755 index 000000000..c6963d0aa --- /dev/null +++ b/1052/CH11/EX11.4/114.sce @@ -0,0 +1,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)
|