Lab 1.3: Sedimentary Transport (Applying the Numerical Model)#
Attention
Course completed Spring 2025.
Download PDF#
Lab 1.3: Sedimentary Transport (Applying the Numerical Model)
Introduction#
Building stratigraphic records with matrix math#
In part 1.1 of this module, we learned about how in many instances, delta morphology could be shown to be controlled by bulk sediment transport. Mathematically, this claim means that diffusion is a dominant process in building deltas, where the change of elevation over time is proportional to the second partial derivative of the topography with respect to space (the curvature). This equation is sometimes referred to as the hillslope application of the diffusion equation:
We first looked at steady state solutions of the diffusion equation (i.e., where \(\dfrac{\partial h}{\partial t} = 0\), through use of a moving reference frame). This allowed the derivation of an analytical solution to the diffusion equation, and could be used to predict the bathymetry of deltas whose morphology was not changing with time.
This approach estimates how topography changes with time by taking the average of the central-difference estimate of the second partial derivative of the topography with respect to space at both the current time step and the future timestep:
with \(r\) known as the Fourier number:
This equation forms a system of linear equations that can be rearranged and solved using linear algebra:
If we call the matrices on the right-hand side and left-hand side \(A\) and \(B\), respectively, we can rewrite the expression as:
where \(A\) and \(B\) are square matrices with whose side-length is equal to the length of \(h\) and \(b\) is a vector of boundary conditions. The first and last entries of \(b\) define the boundary conditions of your model space - setting these will fix the fluxes into the left and right edges of the system, and thus set the topography at those edges. The matrix equation above is solved by multiplying both sides by \(A^{-1}\):
Now you have the tools to solve the diffusion equation numerically. In each time step, the current topography (\(h^t\)) and boundary conditions (\(b^t\)) can be used to predict the topography in the next time step (\(h^{t+\Delta t}\)). This new topography, in turn, will be used to predict the next time step, and so on, until your model run ends. One interesting way to to use this model is to introduce a prescribed sedimentation term, represented here by the vector \(s\):
As the old adage goes, “All models are wrong, but some models are useful.” Models will never capture every single biological, chemical or physical process at play in the natural world that may be having an influence on the surface process you are studying. [1] Rather, models should be designed to capture some aspect of how the natural world works, and model experiments should be run to see how it responds to different parameter values or forcings. Although it is very simple, the numerical model you have developed for bulk sediment transport is rooted in some well-founded assumptions about how sediment is transported. Namely, that sediment fluxes should behave as diffusive fluxes, acting to smooth topography over time.
So, let’s get some practice using this model, examining the results, and thinking about what those results mean…