blob: dcd2b7092e39ff6db003a091f91db806aa12da35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Chapter-9,Example 10,Page 221
clc();
close();
lamda_Ag = 58.3
lamda_Cl=65.3
lamda_v=lamda_Ag+lamda_Cl //Kohlrausch's law
Kv=1.24*10^-6 //specific conductivity
V=lamda_v/(Kv*1000)
wt=143.5 //molecular weight of AgCl
S=wt/V
printf('the solubility off AGCl is %.5f g/l',S)
//mistake in textbook
|