summaryrefslogtreecommitdiff
path: root/2966/CH1/EX1.47/1_47.sce
blob: 027dc9bbc2ab76f711d112c5f64a72aa42b626c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//water//
//page 1.55 example 12//
clc
Hardness=480//Hardness of water(mg/lit) or ppm//
H=Hardness/100//Hardness of water(gms/lit)//
volume_NaCl=300//Volume of NaCl//
conc_NaCl=150//% 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.5//in terms of (gms/lit)//
volume_hardwater=CaCO3_equivalent/H
printf("\nQuantity of water softened using zeolite bed is %.f litres",volume_hardwater);