diff options
Diffstat (limited to '1019/CH5/EX5.17/Example_5_17.sce')
-rw-r--r-- | 1019/CH5/EX5.17/Example_5_17.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1019/CH5/EX5.17/Example_5_17.sce b/1019/CH5/EX5.17/Example_5_17.sce new file mode 100644 index 000000000..f8ddc53d2 --- /dev/null +++ b/1019/CH5/EX5.17/Example_5_17.sce @@ -0,0 +1,12 @@ +//Example 5.17
+clear;
+clc;
+
+//Given
+delGo1=3.0;//delGo value for conversion of malate to fumarate in kJ
+delGo2=-15.5;//delGo value for conversion of fumarate to asparate in kJ
+
+//To determine delGo for given reaction
+delGo3=delGo2+delGo1;//net free energy change for the required reaction in kJ
+mprintf('delGo for the conversion of malate to asparate = %f kJ',delGo3);
+//end
\ No newline at end of file |