diff options
Diffstat (limited to '1019/CH7/EX7.16/Example_7_16.sce')
-rw-r--r-- | 1019/CH7/EX7.16/Example_7_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1019/CH7/EX7.16/Example_7_16.sce b/1019/CH7/EX7.16/Example_7_16.sce new file mode 100644 index 000000000..907cdd227 --- /dev/null +++ b/1019/CH7/EX7.16/Example_7_16.sce @@ -0,0 +1,15 @@ +//Example 7.16
+clear;
+clc;
+
+//Given
+R=8.314;//gas constant in J K^-1 mol^-1
+delTf=10;//Freezing temperature depression in K
+Kf=1.86;//molal freezing point depression constant of water K mol^-1 kg
+M2=32;//molecular mass of methyl alcohol in g
+w1=100;//mass of water in g
+
+//To determine the mass of methyl alcohol required
+w2=(delTf*M2*w1)/(Kf*1000);//mass of methyl alcohol required in g
+mprintf('The mass of methyl alcohol required = %f g',w2);
+//end
\ No newline at end of file |