blob: 0b99374636a6be306e0556213f9c67f77f69cfcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialisation of variables
Mc= 63.54 //gms
n= 2
mc= 0.3 //gms
mc1= 1.43
mc2= 1.2140
//CALCULATIONS
Me= Mc/n
Tc= ((mc/Me)-((mc1-mc2)/Me))/(mc/Me)
Ta= 1-Tc
//RESULTS
printf ('copper transference number= %.2f ',Ta)
|