summaryrefslogtreecommitdiff
path: root/647/CH11/EX11.2/Example11_2.sce
blob: 0b6d5386742732d7417127d3d1bcc3699b26966c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clear;
clc;

// Example: 11.2
// Page: 459

printf("Example: 11.2 - Page: 459\n\n");

// Solution

//*****Data******//
Tf = 5 + 273;// [K]
Lf = 9830;// [J/mol]
R = 8.314;// [J/mol K]
M1 = 78;// [kg/kmol]
//**************//

Kf = R*Tf^2*M1/(1000*Lf);// [kg/kmol]
printf("Molal Freezing point is %.2f kg/kmol\n",Kf);