summaryrefslogtreecommitdiff
path: root/551/CH11/EX11.1/1.sce
blob: c629928696aa4f33443130743ec1c40d827859d9 (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
clc

%C=0.88; //Fraction of carbon in coal
%H=0.042; //Fraction of Hydrogen in coal
w_f=0.848; //gm
w_fw=0.027; //gm
w=1950; //gm
w_e=380; //gm
dt=3.06; //0C; Observed temperature rise
tc=0.017; //0C
dt1=dt+tc; //Corrected temperature rise
Cal=6700; //J/gm; Calorific value of fuse wire

Q_received=(w+w_e)*4.18*dt1; //Heat received by water

Q_rejected=w_fw*Cal; //Heat given out by fuse wire

Q_produced=Q_received - Q_rejected;

HCV=Q_produced/w_f;
disp("Higher calorific value=")
disp(HCV)
disp("kJ/kg")

LCV=HCV - 2465*9*%H;
disp("Lower Calorific value=")
disp(LCV)
disp("kJ/kg")