From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3718/CH6/EX6.10/Ex6_10.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3718/CH6/EX6.10/Ex6_10.sce (limited to '3718/CH6/EX6.10') 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) -- cgit