blob: d8d16257697247326a1bc30e06dd9270b50a1df9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//ques-6.8
//Calculating standard emf and emf generated
clc
e1=1.7; e2=-0.31;//emfs of two half-cell reactions (in V)
C1=0.1;//concentration of hydrogen ion (in M)
C2=2;//concentration of sulphate ion (in M)
n=2;//number of electrons
Es=e1-e2;//standard emf (in V)
E=Es-(0.0592/n)*log10(1/(C1^4*C2^2));
printf("The standard emf is %.2f V and emf generated is %.2f V.",Es,E);
|