summaryrefslogtreecommitdiff
path: root/1019/CH8/EX8.13/Example_8_13.sce
blob: 3c27812824176fc1af9bac4d89529fb23b11f379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Example 8.13
clear;
clc;

//Given
T=1225;//temperature in K
R=8.314;//gas constant in J K^-1 mol^-1
delHo=216.7;//standard enthalpy of the reaction in kJ
K=0.00328;//equillibrium constant at temperature T1

//To determine delSo and delGo at temperature T
delGo=R*T*log(K)/1000;//delGo in kJ mol^-1
delSo=1000*((delHo+delGo)/T);//delSo in J mol^-1 K^-1
mprintf('delGo at 1225 K = %f kJ mol^-1',delGo);
mprintf('\n delSo at 1225 K = %f J K^-1 mol^-1',delSo);
//end