blob: 38c29a7eb4ee31f5b256f9c141d4685326db76df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
clear
clc
E1=1.3595;//in V
E2=0.337;//in V
Ecell=(E1-E2);//in V
printf('\nEcell=%.4f V',Ecell)
E3=1.510;//in V
E4=0.337;//in V
Ecell=(E3-E4);//in V
printf('\nEcell=%.3f V',Ecell)
E5=0.7791;//in V
E6=0.337;//in V
Ecell=(E5-E6);//in V
printf('\nEcell=%.4f V',Ecell)
E7=0.771;//in V
E8=0.150;//in V
Ecell=(E7-E8);//in V
printf('\nEcell=%.3f V',Ecell)
E9=0.771;//in V
E10=1.51;//in V
Ecell=(E9-E10);//in V
printf('\nEcell=%.3f V',Ecell)
E11=0.771;//in V
E12=-0.126;//in V
Ecell=(E11-E12);//in V
printf('\nEcell=%.3f V',Ecell)
//All the positive values of Ecell gives forward reaction,negative values of Ecell gives backward reaction
//page 451
|