blob: bebd47f4ded62602443b8a60ca78c58663cac752 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation of variables
E= 1.0508 //volts
V= 0.3338 //volts
a= 0.0796
a1= sqrt(0.0490)
f= 0.05916 //J/mol coloumb
//CALCULATIONS
V= E+V+f*log10(a/a1)
//RESULTS
printf (' Standard electrode poteential = %.4f volts',V)
|