blob: 09c433f203d25fb7aa2a52b694654f23d031af28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//calculating solubility
//Example 6.5
clc
clear
Ecell=0.169
AgC=0.01
C1=AgC/(10^(Ecell/0.0591))
S=C1*143.5//solubility of AgCl in g/L
Ksp=C1^2//solubility product of AgCl in Mol^2/L^2
printf('Thus solubility of AgCl = %e g/L',S)
printf('\n and Ksp = %e Mol^2/L^2',Ksp)
|