class BasicChRtTh

Model BasicChRtTh

terrainbento BasicChRtTh model program.

Erosion model program using non-linear diffusion, stream power with stream powe with a smoothed threshold and spatially varying erodibility based on two bedrock units, and discharge proportional to drainage area.

Landlab components used:
  1. FlowAccumulator

  2. DepressionFinderAndRouter (optional)

  3. StreamPowerSmoothThresholdEroder

  4. TaylorNonLinearDiffuser

class BasicChRtTh(clock, grid, water_erosion_rule_upper__threshold=1.0, water_erosion_rule_lower__threshold=1.0, critical_slope=0.3, number_of_taylor_terms=7, **kwargs)[source]

Bases: terrainbento.base_class.two_lithology_erosion_model.TwoLithologyErosionModel

BasicChRtTh model program.

This model program combines BasicCh, BasicTh and BasicRt programs by allowing for two lithologies, an “upper” layer and a “lower” layer, permitting the use of an smooth erosion threshold for each lithology, and using non-linear hillslope transport. Given a spatially varying contact zone elevation, \(\eta_C(x,y))\), model BasicChRtTh evolves a topographic surface described by \(\eta\) with the following governing equations:

\[ \begin{align}\begin{aligned}\frac{\partial \eta}{\partial t} = -\left[\omega - \omega_c (1 - e^{-\omega /\omega_c}) \right] - \nabla q_h\\\omega = K(\eta, \eta_C) Q^{m} S^{n}\\K(\eta, \eta_C ) = w K_1 + (1 - w) K_2,\\\omega_c(\eta, \eta_C ) = w \omega_{c1} + (1 - w) \omega_{c2}\\w = \frac{1}{1+\exp \left( -\frac{(\eta -\eta_C )}{W_c}\right)}\\q_h = -DS \left[ 1 + \left( \frac{S}{S_c} \right)^2 + \left( \frac{S}{S_c} \right)^4 + ... \left( \frac{S}{S_c} \right)^{2(N-1)} \right]\end{aligned}\end{align} \]

where \(Q\) is the local stream discharge, \(S\) is the local slope, \(m\) and \(n\) are the discharge and slope exponent parameters, \(W_c\) is the contact-zone width, \(K_1\) and : math:K_2 are the erodabilities of the upper and lower lithologies, \(\omega_{c1}\) and \(\omega_{c2}\) are the erosion thresholds of the upper and lower lithologies, and \(D\) is the regolith transport parameter. \(w\) is a weight used to calculate the effective erodibility \(K(\eta, \eta_C)\) based on the depth to the contact zone and the width of the contact zone. \(N\) is the number of terms in the Taylor Series expansion.

The weight \(w\) promotes smoothness in the solution of erodibility at a given point. When the surface elevation is at the contact elevation, the erodibility is the average of \(K_1\) and \(K_2\); above and below the contact, the erodibility approaches the value of \(K_1\) and \(K_2\) at a rate related to the contact zone width. Thus, to make a very sharp transition, use a small value for the contact zone width.

Refer to Barnhart et al. (2019) Table 5 for full list of parameter symbols, names, and dimensions.

The following at-node fields must be specified in the grid:
  • topographic__elevation

  • lithology_contact__elevation

__init__(clock, grid, water_erosion_rule_upper__threshold=1.0, water_erosion_rule_lower__threshold=1.0, critical_slope=0.3, number_of_taylor_terms=7, **kwargs)[source]
Parameters
  • clock (terrainbento Clock instance) –

  • grid (landlab model grid instance) – The grid must have all required fields.

  • m_sp (float, optional) – Drainage area exponent (\(m\)). Default is 0.5.

  • n_sp (float, optional) – Slope exponent (\(n\)). Default is 1.0.

  • water_erodibility_upper (float, optional) – Water erodibility of the upper layer (\(K_{1}\)). Default is 0.001.

  • water_erodibility_lower (float, optional) – Water erodibility of the upper layer (\(K_{2}\)). Default is 0.0001.

  • contact_zone__width (float, optional) – Thickness of the contact zone (\(W_c\)). Default is 1.

  • regolith_transport_parameter (float, optional) – Regolith transport efficiency (\(D\)). Default is 0.1.

  • water_erosion_rule_upper__threshold (float, optional.) – Erosion threshold of the upper layer (\(\omega_{c1}\)). Default is 1.

  • water_erosion_rule_lower__threshold (float, optional.) – Erosion threshold of the upper layer (\(\omega_{c2}\)). Default is 1.

  • critical_slope (float, optional) – Critical slope (\(S_c\), unitless). Default is 0.3.

  • number_of_taylor_terms (int, optional) – Number of terms in the Taylor Series Expansion (\(N\)). Default is 7.

  • **kwargs – Keyword arguments to pass to TwoLithologyErosionModel. Importantly these arguments specify the precipitator and the runoff generator that control the generation of surface water discharge (\(Q\)).

Returns

BasicChRtTh

Return type

model object

Examples

This is a minimal example to demonstrate how to construct an instance of model BasicChRtCh. For more detailed examples, including steady-state test examples, see the terrainbento tutorials.

To begin, import the model class.

>>> from landlab import RasterModelGrid
>>> from landlab.values import random, constant
>>> from terrainbento import Clock, BasicChRtTh
>>> clock = Clock(start=0, stop=100, step=1)
>>> grid = RasterModelGrid((5,5))
>>> _ = random(grid, "topographic__elevation")
>>> _ = constant(grid, "lithology_contact__elevation", value=-10.)

Construct the model.

>>> model = BasicChRtTh(clock, grid)

Running the model with model.run() would create output, so here we will just run it one step.

>>> model.run_one_step(1.)
>>> model.model_time
1.0
run_one_step(step)[source]

Advance model BasicChRtTh for one time-step of duration step.

The run_one_step method does the following:

  1. Creates rain and runoff, then directs and accumulates flow.

  2. Assesses the location, if any, of flooded nodes where erosion should not occur.

  3. Assesses if a PrecipChanger is an active boundary handler and if so, uses it to modify the erodibility by water.

  4. Updates the spatially variable erodibility and threshold values based on the relative distance between the topographic surface and the lithology contact.

  5. Calculates detachment-limited erosion by water.

  6. Calculates topographic change by non-linear diffusion.

  7. Finalizes the step using the ErosionModel base class function finalize__run_one_step. This function updates all boundary handlers handlers by step and increments model time by step.

Parameters

step (float) – Increment of time for which the model is run.

main()[source]

Executes model.