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 /2465/CH9/EX9.10/Ex9_10.sce | |
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 '2465/CH9/EX9.10/Ex9_10.sce')
-rw-r--r-- | 2465/CH9/EX9.10/Ex9_10.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2465/CH9/EX9.10/Ex9_10.sce b/2465/CH9/EX9.10/Ex9_10.sce new file mode 100644 index 000000000..dcd2b7092 --- /dev/null +++ b/2465/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,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
|