This model will use eq. 5 to describe the rate of removal of organic waste by bacteria:
WasteEaten=WasteCoef*WastePPM*TimeWith eq. 10, the process of deoxygenation is:
DeOx = (wastecoef*WastePPM*time)-(ReOxCoeff/Streamheight*OxygenPPM*time)The saturation value of oxygen in water is 9.8 ppm. Therefore, the rate of oxygen absorption is only the interphase of the water's surface and air; there is no other mechanical or natural devices to increase the surface area of water. The rate of reoxygenation is:
ReOx = Area*(9.8-OxygenPPM)*ReOxCoeff*time
In this model, the test data are:
Figure 2: System Equations for Deoxygenation and
Reoxygenation
OxygenPPM(t) = OxygenPPM(t - dt) + (ReOx - OxGone) * dt INIT OxygenPPM = 9.8 INFLOWS: ReOx = IF OxygenPPM=9.8 THEN 0 ELSE MIN((Volume/StreamHeight) * (9.8-OxygenPPM) * ReOxCoeff * (time-dt),9.8-OxygenPPM) OUTFLOWS: OxGone = DeOx WastePPM(t) = WastePPM(t - dt) + (WasteinPPM - WasteEaten) * dt INIT WastePPM = 0 INFLOWS: WasteinPPM = GramsWasteIn*(time)/(Volume*1000) OUTFLOWS: WasteEaten = WasteCoef*WastePPM*(time+dt) Area = 200 DeOx = (WasteCoef*WastePPM*(time))-(ReOxCoeff/StreamHeight*OxygenPPM*(time)) GramsWasteIn = IF TIME = 1 THEN 250000*1000 ELSE 0 ReOxCoeff = .0000738 StreamHeight = 20 Volume = Area*StreamHeight WasteCoef = .00165
By setting running the time options, the students can observe the relationship between the oxygen concentration and waste B concentration (in PPM) (see figure 3).
Figure 3: The Graphical Relationship Between the
Oxygen Concentration and Waste B Concentration
Figure 4: The Numeric Relationship Between the Oxygen
Concentration and Waste B Concentration
Time | OxygenPPM | WastePPM | OxGone | ReOx | WasteEaten | GramsWasteIn |
---|---|---|---|---|---|---|
14 | 4.73 | 52.75 | 1.22 | 0.97 | 1.31 | 0 |
15 | 4.49 | 51.44 | 1.27 | 1.1 | 1.36 | 0 |
16 | 4.31 | 50.08 | 1.32 | 1.21 | 1.4 | 0 |
17 | 4.21 | 48.68 | 1.37 | 1.32 | 1.45 | 0 |
18 | 4.16 | 47.23 | 1.4 | 1.41 | 1.48 | 0 |
19 | 4.17 | 45.75 | 1.43 | 1.49 | 1.51 | 0 |
20 | 4.23 | 44.24 | 1.46 | 1.56 | 1.53 | 0 |
21 | 4.34 | 42.71 | 1.48 | 1.61 | 1.55 | 0 |
22 | 4.47 | 41.16 | 1.49 | 1.65 | 1.56 | 0 |
23 | 4.36 | 39.6 | 1.5 | 1.68 | 1.57 | 0 |
Teachers: Dissolved oxygen (DO) and 1k'A can be found in the CRC Chemical and Physical Handbook or Perry's Chemical Engineering Handbook. k"'B for a specific chemical can also be found in Perry's or CRC's, but they can also be easily determined in the laboratory.
[Back]
[