blob: 0cb43ce60bbd4e425ada8af32279ab2dc32854c3 (
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
32
33
34
|
//A Textbook of Chemical Engineering Thermodynamics
//Chapter 2
//First Law of Thermodynamics
//Example 11
clear;
clc;
//Given:
//At inlet:
T1 = 293; //Temperature(K)
P1 = 300+136.8; //Pressure(kPa)
//At exit:
T2 = 453; //Temperature(K)
P2 = 136.8; //Pressure(kPa)
Cp = 29.4; //specific heat capacity at constant pressure in kJ/kmol
m = 1000; //mass of hydrogen in kg
M = 2.02; //molecular mass of hydrogen
//To determine heat transfer rates
//Neglecting the kinetic nd potential energy changes
//Assuming the process to be occuring through a number of steps
//Step 1 be isothermal and step 2 be isobaric
H1 = 0; //change in enthalpy for step 1
H2 = (m/M)*Cp*(T2-T1)/1000; //change in enthalpy for step 2 in kJ
H = H2+H1;
Q = H; //heat transferred in coils in kJ
mprintf('Heat transferred in coils is %f kJ', Q);
//end
|