summaryrefslogtreecommitdiff
path: root/3876/CH8/EX8.5/Ex8_5.sce
blob: afc0612e3ead5e1e6cd76c222728c3780631cc35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)