diff options
Diffstat (limited to '2495/CH8/EX8.18.2/Ex8_18_2.sce')
-rw-r--r-- | 2495/CH8/EX8.18.2/Ex8_18_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2495/CH8/EX8.18.2/Ex8_18_2.sce b/2495/CH8/EX8.18.2/Ex8_18_2.sce new file mode 100644 index 000000000..204003e99 --- /dev/null +++ b/2495/CH8/EX8.18.2/Ex8_18_2.sce @@ -0,0 +1,16 @@ +clear
+clc
+n1=2;//
+F=96500;//in C
+E=0.1634//in V
+DelG=-(n1*F*E);//free energy change in J
+printf('DelG=%.1f J',DelG)
+T=298;//in K
+dEdT_p=(0.000837);//in V/K
+DelH=-(n1*F*(E-(T*dEdT_p)));//enthalpy change in J
+printf('\nDelH=%.1d J',DelH)
+DelS=(n1*F*dEdT_p);//entropy change in J/K
+printf('\nDelS=%.2f J/K',DelS)
+
+//There are some errors in the solution given in textbook
+//page 481
|