summaryrefslogtreecommitdiff
path: root/3718/CH6/EX6.4/Ex6_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH6/EX6.4/Ex6_4.sce')
-rw-r--r--3718/CH6/EX6.4/Ex6_4.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3718/CH6/EX6.4/Ex6_4.sce b/3718/CH6/EX6.4/Ex6_4.sce
new file mode 100644
index 000000000..53d63487a
--- /dev/null
+++ b/3718/CH6/EX6.4/Ex6_4.sce
@@ -0,0 +1,13 @@
+//Chapter 6: Electrochemistry
+//Problem: 4
+clc;
+
+//Declaration of Variable
+Eo_Cu = 0.3370 // Cu+2 -> Cu
+Eo_Zn = - 0.7630 // Zn -> Zn +2
+
+// Solution
+Eo_cell = Eo_Cu - Eo_Zn
+
+mprintf("Daniel cell is, Zn | Zn +2 || Cu+2 | Cu\n")
+mprintf(" Eo (cell) is %.1f V", Eo_cell)