diff options
Diffstat (limited to '2465/CH9/EX9.2/Example_2.sce')
-rw-r--r-- | 2465/CH9/EX9.2/Example_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2465/CH9/EX9.2/Example_2.sce b/2465/CH9/EX9.2/Example_2.sce new file mode 100644 index 000000000..b2d50cde9 --- /dev/null +++ b/2465/CH9/EX9.2/Example_2.sce @@ -0,0 +1,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)
|