summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.5/Example11_5.sce
blob: 384e5085f7d720bd6680269b421b21d553003ba4 (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
26
27
28
29
30
///Chapter No 11 Steam Boilers
////Example 11.5 Page No 232
//Find Enthalpy of wet stream
//Input data
clc;
clear;
ms=5000;                           //Steam generted in Kg/h
mf=700;                            //Coal burnt in Kg/h 
CV=31402;                          //Cv of coal in KJ/Kg
x=0.92;                            //quality of steam
P=1.2;                             //Boiler pressure in MPa
Tw=45;                             //Feed water temperature in degree celsius


//Calculation
hfw=188.35;                        //In KJ/Kg
hf=798.43;                         //In KJ/Kg
hfg=1984.3;                        //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);            //Equivalent evaporation in Kg/Kg of coal
etaboiler=((me*(hs-hfw))/CV)*100;  //Boiler efficiency in %



//Output
printf('Enthalpy of wet stream= %f KJ/Kg \n',hs);
printf('mass of evaporation=%f \n',me);
printf('Equivalent evaporation=%f Kg/Kg of coal \n',E);
printf('Boiler efficiency=%f percent \n',etaboiler);