Boiler Efficiency Direct Method Matlab Code
Boiler Efficiency Direct Method Matlab Code
%
%
%
%
%
%
%
%
%
%
%
%
%
*****************************************************************************
Codes developed by PRATIK MAKWANA
*****************************************************************************
BOILER EFFICIENCY CALCULATION BY DIRECT METHOD (PULVERIZED BOILER)
*****************************************************************************
Mass of coal burnt, mf= 125 T/hr.
Mass of steam generated,mg= 690 T/hr
High calorific value, cv= 4097 kcal/kg = 17154.139 kJ/kg
Mean feed water temp. =35c
Pr, of steam = 136 kg/cm2 = 151 bar
Temp. of steam = 450c
Feedwater at 185 kg/cm2 and 244c
Enthalpy of feedwater heater is 1058 KJ/Kg
Enthaply of steam is 3422 KJ/Kg
clc;
cv=17154.139;
disp('Pr, of steam = 151 bar');
disp('Temp. of steam = 450c');
mf = input('Enter the amount of Mass of coal burnt = ');
mg = input('Enter the amount of Mass of steam generated = ');
disp('High calorific value of coal is 4097 kcal/kg');
qfw = input('Enthalpy of feedwater at 181 bar and 244c is = ');
fprintf('Heat of feed water = %f\n',qfw);
h = input('Enthalpy of steam at 151 bar and 450c =');
qt=(h-qfw);
fprintf('Total net heat given to produce 1 Kg of steam = %f\n',qt);
me=mg/mf;
fprintf('Equivalent evaporation = %f\n',me);
eff=(me*qt*100)/cv;
fprintf('Boiler efficiency = %f\n',eff);
run XSteam('h_pT',181,244);
run XSteam('h_pT',151,540);