blob: 6de5fa5d6484b9fd6ac50255736d438a1499fe46 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 14: Water Treatment
//Problem: 1
clc;
//Declaration of Variables
wt_CaSO4 = 160 //in mg/L
//Solution
hardness = 100 * wt_CaSO4 / 136.
mprintf("The hardness is:%.2f mg/L of CaCO3 eqv.",hardness)
|