blob: 59c089fd0ba3509c0ecc657c8da2ca27f697cd61 (
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
31
32
33
34
|
///Chapter No 11 Steam Boilers
////Example 11.7 Page No 234
///Find Boiler efficiency
///Input data
clc;
clear;
E=12; //Boiler found steam in Kg/Kg
CV=35000; //Calorific value in KJ/Kg
ms=15000; //Boiler produces in Kg/h
P=20; //Boiler pressure in bar
Tw=40; //Feed water in degree celsius
mf=1800; //Fuel consumption
//Calculation
//R=me(hs-hfw)
hfw=167.45; //In KJ/Kg
hg=2797.2; //In KJ/Kg
Ts=211.37; //In degree celsius
Cps=2.3;
R=E*2257; //Equivalent evaporation in KJ/Kg of coal
etaboiler=(R/CV)*100; //Boiler efficiency in %
me=ms/mf; //Equivalent mass evaporation in KJ/Kg of coal
hs=(R/me)+hfw; //In KJ/Kg
Tsup=((hs-hg)/Cps)+Ts; //Enthalpy of superheated steam in degree celsius
//Output
printf('Equivalent evaporation=%f KJ/Kg of coal \n',R);
printf('Boiler efficiency=%f percent \n',etaboiler);
printf('Equivalent mass evaporation= %f KJ/Kg of coal \n',me);
printf('hs=%f KJ/Kg \n',hs);
printf('Enthalpy of superheated steam=%f degree celsius \n',Tsup);
|