diff options
Diffstat (limited to '3876/CH8/EX8.5/Ex8_5.sce')
-rw-r--r-- | 3876/CH8/EX8.5/Ex8_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH8/EX8.5/Ex8_5.sce b/3876/CH8/EX8.5/Ex8_5.sce new file mode 100644 index 000000000..afc0612e3 --- /dev/null +++ b/3876/CH8/EX8.5/Ex8_5.sce @@ -0,0 +1,18 @@ +//Chapter 8 Chemical Equlibrium + +clc; +clear; + +//Initialisation of Variables +T= 65 //C +R= 1.98 //cal/mol K +kp= 2.8 +kp1= 0.141 +T1= 25 //C + +//CALCULATIONS +H= log10(kp/kp1)*2.303*R*(273+T1)*(273+T)/(T-T1) +H= H+62 + +//RESULTS +mprintf("Average Heat of reaction= %.2f cal",H) |