markmbaum / Richards

A finite-volume model solving the Richards equation (partially saturated groundwater flow) in one dimension with periodic wetting of the surface

Home Page:https://markmbaum.github.io/Richards/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Richards

This repository contains a one-dimensional model of the Richards equation, which represents the movement of water in unsaturated soil. For more background about the equations and physical parameters in the model, see Chapter 7, Section 4 of:

The model simulates a section of partially saturated soil with a fully saturated boundary at the bottom and a top boundary that alternates between fully saturated and dry. The duration of wet and dry surface periods are user-specified. This alternation represents cycles of wetting and drying, to understand how much water penetrates from the surface to deeper in the soil column with different cycle characteristics and physical parameters.

The model is written in C++ and it depends on an external library of ODE solvers, libode. That library must be downloaded and compiled before the Richards model can be compiled.

For more details, see the documentation.


The plots below show an example simulation with a model domain 1 meter deep. Every 2 days, the top boundary is completely wet for one hour, as if it were raining hard. After the one hour wet period, moisture is allowed to evaporate from the surface. The bottom boundary is always fully saturated, as if it were the water table.

These plots can be generated, after compiling the model, with:

python clean.py out
./bin/richards_periodic.exe settings.txt out
cd scripts
python plot_period.py
cd ..

The first plot is like a Hovmöller diagram. It shows water flux throughout the model depth and across two wetting cycles. Red indicates upward flux and blue indicates downward flux. Every 2 days, the top of the diagram turns blue for about an hour when the surface is wet. The surface dries relatively quickly and moisture moves down the model domain, eventually causing a downward flux at the bottom boundary. The bottom boundary, however, switches between downward and upward flow. It's not clear from this plot whether, on average, more water is being removed from the bottom boundary than it is gaining.

norm_flux

This second plot shows the fluxes at the top, middle, and bottom of the model over time. At the top, the wet period manifests as a massive spike in downward (blue) water flux separated by much slower upward (red) flux as water evaporates from the soil into the atmosphere. In the middle of the domain, the wetting and drying cycles are smoothed out and slightly delayed. At the bottom, the cycle is even smoother and delayed. In this example, the bottom boundary is, on average, losing water. You can prove it by integrating the flux curve over time at any depth.

flux

This third plot simply shows the saturation fraction in the model domain, using the same Hovmöller style as in the first plot. The wet period at the top of the model is clear again.

water_frac

About

A finite-volume model solving the Richards equation (partially saturated groundwater flow) in one dimension with periodic wetting of the surface

https://markmbaum.github.io/Richards/

License:MIT License


Languages

Language:C++ 76.3%Language:Python 17.7%Language:Shell 3.3%Language:Makefile 2.7%