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 /2966/CH1/EX1.24/Ex1_24.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 '2966/CH1/EX1.24/Ex1_24.sce')
-rw-r--r-- | 2966/CH1/EX1.24/Ex1_24.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2966/CH1/EX1.24/Ex1_24.sce b/2966/CH1/EX1.24/Ex1_24.sce new file mode 100644 index 000000000..7d01037df --- /dev/null +++ b/2966/CH1/EX1.24/Ex1_24.sce @@ -0,0 +1,24 @@ +//water//
+//page 1.37 example 8//
+clc
+Purity_Lime=.8
+Purity_soda=.9
+W1=7.1;//amount of Mg(HCO3)2 in ppm//
+W2=8.1;//amount of Ca(HCO3)2 in ppm//
+W3=4.195;//amount of MgCO3 in ppm//
+W4=10;//amount of CaCO3 in ppm//
+M1=100/146;//multiplication factor of Mg(HCO3)2//
+M2=100/162;//multiplication factor of Ca(HCO3)2//
+M3=100/84;//multiplication factor of MgCO3//
+M4=100/100;//multiplication factor of CaCO3//
+P1=W1*M1;//in terms of CaCO3//2*L
+P2=W2*M2;//in terms of CaCO3//L
+P3=W3*M3;//in terms of CaCO3//2*L
+P4=W4*M4;//in terms of CaCO3//L
+V=100000;//volume of water in litres//
+L=0.74*(2*P1+P2+2*P3+P4)*V/Purity_Lime;//lime required in mg//
+L=L/10^3;
+printf("\n Amount of Lime required is %.f g",L);
+S=1.06*(0)*V/Purity_soda;//soda required in mg//
+S=S/10^3;
+printf("\n Amount of Soda required is %.f g",S)
\ No newline at end of file |