Ch 2.6 Case Study: Lake Burley Griffin

Introduction

  • In this section, we apply the lake pollution model to Lake Burley Griffen in Canberra, Australia's capital.
  • This lake was named after Walter Burley Griffin, an American architect who won the competition to design Canberra.
  • Lake Burley Griffin was created artificially in 1962 and serves recreational and aesthetic purposes.

Introduction

  • We will use the analytical results from Ch2.5 to address specific questions regarding pollution levels identified below.
  • We will also implement numerical solutions for varying flow rates \( F(t) \) and incoming concentrations \( c_{in}(t) \), for which it might prove difficult to determine solutions analytically.

Humor



Who invented the round table?

Sir Cumference

Background

  • Lake pollutants can come in a variety of chemical and biological forms.
  • Our focus will be on fecal (thermotolerant) coliform bacteria.
  • These bacteria are considered primary indicators of fecal contamination and disease bacteria in water.

Background: Fecal Coliform Bacteria

  • They serve as an indicator for other pathogens, such as E. coli.
  • Waterborne pathogenic diseases coinciding with fecal coliform contamination include ear infections, dysentery, typhoid fever, gastroenteritis, and hepatitis A.
  • Fecal coliform bacteria can enter rivers through direct discharge of waste from mammals and birds, from agricultural (fertilizers) and storm runoff, and human sewage.
  • Their presence may also be the result of plant material, and pulp or paper mill effluent.
  • Aerobic decomposition of material containing fecal coliform can reduce dissolved oxygen levels in lakes enough to kill fish and other aquatic life.

Background: Lake Burley Griffen

  • Pollution levels measured in 1970s.
  • It was determined that while upstream sewage plants in Queanbeyan contributed to the problem, rural and urban runoff were factors as well.
  • Canberra and Queanbeyan are in two separate districts, governed by different safety standards.
  • Queanbeyan River flood, March 2021 (image below left).

Background: Lake Burley Griffen

  • In 1974 the mean concentration of bacteria fecal coliform count was \( 10^7 \) bacteria per \( \mathrm{m}^3 \) where river feeds into lake.
  • The safety threshold for contact recreational sports requires that no more than 10% of total samples over a 30-day period should exceed \( 4 \times 10^6 \) bacteria per \( \mathrm{m}^3 \).

Problem Statement

Use our Ch2.5 lake pollution model to address the following:

  • If sewage management were improved, would pollution levels would drop below the safety threshold?
  • Investigate numerical results when flow rate \( F(t) \) and incoming pollutant concentration \( c_{in}(t) \) vary with time.

Identify Variables and Parameters

  • \( C(t)= \) concentration of pollutant in lake at time \( t \), in \( \mathrm{bacteria}/ \mathrm{m}^3 \).
  • \( c_{in}= \) concentration of pollutant in flow entering lake, in \( \mathrm{bacteria}/ \mathrm{m}^3 \).
  • Lake volume: \( V = 28 \times 10^6 \mathrm{m}^3 \)
  • Flow rate: \( F = 4 \times 10^6 \mathrm{m}^3/ \mathrm{month} \)
  • Initial concentration in lake: \( c_0 = 10^7\mathrm{bacteria}/ \mathrm{m}^3 \)

IVP and Analytic Solution

From Ch2.5, the IVP and exact solution are given by

\[ \begin{aligned} \frac{dC}{dt} & = \frac{F}{V}\left[c_{in} - C(t) \right] , \,\, C(0)= c_0 \\ \\ C(t) & = c_{in} - (c_{in} - c_0) e^{-Ft/V } \end{aligned} \]

Unit Check for Differential Equation

  • Do both sides of the ODE have matching units?

\[ \small{ \frac{dC}{dt} = \frac{F}{V}\left[c_{in} - C(t) \right] , \,\, C(0)= c_0 } \]

  • Do units make sense for the physical quantities?

    \[ \small{ \begin{aligned} \left[\frac{dC}{dt}\right] &= \frac{bacteria}{(m^3 water)month} \\ \left[\frac{F}{V}c_{in}\right] &= \left(\frac{ m^3 water}{(m^3 water)month}\right)\left(\frac{bacteria}{ m^3 water}\right) = \frac{ bacteria}{(m^3 water)month} \\ \left[\frac{{F}}{V}C\right] &= \left(\frac{ m^3 water}{(m^3 water)month}\right)\left(\frac{bacteria}{ m^3 water}\right) = \frac{ bacteria}{(m^3 water)month} \end{aligned} } \]

Model Predictions: Case 1, Analytical

How long will it take for lake pollution to reach a specified level \( C_L \) if only fresh water flows into lake (\( c_{in} = 0 \))?

\[ \small{ \begin{aligned} C(t) & = c_{in} - (c_{in} - c_0) e^{-Ft/V } \\ C_L & = c_0 e^{-Ft/V } \ln \left( \frac{C_L}{c_0} \right) \\ t &= - \frac{V}{F} \ln \left( \frac{C_L}{c_0} \right) \end{aligned} } \]

V<-28*10^6; F<-4*10^6; CL<-4*10^6; c0<-10^7
(t <- -V/F*log(CL/c0) )
[1] 6.414035

Model Predictions: Case 1, Numerical

#Perform Rk4 on Lake Burley Griffen Pollution IVP  
F1 <- 4; c1 <- 0; V <- 28 
f <- function(x, C) { F1/V*(c1 - C) }
LakeModel(f,10,8)

plot of chunk unnamed-chunk-4

Model Predictions: Case 2, Analytical

  • Recall exact solution and its end behavior:

\[ \small{ \begin{aligned} C(t) & = c_{in} - (c_{in} - c_0) e^{-Ft/V } \\ \lim_{t \rightarrow \infty} & \left(c_{in} - (c_{in} - c_0) e^{-Ft/V }\right) = c_{in} \end{aligned} } \]

  • If we require \( c_{in} \leq 3 \times 10^6 \) bacteria per \( \mathrm{m}^3 \), then over time we will have \( C(t) < C_L = 4 \times 10^6 \) bacteria per \( \mathrm{m}^3 \).
  • Consult with water and environmental safety scientists to see how reasonable this requirement is.
  • See graph on next slide, using \( c_0 = 10^7 \) bacteria per \( \mathrm{m}^3 \).
  • Roughly 14 months required for pollution to drop below \( C_L \).

Model Predictions: Case 2, Numerical

#Perform Rk4 on Lake Burley Griffen Pollution IVP  
F1 <- 4; c1 <- 3; V <- 28 
f <- function(x, C) { F1/V*(c1 - C) }
LakeModel(f,10,20)

plot of chunk unnamed-chunk-5

Model Predictions: Case 3

  • Flow rate \( F(t) \) and \( c_{in}(t) \) typically vary seasonally.
  • Using data from 1970s, rough estimates are:

\[ \small{ \begin{aligned} F(t) & = 10^6 \left[ 10 + 6 \sin(2 \pi t) \right] \mathrm{m}^3/ \mathrm{year} \\ c_{in}(t) & = 10^6 \left[ 10 + 10 \cos(2 \pi t) \right] \mathrm{bacteria}/ \mathrm{m}^3 \end{aligned} } \]

  • Desmos graph (left) and Oregon watershed study (right).

Model Predictions: Case 3, Analytical

  • With these updated assumptions, we have

\[ \small{ \begin{aligned} \frac{dC}{dt} & = \frac{F(t)}{V}\left[c_{in}(t) - C(t) \right] , \,\, C(0)= c_0 \\ F(t) & = 10^6 \left[ 10 + 6 \sin(2 \pi t) \right] \\ c_{in}(t) & = 10^6 \left[ 10 + 10 \cos(2 \pi t) \right] \end{aligned} } \]

  • Determining analytical solution could be problematic.
  • We will focus on using numerical solution.
  • See graph on next slide, starting with \( c_0 = 0 \).
  • Pollution levels rise above \( C_L \) within first month or two, and tend towards 1974 levels.

Model Predictions: Case 3, Numerical

#Perform Rk4 on Lake Burley Griffen Pollution IVP  
F1 <- function(x) {(10 + 6*sin(2*pi*x))}
c1 <- function(x) {(10 + 10*cos(2*pi*x))}
f <- function(x, C) { F1(x)/V*(c1(x) - C) }
V <- 28;  LakeModel(f,0,20)

plot of chunk unnamed-chunk-6

Model Predictions: Case 3, Continued

  • Adapt parameters to match Case 2 conditions:

\[ \small{ \begin{aligned} F(t) & = 10^6 \left[ 4 + 2 \sin(2 \pi t) \right] \\ c_{in}(t) & = 10^6 \left[ 3 + 2\cos(2 \pi t) \right] \end{aligned} } \]

  • See graph on next slide, starting with \( c_0 = 10 \) (1974 levels).
  • Roughly 14 months required for pollution to drop below \( C_L \).

Model Predictions: Case 3, Continued

#Perform Rk4 on Lake Burley Griffen Pollution IVP  
F1 <- function(x) {(4 + 2*sin(2*pi*x))}
c1 <- function(x) {(3 + 2*cos(2*pi*x))}
f <- function(x, C) { F1(x)/V*(c1(x) - C) }
V <- 28;  LakeModel(f,10,20)

plot of chunk unnamed-chunk-7

Discussion of Results

  • The results of each of the three model prediction cases are discussed above, along with each successive refinement in assumptions used.
  • Models are simplistic in assuming a well-mixed body of water.
  • If concentration decreased from river entry to river outflow, with general form \( C(x,y,z,t) \) instead of \( C(t) \), then flushing time could take much longer.

Discussion of Results

  • Most lakes have main channel of flow that flushes regularly (advection), with adjacent areas of trapped water.
  • Margin areas flush gradually via diffusion at microscopic level.
  • Various pockets of lake may have a much higher (or lower) pollution concentration than others, including protected bays where swimming is most likely to take place.
  • A PDE advection-diffusion model is introduced in Ch12.4, and is a starting point for more advanced models.

References

[1] Mathematical Modeling with Case Studies, Barnes and Fulford, CRC Press, 2015.

[2] Coliform Bacteria in Well Water, https://www.aces.edu/blog/topics/fish-water/coliform-bacteria-in-well-water/, retrieved on 9/7/2022.

[3] Farmland and Fecal Coliform, https://www.stormh2o.com/erosion-control/vegetation-management/article/13006167/farmland-and-fecal-coliform, retrieved on 9/7/2022.

[4] Lake Burley Griffin, https://en.wikipedia.org/wiki/Lake_Burley_Griffin, retrieved on 9/6/2022.

References

[5] Queanbeyan flooding, https://www.canberratimes.com.au/story/7179470/good-news-queanbeyan-flood-warning-downgraded/, retrieved on 9/7/2022.

[6] How Much Bacteria Is In Your Drinking Water?, https://www.youtube.com/watch?v=OU2MD3sSTeM, retrieved on 9/7/2022.

[7] Seasonal Variations in River Flow and Nutrient Concentrations in a Northwestern USA Watershed, Anne Sigleo (EPA), Walter Frick (EPA), Research Gate, 2003.