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.3/Ex1_3.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.3/Ex1_3.sce')
-rw-r--r-- | 2966/CH1/EX1.3/Ex1_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2966/CH1/EX1.3/Ex1_3.sce b/2966/CH1/EX1.3/Ex1_3.sce new file mode 100644 index 000000000..1eded4e6d --- /dev/null +++ b/2966/CH1/EX1.3/Ex1_3.sce @@ -0,0 +1,11 @@ +//water//
+//page 1.9 example 3//
+clc
+W1=150;//Ca2+ in water in mg/L//
+W2=60;//Mg2+ in water in mg/L//
+M1=100/40;//multiplication factor of Ca2+//
+M2=100/24;//multiplication factor of Mg2+//
+P1=W1*M1;//Ca2+ in terms of CaCO3//
+P2=W2*M2;//Mg2+ in terms of CaCO3//
+T=P1+P2;
+printf("\nTotal hardness is %.0f mg/L",T);
\ No newline at end of file |