diff options
Diffstat (limited to '2966/CH1/EX1.1.84/1_1_84.sce')
-rw-r--r-- | 2966/CH1/EX1.1.84/1_1_84.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2966/CH1/EX1.1.84/1_1_84.sce b/2966/CH1/EX1.1.84/1_1_84.sce new file mode 100644 index 000000000..464776870 --- /dev/null +++ b/2966/CH1/EX1.1.84/1_1_84.sce @@ -0,0 +1,18 @@ +//water//
+//page 1.84 example 1//
+clc
+W1=32.4;//Ca(HCO3)2 in water in mg/L//
+W2=29.2;//Mg(HCO3)2 in water in mg/L//
+W3=13.6;//CaSO4 in water in mg/L//
+M1=100/162;//multiplication factor of Ca(HCO3)2//
+M2=100/146;//multiplication factor of Mg(HCO3)2//
+M3=100/136;//multiplication factor of CaSO4//
+P1=W1*M1;//Ca(HCO3)2 in terms of CaCO3//
+P2=W2*M2;//Mg(HCO3)2 in terms of CaCO3//
+P3=W3*M3;//CaSO4 in terms of CaCO3//
+T=P1+P2;
+printf("\nTemporary hardness is %.0f ppm",T);
+P=P3;
+printf("\nPermanant hardness is %.0f ppm",P);
+To=T+P;
+printf("\nTotal hardness is %.0f ppm",To);
\ No newline at end of file |