summaryrefslogtreecommitdiff
path: root/2465/CH9/EX9.5/Ex9_5.sce
blob: eb9776f64fa1e5555d606e27b04c2477a09e41dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Chapter-9,Example 5,Page 220
clc();
close();

R= 32    //resistance of solution

l= 1.8    //distance between electrodes

a= 5.4   //area 

Kv=l/(R*a)    //specific conductivity

C= 0.1     //concentration

lamda_v= Kv*1000/C  //equivalent conductivity

printf('the equivalent conductivity is %.3f /ohm.cm^2',lamda_v)