summaryrefslogtreecommitdiff
path: root/3689/CH11/EX11.5/11_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3689/CH11/EX11.5/11_5.sce')
-rw-r--r--3689/CH11/EX11.5/11_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3689/CH11/EX11.5/11_5.sce b/3689/CH11/EX11.5/11_5.sce
new file mode 100644
index 000000000..ae2ddf1c6
--- /dev/null
+++ b/3689/CH11/EX11.5/11_5.sce
@@ -0,0 +1,15 @@
+////
+//Variable Declaration
+E0 = +1.10 //Std. electrode potential for Danniel cell, V
+ //Zn(s) + Cu++ -----> Zn2+ + Cu
+T = 298.15 //V/K
+F = 96485 //Faraday constant, C/mol
+n = 2.
+R = 8.314 //Gas constant, J/(mol.K)
+
+//Calculations
+K = exp(n*F*E0/(R*T))
+
+//Results
+printf("\n Equilibrium constant for reaction is %4.2e",K)
+