summaryrefslogtreecommitdiff
path: root/527/CH2/EX2.12/2_12exam.sce
blob: ed9d659723e48aaad3a771ee680459abfcd21ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Engineering and Chemical Thermodynamics
//Example 2.12
//Page no :73

clear ; clc ;
// From table we have
del_h0_f_CO2 = -393.51 ; // [kJ/mol]
del_h0_f_H2 = 0 ; // [kJ/mol]
del_h0_f_H2O = -241.82 ; // [kJ/mol]
del_h0_f_CH3OH = -200.66 ; // [kJ/mol]

del_h0 = del_h0_f_CO2 + 3 * del_h0_f_H2 - del_h0_f_H2O - del_h0_f_CH3OH ;
disp(" Example: 2.12   Page no : 73") ;
printf('\n       Enthalpy of reaction = %g kJ/mol',del_h0);