summaryrefslogtreecommitdiff
path: root/858/CH3/EX3.15/example_15.sce
blob: c83ccebf46ac9bc6f16c706af3d06c02e279e9bb (plain)
1
2
3
4
5
6
7
8
9
10
11
clc
clear 
printf("example 3.15 page number 107\n\n")

//to find change in enthalpy
H0_CH4 = -74.9   //in kJ
H0_CO2 = -393.5   //in kJ
H0_H2O = -241.8   //in kJ

delta_H0 = H0_CO2+2*H0_H2O-H0_CH4;
printf("change in enthalpy = %f kJ",delta_H0)