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.13/Ex6_13.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3718/CH6/EX6.13/Ex6_13.sce (limited to '3718/CH6/EX6.13/Ex6_13.sce') diff --git a/3718/CH6/EX6.13/Ex6_13.sce b/3718/CH6/EX6.13/Ex6_13.sce new file mode 100644 index 000000000..95542167f --- /dev/null +++ b/3718/CH6/EX6.13/Ex6_13.sce @@ -0,0 +1,16 @@ +//Chapter 6: Electrochemistry +//Problem: 13 +clc; + +//Declaration of Variables +EoSn = 0.15 // V +EoCr = - 0.74 // V + +// Solution +mprintf("3Sn+4 + 2Cr --> 3Sn+2 + 2Cr+3\n") + +Eo_cell = EoSn - EoCr +n = 6 +K = 10 ** (n * Eo_cell / 0.0591) + +mprintf(" The equillibrium constant for th reaction is %.2e ",K) -- cgit