0% found this document useful (0 votes)
278 views

Boiler Efficiency Direct Method Matlab Code

This document contains code to calculate the efficiency of a pulverized boiler by the direct method. It provides key parameters like the mass of coal burnt being 125 tons/hour, mass of steam generated being 690 tons/hour, and high calorific value of coal being 4097 kcal/kg. The code then prompts the user to input values like enthalpy of feedwater and steam before calculating the equivalent evaporation, total heat given to produce 1kg of steam, and the overall boiler efficiency.

Uploaded by

Pratik Makwana
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
278 views

Boiler Efficiency Direct Method Matlab Code

This document contains code to calculate the efficiency of a pulverized boiler by the direct method. It provides key parameters like the mass of coal burnt being 125 tons/hour, mass of steam generated being 690 tons/hour, and high calorific value of coal being 4097 kcal/kg. The code then prompts the user to input values like enthalpy of feedwater and steam before calculating the equivalent evaporation, total heat given to produce 1kg of steam, and the overall boiler efficiency.

Uploaded by

Pratik Makwana
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

%

%
%
%
%
%
%
%
%
%
%
%
%
%

*****************************************************************************
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);

You might also like