blob: d59a72a0902bcef53e392816b5b8c54ff4d9deca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 6: Electrochemistry
//Problem: 5
clc;
//Declaration of Variable
Eo_Cu = 0.3370 // Cu+2 -> Cu
Eo_Cd = - 0.4003 // Cd -> Cd +2
// Solution
Eo_cell = Eo_Cu - Eo_Cd
mprintf("Cell is, Cd | Cd +2 || Cu+2 | Cu\n")
mprintf(" Eo (cell) is %.4f V", Eo_cell)
|