blob: 6b610ff8ba76d4138098eb929824e944bac9a7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// CHEMISTRY FOR ENVIRONMENTAL AND ENGINEERING SCIENCE FIFTH EDITION
disp(' Chapter 9: Introduction to Water and Wastewater analysis')
//To calcluate the TCE concentration
disp('What is the TCE concentration in g/m^3 for each of the following')
disp('example 9.1 a')
disp( 'A soil having a density of of 2 g/cm^3 with TCE concentration of 4 ppm')
// Since density is given in cm^3 it has to be converted into m^3
density=2*1000
//Since 1ppm= 1/10^6 g, we get
ppm = 4/10^6
disp(' TCE concentration in g/cm^3 is')
TCE= ppm*density
disp(TCE)
|