summaryrefslogtreecommitdiff
path: root/3689/CH17/EX17.11
diff options
context:
space:
mode:
Diffstat (limited to '3689/CH17/EX17.11')
-rw-r--r--3689/CH17/EX17.11/17_11.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3689/CH17/EX17.11/17_11.sce b/3689/CH17/EX17.11/17_11.sce
new file mode 100644
index 000000000..a5c728aac
--- /dev/null
+++ b/3689/CH17/EX17.11/17_11.sce
@@ -0,0 +1,11 @@
+////Variable Declaration
+LMg = 0.0106 //Ionic conductance for Mg, S.m2/mol
+LCl = 0.0076 //Ionic conductance for Cl, S.m2/mol
+[nMg,nCl] = (1,2)
+
+//Calculations
+LMgCl2 = nMg*LMg + nCl*LCl
+
+//Results
+printf("\n Molar conductivity of MgCl2 on infinite dilution is %5.4f S.m2/mol",LMgCl2)
+