summaryrefslogtreecommitdiff
path: root/884/CH12/EX12.10/Example12_10.sce
blob: d9fce0de3f113c2a3932c33efffc739c84dfbd44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//computation of molar mass of a sample from freezing point depression

clear;
clc;

printf("\t Example 12.10\n");

deltaTf=1.05;//depression in freezing point, C
Kf=5.12;//molal freezing point depression constant
m=deltaTf/Kf;//molality of solution, molal
mbenzene=301/1000;//mass of benzene, kg
n=m*mbenzene;//moles of sapmle
msample=7.85;//mass of sample, g
molarmass=msample/n;//molar mass of sample, g/mol

printf("\t the molar mass of the sample is : %4.0f g/mol \n",molarmass);

//End