blob: 4ad6e9965f690476f72ecf57ccc350676cea56ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation of variables
r= 82.4 //ohms
k= 0.002768 //ohm^-1
R1= 326 //ohm
//CALCULATIONS
K= r*k
K1= (K/R1)
//RESULTS
printf ('cell constant= %.4f cm^-1',K)
printf ('\n specific conductance= %.3e ohm^-1 cm^-1',K1)
|