diff options
Diffstat (limited to '1427/CH5/EX5.2')
-rw-r--r-- | 1427/CH5/EX5.2/5_2.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH5/EX5.2/5_2.sce b/1427/CH5/EX5.2/5_2.sce new file mode 100644 index 000000000..7c8b8d893 --- /dev/null +++ b/1427/CH5/EX5.2/5_2.sce @@ -0,0 +1,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);
|