summaryrefslogtreecommitdiff
path: root/2465/CH9/EX9.5/Example_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH9/EX9.5/Example_5.sce')
-rw-r--r--2465/CH9/EX9.5/Example_5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2465/CH9/EX9.5/Example_5.sce b/2465/CH9/EX9.5/Example_5.sce
new file mode 100644
index 000000000..eb9776f64
--- /dev/null
+++ b/2465/CH9/EX9.5/Example_5.sce
@@ -0,0 +1,17 @@
+//Chapter-9,Example 5,Page 220
+clc();
+close();
+
+R= 32 //resistance of solution
+
+l= 1.8 //distance between electrodes
+
+a= 5.4 //area
+
+Kv=l/(R*a) //specific conductivity
+
+C= 0.1 //concentration
+
+lamda_v= Kv*1000/C //equivalent conductivity
+
+printf('the equivalent conductivity is %.3f /ohm.cm^2',lamda_v)