diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3821/CH11/EX11.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.1')
-rw-r--r-- | 3821/CH11/EX11.1/Example11_1.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3821/CH11/EX11.1/Example11_1.sce b/3821/CH11/EX11.1/Example11_1.sce new file mode 100644 index 000000000..ab90694a0 --- /dev/null +++ b/3821/CH11/EX11.1/Example11_1.sce @@ -0,0 +1,25 @@ +///Chapter No 11 Steam Boilers
+////Example 11.1 Page No 228
+///Find Mass of evaporation
+//Input data
+clc;
+clear;
+ms=5000; //Boiler produces wet steam in Kg/h
+x=0.95; //Dryness function
+P=10; //Operating pressure in bar
+mf=5500; //Bour in the furnace in Kg
+Tw=40; //Feed water temp in degree celsius
+
+//Calculation
+//from steam table
+hfw=167.45; //In KJ/Kg
+hf=762.61; //In KJ/Kg
+hfg=2031.6; //In KJ/Kg
+hs=(hf+x*hfg); //Enthalpy of wet stream in KJ/Kg
+me=ms/mf; //Mass of evaporation
+E=((me*(hs-hfw))/(2257))*10; //Equivalent evaporation in Kg/Kg of coal
+
+//Output
+printf('Enthalpy of wet stream=%f KJ/Kg \n',hs);
+printf('Mass of evaporation=%f KJ/Kg \n',me);
+printf('Equivalent evaporation = %f Kg/Kg of coal \n',E);
|