blob: 9604f5186e8468244906e572bcd5a936afffc9f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Chapter 14: Water Treatment
//Problem: 11
clc;
//Initialisation of Variables
C = 16.5 //in ppm for CO3-2
//Solution
Molarity = C * 10 ** - 6 / 60.
mprintf("Molarity of CO3-2 is : %.1e mol/L",Molarity)
|