summaryrefslogtreecommitdiff
path: root/3876/CH10/EX10.2/Ex10_2.sce
blob: f0400609903d3e62b724254ef64a829885cfe89a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Chapter 10 Electmotive Force

clc;
clear;

//Initialisation of Variables
E= -0.337 //v
R= 8.31 //J/mol K
T= 25 //C
F= 96500 //coloums
M= 0.12 //m

//CALCULATIONS
E1= E-(R*(273+T)*2.3*log10(M)/(2*F))

//RESULTS
mprintf("Oxidation potential of copper electrode = %.3f v",E1)