blob: e432f3f21165d67a3d2710e05aa099dc1d1ed49c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Chapter 14: Water Treatment
//Problem: 10
clc;
//Initialisation of Variables
v1 = 50. //in ml for hardwater
v2 = 15 //in ml for EDTA
m = 0.01 //in M for EDTA
//Solution
M = v2 * m / v1
N = M * 2
S = N * 50 * 1000
mprintf("Molarity of hardness is :%.3f M\n", M)
mprintf(" Normality of hardness is :%.3f N\n", N)
mprintf(" Strength of hardness is :%d ppm", S)
|