diff options
Diffstat (limited to '3876/CH12/EX12.5/Ex12_5.sce')
-rw-r--r-- | 3876/CH12/EX12.5/Ex12_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH12/EX12.5/Ex12_5.sce b/3876/CH12/EX12.5/Ex12_5.sce new file mode 100644 index 000000000..7d0a3ddd4 --- /dev/null +++ b/3876/CH12/EX12.5/Ex12_5.sce @@ -0,0 +1,18 @@ +//Chapter 12 Thermodynamics Thermodynamic chemistry + +clc; +clear; + +//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 +mprintf("Heat of formation= %.2f cal",H1) |