diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH23/EX14.23.8 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3428/CH23/EX14.23.8')
-rw-r--r-- | 3428/CH23/EX14.23.8/Ex14_23_8.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3428/CH23/EX14.23.8/Ex14_23_8.sce b/3428/CH23/EX14.23.8/Ex14_23_8.sce new file mode 100644 index 000000000..df712ed58 --- /dev/null +++ b/3428/CH23/EX14.23.8/Ex14_23_8.sce @@ -0,0 +1,9 @@ +//Section-14,Example-3,Page no.-PC.81
+//To calulate solubility in the given conditions.
+clc;
+K_sp=1.6*10^-10
+S=sqrt(K_sp)
+disp(S,'Solubility of silver chloride in water(mol/L)')
+S_bar=(K_sp/0.10)
+disp(S_bar,'Solubility of silver chloride in presence of 0.1M NaCl(mol/L)')
+//S_bar approximated as 2*10^-9
|