diff options
Diffstat (limited to '1019/CH8/EX8.13/Example_8_13.sce')
-rw-r--r-- | 1019/CH8/EX8.13/Example_8_13.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1019/CH8/EX8.13/Example_8_13.sce b/1019/CH8/EX8.13/Example_8_13.sce new file mode 100644 index 000000000..3c2781282 --- /dev/null +++ b/1019/CH8/EX8.13/Example_8_13.sce @@ -0,0 +1,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
\ No newline at end of file |