blob: a089b1067c4f17139709af8de8f9ee637d5e51df (
plain)
1
2
3
4
5
6
7
8
9
|
//Section-9,Example-4,Page no.-E.14
//To find the potential of Daniel cell.
clc;
C_Zn=1.52
C_Cu=0.48
E0_cell=1.10
n=2
E_cell=E0_cell-((0.0592/n)*log10(C_Zn/C_Cu))
disp(E_cell,' potential of Daniel cell')
|