diff options
Diffstat (limited to '3876/CH12/EX12.6/Ex12_6.sce')
-rw-r--r-- | 3876/CH12/EX12.6/Ex12_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH12/EX12.6/Ex12_6.sce b/3876/CH12/EX12.6/Ex12_6.sce new file mode 100644 index 000000000..572bb5db3 --- /dev/null +++ b/3876/CH12/EX12.6/Ex12_6.sce @@ -0,0 +1,18 @@ +//Chapter 12 Thermodynamics Thermodynamic chemistry + +clc; +clear; + +//Initialisation of Variables +Cp= 2.7 //cal per mole per degree +CP1= 6.9 //cal per mole per degree +Cp2= 15.4 //cal per mole per degree +H= -20.24 //kcal +T= 200 //C +T1= 25 //C + +//CALCULATIONS +H1= H+(Cp2-2*Cp-3*CP1)*((T-T1)/1000) + +//RESULTS +mprintf("Heat of formation= %.2f cal",H1) |