blob: 61a3ef6370864da84cdf01a731a65ecdee0fd77e (
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
|
clear;
clc;
disp('Example 4.18');
// aim : To determine
// the heat received by the steam per kilogram
// Given values
// initial
P1 = 4;// pressure, [MN/m^2]
x1 = .95; // dryness fraction
// final
t2 = 350;// temperature,[C]
// solution
// from steam table, at 4 MN/m^2 and x1=.95
hf = 1087.4;// [kJ/kg]
hfg = 1712.9;// [kJ/kg]
// hence
h1 = hf+x1*hfg;// [kJ/kg]
// since pressure is kept constant ant temperature is raised so at this condition
h2 = 3095;// [kJ/kg]
// so by energy balance
Q = h2-h1;// Heat received,[kJ/kg]
mprintf('\n The heat received by the steam is = %f kJ/kg \n',Q);
// End
|