diff options
Diffstat (limited to '1967/CH17')
-rwxr-xr-x | 1967/CH17/EX17.1/17_1.sce | 9 | ||||
-rwxr-xr-x | 1967/CH17/EX17.2/17_2.sce | 8 |
2 files changed, 17 insertions, 0 deletions
diff --git a/1967/CH17/EX17.1/17_1.sce b/1967/CH17/EX17.1/17_1.sce new file mode 100755 index 000000000..0f1ade266 --- /dev/null +++ b/1967/CH17/EX17.1/17_1.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+clear
+s= 1.771*10^-4 //mole litre^-1
+s1= 0.3252*10^-2 //mole litre^-1
+//CALCULATIONS
+S= s*10^(0.509*(sqrt(s+s1)-sqrt(s)))
+//RESULTS
+printf ('Solubility = %.2e mole litre^-1',S)
diff --git a/1967/CH17/EX17.2/17_2.sce b/1967/CH17/EX17.2/17_2.sce new file mode 100755 index 000000000..5babf1525 --- /dev/null +++ b/1967/CH17/EX17.2/17_2.sce @@ -0,0 +1,8 @@ +clc
+//initialisation of variables
+clear
+a= 0.1
+//CALCULATIONS
+r= 10^(-0.509*sqrt(a)/(1+sqrt(a)))
+//RESULTS
+printf ('mean ionic acctivity coefficient = %.3f ',r)
|