summaryrefslogtreecommitdiff
path: root/1019/CH7/EX7.16/Example_7_16.sce
blob: 907cdd22773e0aefc56823e201b40e12518825fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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