summaryrefslogtreecommitdiff
path: root/3856/CH8/EX8.1/Ex8_1.sce
blob: d7729826a6d3e2e578d3aada02fff06189df5c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Calculate the Specific conductance

//Example 8.1

clc;

clear;

C=0.689;  //Cunductance of the cell in ohm^-1

c=0.255;  //Cell constant in  cm^-1 (c=l/A)

k=C*c;  //Specific conductance in ohm^-1 cm^-1

printf("Specific conductance = %.3f ohm^-1 cm^-1",k);