diff options
Diffstat (limited to '3718/CH6/EX6.10')
-rw-r--r-- | 3718/CH6/EX6.10/Ex6_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3718/CH6/EX6.10/Ex6_10.sce b/3718/CH6/EX6.10/Ex6_10.sce new file mode 100644 index 000000000..df86e87d4 --- /dev/null +++ b/3718/CH6/EX6.10/Ex6_10.sce @@ -0,0 +1,16 @@ +//Chapter 6: Electrochemistry
+//Problem: 10
+clc;
+
+//Declaration of Variables
+T = 25 // C
+Cu = 0.1 // M
+Zn = 0.001 // M
+Eo = 1.1 // V
+
+// Solution
+mprintf("Zn(s) | Zn+2 (0.001M) || Cu+2(0.1M) | Cu(s)\n")
+
+Ecell = Eo + 0.0592 / 2 * log10(Cu / Zn)
+
+mprintf(" The emf of a Daniel cell is %.4f V",Ecell)
|