blob: 7c8b8d893d4debae465015d870e83b141249d55f (
plain)
1
2
3
4
5
6
7
8
9
|
//ques-5.2
//Calculating cell constant and specific conductance of solution
clc
A=1.25;//area of plates (in cm^2)
l=10.5;//distance between plates (in cm)
R=2000;//resistance (in ohms)
c=l/A;//cell constant (in /cm)
k=c/R;//specific conductance (in mho/cm)
printf("The cell constant is %.1f /cm and specific conductance of solution is %.4f mho/cm.",c,k);
|