blob: 7ec96c913fd89c7030d5ab9663fb81f087466098 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//Chapter 6: Electrochemistry
//Problem: 12
clc;
//Declaration of Variables
E_KCl = 0.2415 // V
E_cell = 0.445 // V
// Solution
mprintf("Emf of the cell is\n")
mprintf(" At 25C,\n")
mprintf(" E = Er - El = Eref - ((RT)/ F) * ln H+\n")
pH = (E_cell - E_KCl) / 0.059
Eo_cell = - 0.8277 // V
mprintf(" Thus, equilibrium constant for the reaction\n")
mprintf(" 2H2O --> H3O+ + OH- may be calculated as\n")
K = 10 ** (Eo_cell / 0.0591)
mprintf(" K = %.e",K)
|