diff options
Diffstat (limited to '3718/CH3/EX3.24/Ex3_24.sce')
-rw-r--r-- | 3718/CH3/EX3.24/Ex3_24.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3718/CH3/EX3.24/Ex3_24.sce b/3718/CH3/EX3.24/Ex3_24.sce new file mode 100644 index 000000000..a4fd53a80 --- /dev/null +++ b/3718/CH3/EX3.24/Ex3_24.sce @@ -0,0 +1,13 @@ +//Chapter 3: Thermodynamic and Chemical Equilibrium
+//Problem: 24
+clc;
+
+//Declaration of Variables
+Ksp = 8 * 10 ** - 5 // Solubility product PbBr2
+diss = 80 / 100 // % dissociation
+
+// Solution
+S = (Ksp / 4) ** (1 / 3.0) // Solubility is 100%
+S_80 = S * (80 / 100.0)
+S_per_g = S_80 * 367 - 1.621
+mprintf("Solubility in gm per litre is %.3f gm / l",S_per_g)
|