summaryrefslogtreecommitdiff
path: root/2966/CH1/EX1.73/1_73.sce
blob: d2ff560ca6f16467c484d4bc9e50547e69149da3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//water//
//page 1.90 example 6//
clc
conc_SH=1.2/1000//in terms of g/lit//
strength_SH=conc_SH*1000//in terms of mgs/lit//
volume_SH=20//in terms of ml//
volume_H=50//in terms of ml//
EDTA_SH=35//volume for Std hardwater(ml)//
EDTA_H=30//volume for sample hardwater(ml)//
AB_EDTA=25//volume required after boiling(ml)//
CaCO3_equivalent_SH=strength_SH*volume_SH//in terms of CaCO3 equivalent//
one_ml_EDTA=CaCO3_equivalent_SH/EDTA_SH//in terms of CaCO3 equivalent//
To_sample=one_ml_EDTA*EDTA_H/volume_H//total hardness for given volume//
To=To_sample*1000//total hardness per litre(ppm)//
P_sample=AB_EDTA*one_ml_EDTA/volume_H//permanent hardness for given volume//
P=P_sample*1000//permanent hardness per litre(ppm)//
T=To-P
printf("\nTotal Hardness is %.f ppm",To);
printf("\nPermanent Hardness is %.1f ppm",P);
printf("\nTemporary Hardness is %.1f ppm",T);