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

R= 500   //resistance of the cell

K= 0.0002765   //specific conductivity

//cell constant= l/a  and R= p(l/a)
//sice l= length  a= area  p= resistivity 
//(1/p) = K = specific conductivity
//(l/a) = R*K

C_constant= R*K   //cell constant

printf('the cell constant is %.3f /cm',C_constant)