blob: 6a15fa04de2825cef226ad5ce4f2398c1b0f2071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//water//
//page 1.53 example 8//
clc
Hardness=500//Hardness of water(mg/lit) or ppm//
H=Hardness/100//Hardness of water(gms/lit)//
volume_NaCl=100//Volume of NaCl//
conc_NaCl=120//% NaCl consumed by zeolite bed//
Wt_per_Litre=conc_NaCl*10//gms NaCl consumed by zeolite bed per litre//
total_wt=Wt_per_Litre*volume_NaCl//total gms NaCl consumed by zeolite bed//
CaCO3_equivalent=total_wt*50/58.48//in terms of (gms/lit)//
volume_hardwater=CaCO3_equivalent/H
printf("\nQuantity of water softened using zeolite bed is %.f litres",volume_hardwater);
|