summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.9/Example11_9.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3821/CH11/EX11.9/Example11_9.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3821/CH11/EX11.9/Example11_9.sce')
-rw-r--r--3821/CH11/EX11.9/Example11_9.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/3821/CH11/EX11.9/Example11_9.sce b/3821/CH11/EX11.9/Example11_9.sce
new file mode 100644
index 000000000..3f1142bae
--- /dev/null
+++ b/3821/CH11/EX11.9/Example11_9.sce
@@ -0,0 +1,34 @@
+///Chapter No 11 Steam Boilers
+////Example 11.9 Page No 237
+///Find Mass of steam consumption
+///Input data
+clc;
+clear;
+P=15; //Boiler produces steam in bar
+Tsup=250; //Boiler temperature in degree celsius
+Tw=35; //Feed water in degree celsius
+MWh=1.5; //steam supplied to the turbine
+CV=32000; //Coal of calorific value in KJ/Kg
+etaboiler=80/100; //Thermal efficiency in %
+fr=210; //Firing rate in Kg/m^2/h
+//From steam table(temp basis at 35 degree celsius)
+hfw=146.56; //In KJ/Kg
+Ts=198.29; //In degree celsius
+hfg=1945.2; //In KJ/Kg
+hg=2789.9; //In KJ/Kg
+Cps=2.3;
+
+
+//calculator
+hs=hg+Cps*(Tsup-Ts); //Enthalpy of superheated steam(with superheater) in KJ/Kg
+ms=9000/MWh; //Steam rate in Kg/MWh
+mf=((ms*(hs-hfw))/(etaboiler*CV)); //Mass of steam consumption in Kg/h
+GA=mf/fr; //Grate rate in m^2
+
+
+
+//Output
+printf('Enthalpy of superheated steam(with superheater)=%f KJ/Kg \n',hs);
+printf('Steam rate= %f Kg/h \n',ms);
+printf('Mass of steam consumption=%f Kg/h \n',mf);
+printf('Grate rate=%f m^2 \n',GA);