summaryrefslogtreecommitdiff
path: root/1019/CH7/EX7.24/Example_7_24.sce
blob: 4ad3482704df382cba42b1aa49876d42904a4649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 7.24
clear;
clc;

//Given
R=0.082;//gas constant in atm dm^3 K^-1 mol^-1
T=310;//temperature in K
delTf=0.402;//freezing temperature depression in K
Kf=1.86;//freezing point depression constant of waater

//To determine the osmotic pressure
pi=(R*T*delTf)/(Kf);//the osmotic pressure in atm
mprintf('The osmotic pressure = %f atm',pi);
//end