blob: a384c0a7baa381edeec5cbaa33cec6b5dad9c490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//initialisation of variables
T= 90 //C
T1= 25 //C
Cp= 6.9 //cal per mole per degree
CP1= 7.05 //cal per mole per degree
Cp2= 18 //cal per mole per degree
H= -68.37 //kcal
//CALCULATIONS
H1= H+(Cp2-Cp-0.5*Cp1)*((T-T1)/1000)
//RESULTS
printf (' heat of formation= %.2f cal',H1)
|