blob: fa9da87f8d88a6862a4b72aefa4a61f51aa747fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Example 7.25
clear;
clc;
//Given
R=0.082;//gas constant in atm dm^3 K^-1 mol^-1
delTf=0.3;//freezing temperature depression in K
Kf=1.86;//freezing point depression constant of waater
m=0.1;//molality of acid solution in mol kg^-1
//To determine the degree of dissociation
a=(delTf/(Kf*m))-1;//degree of dissociation
mprintf('The degree of dissociation = %f',a);
//end
|