diff options
Diffstat (limited to '1967/CH18/EX18.1/18_1.sce')
-rwxr-xr-x | 1967/CH18/EX18.1/18_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1967/CH18/EX18.1/18_1.sce b/1967/CH18/EX18.1/18_1.sce new file mode 100755 index 000000000..2aa604b41 --- /dev/null +++ b/1967/CH18/EX18.1/18_1.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+clear
+k1= 16.4 //ml mole^-1
+k2= 2.5 //ml mole^-2
+k3= -1.2 //ml mole^-3
+m= 1 //molal
+//CALCULATIONS
+Ov= k1+k2*m+k3*m^2
+//RESULTS
+printf ('Apparent molar volume = %.1f ml mole^-1',Ov)
|