Assigment

UNESCO-IHE, Hydrology, Module 3, Transient Groundwater Flow, Dec 2017-Jan 2018
Mail to: tolsthoorn@gmail.com, use assigment IHE in the subject
Name and student:

Student number:

Locker number:

An aquifer storage and recovery system to reduce extraction from river during summer

Problem statement

A water company extracts water from a small river to treat and distribute it as drinking water for the population of a small town nearby. This is not a problem in winter. However, due to growing demand for drinking water and growing environmental concern, extraction has become more and more problematic during summers when the discharge of this small river is at its lowest. The environmental agency has recently even forbidden to further extract water from the river during the summer months.

Fig 1: Situation sketch

In order to solve the problem that this causes for the drinking water supply, the drinking water company has suggested an "Aquifer Storage and Recovery" system (these so-called ASR systems are becoming more and more popular). It wants to take in more river water during winter and inject it through a well (or wells) at some distance from the river into the local water-table aquifer, so that this water can be extracted during the next summer. This way, no water-intake will be necessary during the summer months.

However, the debate that took off between the water company and the environmental agency focuses on whether, or to what extent, this ASR system really makes sense. Can you really store the water in winter and extract it during summer without substantially affecting the already low summer-discharge of the river? Will not much of the stored water flow back to the river through the aquifer during winter? And would the extraction not induce an infiltration from the river into the aquifer during summer, so that there is still a water intake, the only differece now being that it will be invisible?

It's your task as hydrologist of the environmental agency to answer this question and illustrate it quantitatively and also explain it clearly. Your explanation should include why and how you derived your answer. It should show the math and the code.

It is obvious that ASR will work if the distance between the well and the river is large enough. But how large is large enough, and on what does it depend? The water company suggested a distance of 500 m from the river. Should the environmental agency agree?

Hints and further information:

  1. To analyse this system, at least coarsely, simplify the injection and extraction regime and apply superposition. Superposition allows to only consider the well and treat the river as a fixed-head boundary using a mirror well. Simplify the river to a straight line along the y-axis and place the well at distance $x_w$ from this line at coordinate $(x_w, 0)$. That is, the x-axis is perpendicular to the river.

  2. The drinking water demand, $Q$, is considered constant year-round at 150 L/d per inhabitant for the 10000 inhabitants of the town.

  3. Assume the following injection and recovery regime:

    • The water company well extracts during 3 summer months (June, July, Aug) its full demand
    • It compensates that during 6 winter months (October-March) by injecting half its daily capacity.
    • There is neither injection nor extraction during the months April, May and September.
  4. The idea is to analyse this ASR system by computing the exchange between the aquifer and the river due to the well.

  5. When you have coded the problem for this particular distance of 500 m, experiment with this distance to come up with a distance that realy makes sense in terms of not inducing loss of river water during the summer months. That is, try 1000 and 2000 m.

  6. Use kD = 900 m2/d, S = 0.2

Steps to take:

  1. Use Theis' well function to compute drawdowns:

    $$ s(t, t) =\frac Q {4 \pi kD} W(u), \,\,\,\,\ W(u) = -scipy.special.expi(-u),\,\,\,\,\, u \frac {r^2 S} {4 kD t} $$

  2. From Theis' well function

    $$ W(u) = \intop_u^\infty \frac {e^{-y}} y dy $$

    derive the flow $Q(r, t)$ [L3/T] and the specific discharge $q(r,t)$ [L2/T] in the aquifer at distance $r$ from the well.

  3. To simulate the river, apply a mirror well.

  4. Compute the exchange between aquifer and river, derive the specific discharge $q$ [L2/T] perpendicular to the river at an arbitrary point $y$.

  5. Compute this specific discharge for a large number of points between $-a x_w<y<a x_w$, where $a$ is sufficiently large, thus covering a large enough track of the river to capture about the full induced exchange between aquifer and the river.

    Generating appropriate y-coordinates this way, can be done as follows:

    y = np.hstack(( -np.logspace(0, np.log10(a * xw), Np)[::-1], np.logspace(0, np.log10(a * xw), Np))

    Where $a$ may be taken 10 and $Np$ 500 for example.

  6. Numerically integrate this specific discharge along the river to obtain the total exchange between river and aquifer.

    Numerical integration is easy when uing the Simpson rule (trapezium rule).

  7. Having the code to do this for a single time, it can readily be extended for a large number of times.

  8. Check that for large times, the total flow between aquifer and river should be about the total discharge of the well if the well is continuously injecting.

  9. Finally simulate the actual flow regime with 6 month injection and 3 months extraction as explained above. Simulate for a period of 5 years. This simulation requires superposition in time.

Suggestions:

  1. It's probably easiest to analyze everything in time units of months instead of days, 5 years time then runs from 0 to 60 months.
  2. Learn to define and use functions in Python to keep overview and prevent repeating code.
  3. If you consider this too complicated, then anlyse at least the situation for only the river point closest to the well.
  4. Start by plotting the head.
  5. When this works focus on the discharge.
  6. Don't hesitate to ask questions and for help.

In [ ]: