blob: ba0d98e5a5d8db0fd7ab48b7711a914433107856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
clc
clear
//At 10 bar pressure
Tsat=179.9;
Tsup=250;
Cps=2.1; //in kJ/kg K
Hg=2778.1; //in kJ/kg
Ms=10; //in kg/kg of coal
Hsup=Hg+(Cps*(Tsup-Tsat));
Hfw=155;
Me=(Ms*(Hsup-Hfw))/2257;
FOE=Me/Ms; //Factor of Evaporation
BP=(Me*370)/21.296;
printf('Equivalent Evaporation: %3.1f kg/kg of coal',Me);
printf('\n');
printf('Boiler Power: %3.1f kW',BP);
printf('\n');
|