summaryrefslogtreecommitdiff
path: root/3856/CH8/EX8.1/Ex8_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH8/EX8.1/Ex8_1.sce')
-rw-r--r--3856/CH8/EX8.1/Ex8_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3856/CH8/EX8.1/Ex8_1.sce b/3856/CH8/EX8.1/Ex8_1.sce
new file mode 100644
index 000000000..d7729826a
--- /dev/null
+++ b/3856/CH8/EX8.1/Ex8_1.sce
@@ -0,0 +1,15 @@
+//Calculate the Specific conductance
+
+//Example 8.1
+
+clc;
+
+clear;
+
+C=0.689; //Cunductance of the cell in ohm^-1
+
+c=0.255; //Cell constant in cm^-1 (c=l/A)
+
+k=C*c; //Specific conductance in ohm^-1 cm^-1
+
+printf("Specific conductance = %.3f ohm^-1 cm^-1",k);