From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2966/CH1/EX1.5/1_5.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 2966/CH1/EX1.5/1_5.sce (limited to '2966/CH1/EX1.5/1_5.sce') diff --git a/2966/CH1/EX1.5/1_5.sce b/2966/CH1/EX1.5/1_5.sce new file mode 100644 index 000000000..3453872de --- /dev/null +++ b/2966/CH1/EX1.5/1_5.sce @@ -0,0 +1,18 @@ +//water// +//page 1.10 example 5// +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 -- cgit