{ "cells": [ { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "# Adding pumping wells\n", "*Developed by R.A. Collenteur & M. Bakker*\n", "\n", "In this example notebook it is shown how to simulate the effect of a pumping well on the groundwater levels. We will first create a TFN model with the net recharge as the single stress used to explain the observed heads. Second, this model is extended to include the effect of a pumping well on the heads by adding another stress model. The simulated heads are compared and it can be clearly seen how the addition of the pumping well improves the simulation of the heads.\n", "\n", "This example was also shown at the 2018 General Assembly of the European Geophysical Union:\n", "\n", "Bakker, M., Collenteur, R., Calje, F. Schaars (2018) [Untangling groundwater head series using time series analysis and Pastas](https://meetingorganizer.copernicus.org/EGU2018/EGU2018-7194.pdf). In EGU General Assembly 2018.\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import pastas as ps\n", "import matplotlib.pyplot as plt\n", "\n", "ps.show_versions()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Read the time series from files\n", "All time series for this example have been prepared as csv-files, which are read using the Pandas `read_csv`- method. The following time series are available:\n", "\n", "- heads in meters above the Dutch National Datum (NAP), irregular time steps\n", "- rain in m/d\n", "- Makkink reference evaporation in m/d\n", "- Pumping extraction rate in m$^3$/d. The pumping well stopped operating after 2012." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "head = pd.read_csv(\n", " \"data_notebook_5/head_wellex.csv\", index_col=\"Date\", parse_dates=True\n", ").squeeze()\n", "rain = pd.read_csv(\n", " \"data_notebook_5/prec_wellex.csv\", index_col=\"Date\", parse_dates=True\n", ").squeeze()\n", "evap = pd.read_csv(\n", " \"data_notebook_5/evap_wellex.csv\", index_col=\"Date\", parse_dates=True\n", ").squeeze()\n", "well = pd.read_csv(\n", " \"data_notebook_5/well_wellex.csv\", index_col=\"Date\", parse_dates=True\n", ").squeeze()\n", "\n", "# Make a plot of all the time series\n", "ps.plots.series(head, [rain, evap, well]);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Create a Pastas Model\n", "A pastas Model is created. A constant and a noisemodel are automatically added. The effect of the net groundwater recharge $R(t)$ is simulated using the `ps.RechargeModel` stress model. Net recharge is calculated as $R(t) = P(t) - f * E(t)$ where $f$ is a parameter that is estimated and $P(t)$ and $E(t)$ are precipitation and reference evapotranspiration, respectively. " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Create the time series model\n", "ml = ps.Model(head, name=\"groundwater\")\n", "\n", "# Add the stres model for the net recharge\n", "rm = ps.RechargeModel(\n", " rain, evap, name=\"recharge\", rfunc=ps.Exponential(), recharge=ps.rch.Linear()\n", ")\n", "ml.add_stressmodel(rm)\n", "ml.solve(noise=True)\n", "ml.plot(figsize=(10, 4))\n", "\n", "# Let's store the simulated values to compare later\n", "sim1 = ml.simulate()\n", "res1 = ml.residuals()\n", "n1 = ml.noise()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Interpreting the results**\n", "\n", "As can be seen from the above plot, the observed heads show a clear rise whereas the simulated heads do not show this behaviour. The rise in the heads cannot be explained by an increased precipitation or a decreased evaporation over time, and it is likely another force is driving the heads upwards. Given the location of the well, we can hypothesize that the groundwater pumping caused a lowering of the heads in the beginning of the observations, which decreased when the pumping well was shut down. A next logical step is to add the effect of the pumping well and see if it improves the simulation of the head.\n", "\n", "## 3. Add the effect of the pumping well\n", "To simulate the effect of the pumping well a new stress model is added. The effect of the well is simulated using the `ps.StressModel`, which convoluted a stress with a response function. As a response function the `ps.Hantush` response function is used. The keyword-argument `up=False` is provided to tell the model this stress is supposed to have a lowering effect on the groundwater levels." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Add the stress model for the pumping well\n", "sm = ps.StressModel(\n", " well / 1e6, rfunc=ps.Hantush(), name=\"well\", settings=\"well\", up=False\n", ")\n", "ml.add_stressmodel(sm)\n", "\n", "# Solve the model and make a plot\n", "ml.solve()\n", "axes = ml.plots.decomposition(figsize=(10, 8))\n", "axes[0].plot(sim1) # Add the previously simulated values to the plot" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Interpreting the results**\n", "\n", "The addition of the pumping well to simulate the heads clearly improved the fit with the observed heads. It can also be seen how the pumping well stops contributing to the lowering of the head after ~2014, indicating the pumping effect of the well has dampened out. The period it takes before the historic pumping has no effect anymore can be approximated by the length of the response function for the well (e.g., `len(ml.get_step_response(\"well\"))`).\n", "\n", "## 4. Analyzing the residuals\n", "The difference between the model with and without the pumping becomes even more clear when analyzing the model residuals. The residuals of the model without the well show a clear upward trend, whereas the model with a model does not show this trend anymore." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "ml.residuals().plot(figsize=(10, 4))\n", "res1.plot()\n", "plt.legend([\"Model with well\", \"Model without well\"])" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.5" } }, "nbformat": 4, "nbformat_minor": 4 }