diff options
Diffstat (limited to '1019/CH5/EX5.16/Example_5_16.sce')
-rw-r--r-- | 1019/CH5/EX5.16/Example_5_16.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1019/CH5/EX5.16/Example_5_16.sce b/1019/CH5/EX5.16/Example_5_16.sce new file mode 100644 index 000000000..7f59ba985 --- /dev/null +++ b/1019/CH5/EX5.16/Example_5_16.sce @@ -0,0 +1,13 @@ +//Example 5.16
+clear;
+clc;
+
+//Given
+delE=-2880;//internal energy in kJ mol^-1
+delS=182.4;//Entropy in J K^-1 mol^-1
+T=298;//Temperature in K
+
+//To determine delA
+delA=delE-(T*delS*0.001);//helmoltz free energy in kJ mol^-1
+mprintf('The amount of energy that can be extracted as heat = %f kJ mol^-1',delA);
+//end
\ No newline at end of file |