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