diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1052/CH11/EX11.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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)
|