blob: ab90694a0f3ee29f3067f12c8e84aa71f642d4f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
|