blob: 5964aba09fd2db5ee07214ec6fbddff5529d17af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
////Variable Declaration
m = 124.0 //Mass of liquid methanol, g
Pi = 1.0 //Initial Pressure, bar
Ti = 298.0 //Intial Temperature, K
Pf = 2.5 //Final Pressure, bar
Tf = 425.0 //Intial Temperature, K
rho = 0.791 //Density, g/cc
Cpm = 81.1 //Specifi heat, J/(K.mol)
M = 32.04
//Calculations
n = m/M
DH = n*Cpm*(Tf-Ti)+ m*(Pf-Pi)*1e-6/rho
//Results
printf("\n Enthalpy change for change in state of methanol is %4.1f kJ",DH/1000)
|