summaryrefslogtreecommitdiff
path: root/2465/CH10/EX10.2
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH10/EX10.2')
-rw-r--r--2465/CH10/EX10.2/Example_2.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/2465/CH10/EX10.2/Example_2.sce b/2465/CH10/EX10.2/Example_2.sce
new file mode 100644
index 000000000..aec51c898
--- /dev/null
+++ b/2465/CH10/EX10.2/Example_2.sce
@@ -0,0 +1,21 @@
+//Chapter-10,Example 2,Page 252
+clc();
+close();
+
+E0 = 0.34 //standard potential for copper
+
+n= 2
+
+Cu = 0.15
+
+R=8.314 //gas constant
+
+F=96500 //Farade's constant
+
+n=2
+
+T=298 //temperature in Kelvin
+
+E=E0+(2.303*R*T/(n*F))*log10(Cu)
+
+printf('the single electrode potential of copper is %.5f V ',E)