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 /1478/CH2/EX2.18.7 | |
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 '1478/CH2/EX2.18.7')
-rwxr-xr-x | 1478/CH2/EX2.18.7/2_18_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1478/CH2/EX2.18.7/2_18_7.sce b/1478/CH2/EX2.18.7/2_18_7.sce new file mode 100755 index 000000000..6bffb35a3 --- /dev/null +++ b/1478/CH2/EX2.18.7/2_18_7.sce @@ -0,0 +1,10 @@ +//water and its treatment//
+//example 2.18.7//
+clc
+Hardness_ppm=304//ppm in terms of CaCO3//
+Cl=0.07*Hardness_ppm//0.07 °Clarke =1 ppm//
+Fr=0.1*Hardness_ppm//0.1 °French =1 ppm//
+mgperlit=Hardness_ppm
+printf("Hardness in terms of °Clarke %.2f °Cl",Cl);
+printf("\nHardness in terms of °French %.1f °Fr",Fr);
+printf("\nHardness in terms of mg/lit %.0f mg/l",mgperlit);
\ No newline at end of file |