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 /2510/CH18/EX18.10 | |
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 '2510/CH18/EX18.10')
-rwxr-xr-x | 2510/CH18/EX18.10/Ex18_10.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2510/CH18/EX18.10/Ex18_10.sce b/2510/CH18/EX18.10/Ex18_10.sce new file mode 100755 index 000000000..f4302600a --- /dev/null +++ b/2510/CH18/EX18.10/Ex18_10.sce @@ -0,0 +1,23 @@ +//Variable declaration: +T1 = 2000 //Hot gas temperature ( F) +T2 = 550 //Cool gas temperature ( F) +T3 = 330 //Steam temperature ( F) +T4 = 140 //Water temperature ( F) +m = 30000 //Mass flow rate of steam (lb/h) +cp = 0.279 //Average heat capacity of gas (Btu/lb. F) +N = 800 //Number of boiler tubes + +//Calculation: +DT = (T1-T3)/(T2-T3) //Temperature difference ratio +Tav = (T1+T2)/2 //Average gas temperature ( F) +//From steam tables (Appendix): +hs = 1187.7 //Steam enthalpy (Btu/lb) +hw = 107.89 //Water enthalpy (Btu/lb) +Q = m*(hs-hw) //Heat duty (Btu/h) +mh = Q/cp*(T1-T2) //Mass flow rate of gas (lb/h) +x = mh/N //Gas mass flow rate per tube (lb/h) +//From figure 18.5: +L = 15 //Length of boiler tubes (ft) + +//Result: +printf("The length of boiler tubes is : %f ft .",L) |