diff options
Diffstat (limited to '3876/CH10/EX10.5')
-rw-r--r-- | 3876/CH10/EX10.5/Ex10_5.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3876/CH10/EX10.5/Ex10_5.sce b/3876/CH10/EX10.5/Ex10_5.sce new file mode 100644 index 000000000..31107e6cd --- /dev/null +++ b/3876/CH10/EX10.5/Ex10_5.sce @@ -0,0 +1,19 @@ +//Chapter 10 Electmotive Force + +clc; +clear; + +//Initialisation of Variables +E1= 0.126 //v +E2= -1.360 //v +M= 0.02 //m +M1= 1/0.1 //m +R= 8.31 //J/mol K +T= 25 //C +F= 96500 //coloums + +//CALCULATIONS +E= (E1-R*(273+T)*2.3*log10(M)/(2*F))-(E2-R*(273+T)*2.3*log10(M1)/(F)) + +//RESULTS +mprintf("Oxidation potential of copper electrode = %.3f v",E) |