diff options
Diffstat (limited to '3689/CH10/EX10.2')
-rw-r--r-- | 3689/CH10/EX10.2/10_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3689/CH10/EX10.2/10_2.sce b/3689/CH10/EX10.2/10_2.sce new file mode 100644 index 000000000..f5f6c89fd --- /dev/null +++ b/3689/CH10/EX10.2/10_2.sce @@ -0,0 +1,14 @@ +////Variable Declaration
+M = 0.050 //Molarity for NaCl and Na2SO4 solution, mol/kg
+[npa,zpa] = (1,1)
+[nma,zma] = (1,1)
+[npb,zpb] = (2,1)
+[nmb,zmb] = (1,2)
+
+//Calculations
+Ia = M*(npa*zpa**2 + nma*zma**2)/2
+Ib = M*(npb*zpb**2 + nmb*zmb**2)/2
+
+//Results
+printf("\n Ionic streangth for NaCl solution is %4.3f and for Na2SO4 solution is %4.3f, mol/kg",Ia,Ib)
+
|