diff options
Diffstat (limited to '3718/CH6/EX6.5/Ex6_5.sce')
-rw-r--r-- | 3718/CH6/EX6.5/Ex6_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3718/CH6/EX6.5/Ex6_5.sce b/3718/CH6/EX6.5/Ex6_5.sce new file mode 100644 index 000000000..d59a72a09 --- /dev/null +++ b/3718/CH6/EX6.5/Ex6_5.sce @@ -0,0 +1,13 @@ +//Chapter 6: Electrochemistry
+//Problem: 5
+clc;
+
+//Declaration of Variable
+Eo_Cu = 0.3370 // Cu+2 -> Cu
+Eo_Cd = - 0.4003 // Cd -> Cd +2
+
+// Solution
+Eo_cell = Eo_Cu - Eo_Cd
+
+mprintf("Cell is, Cd | Cd +2 || Cu+2 | Cu\n")
+mprintf(" Eo (cell) is %.4f V", Eo_cell)
|