diff options
Diffstat (limited to '1019/CH5/EX5.14/Example_5_14.sce')
-rw-r--r-- | 1019/CH5/EX5.14/Example_5_14.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1019/CH5/EX5.14/Example_5_14.sce b/1019/CH5/EX5.14/Example_5_14.sce new file mode 100644 index 000000000..1d1b03ce6 --- /dev/null +++ b/1019/CH5/EX5.14/Example_5_14.sce @@ -0,0 +1,12 @@ +//Example 5.14
+clear;
+clc;
+
+//Given
+delGo1=-29.2;//delGo value for hydrolysis of creatine phosphate in kJ
+delGo2=-12.4;//delGo value for hydrolysis of glucose phosphate in kJ
+
+//To determine delGo for given reaction
+delGo3=delGo2-delGo1;//gibbs free energy in kJ
+mprintf('delGo for the given reaction = %f kJ',delGo3);
+//end
\ No newline at end of file |