[docs]
class SimpleSubmarineDiffuser(LinearDiffuser):
r"""
Transport marine sediment using a water-depth-dependent diffusion model.
This component models sediment transport as a diffusion process with a
coefficient that depends on water depth :math:`h` as follows:
.. math::
D(h) = D_0 f_1(h) f_2(h)
Here :math:`D_0` is the maximum value, corresponding to the input
parameter :code:`shallow_water_diffusivity`.
The function :math:`f_1(h)` describes the decrease in transport efficiency
below the wave base depth :math:`h_w`. It is defined as unity for depth
above the wave base, and as
.. math::
f_1(h) = \exp( -(h - h_w) / h_w)
for :math:`h > h_w`.
The function :math:`f_2(h)` handles the transition in transport efficiency
around the shoreline. If :code:`tidal_range`, :math:`R_t`, is zero, then
:math:`f_2` is set to unity underwater (:math:`h \ge 0`), and a tiny value
above water (not zero, because that would cause a divide-by-zero error in
the base class).
If :math:`R_t > 0`, then a :math:`tanh` function is used to model
a smooth decrease in :math:`D` from the low to high tide level:
.. math::
f_2(h) = (\tanh ( -h / R_t) + 1) / 2
with an addition tiny value added to locations above water to avoid
division by zero.
Examples
--------
>>> from landlab import RasterModelGrid
>>> from landlab.components import SimpleSubmarineDiffuser
>>> grid = RasterModelGrid((3, 7), xy_spacing=100.0)
>>> grid.set_closed_boundaries_at_grid_edges(False, True, False, True)
>>> topo = grid.add_zeros("topographic__elevation", at="node")
>>> topo[:] = -10.0
>>> topo[9:14] = [0.0, 10.0, 10.0, 5.0, 5.0]
>>> ssd = SimpleSubmarineDiffuser(grid, tidal_range=0.0)
>>> ssd.run_one_step(dt=5.0)
>>> topo[8:13]
array([-9.5, 0. , 9.5, 10. , 5. ])
>>> grid.at_node["sediment_deposit__thickness"][8:13]
array([ 0.5, 0. , -0.5, 0. , 0. ])
"""
_name = "SimpleSubmarineDiffuser"
_time_units = "y"
_info = {
"sea_level__elevation": {
"dtype": "float",
"intent": "in",
"optional": False,
"units": "m",
"mapping": "grid",
"doc": "Sea level elevation",
},
"topographic__elevation": {
"dtype": "float",
"intent": "inout",
"optional": False,
"units": "m",
"mapping": "node",
"doc": "Land surface topographic elevation", # and seafloor
},
"water__depth": {
"dtype": "float",
"intent": "out",
"optional": False,
"units": "m",
"mapping": "node",
"doc": "depth of water under current sea level",
},
"sediment_deposit__thickness": {
"dtype": "float",
"intent": "out",
"optional": False,
"units": "m",
"mapping": "node",
"doc": "Thickness of deposition or erosion in latest time step",
},
}
[docs]
def __init__(
self,
grid,
sea_level=0.0,
wave_base=60.0,
shallow_water_diffusivity=100.0,
tidal_range=2.0,
**kwds,
):
"""
Parameters
----------
grid: ModelGrid (RasterModelGrid, HexModelGrid, etc.)
A landlab grid.
sea_level: float, optional
The current sea level (m) (default 0)
wave_base: float, optional
Wave base (m) (default 60)
shallow_water_diffusivity: float, optional
Diffusivity coefficient for shallow water (m2 / y) (default 100)
tidal_range: float, optional
Tidal range (m) (default 2)
"""
self._wave_base = float(wave_base)
self._sea_level = sea_level
grid.at_grid["sea_level__elevation"] = sea_level
self._sea_level = grid.at_grid["sea_level__elevation"]
self._shallow_water_diffusivity = shallow_water_diffusivity
self._tidal_range = tidal_range
if tidal_range > 0.0:
self._inverse_tidal_range = 1.0 / tidal_range
if "kd" not in grid.at_node:
grid.add_zeros("kd", at="node")
if "sediment_deposit__thickness" not in grid.at_node:
grid.add_zeros("sediment_deposit__thickness", at="node")
if "water__depth" not in grid.at_node:
grid.add_zeros("water__depth", at="node")
self._depth = grid.at_node["water__depth"]
self._time = 0.0
kwds.setdefault("linear_diffusivity", "kd")
super().__init__(grid, **kwds)
@property
def wave_base(self):
return self._wave_base
@wave_base.setter
def wave_base(self, value):
self._wave_base = float(value)
@property
def shallow_water_diffusivity(self):
return self._shallow_water_diffusivity
@shallow_water_diffusivity.setter
def shallow_water_diffusivity(self, value):
self._shallow_water_diffusivity = float(value)
@property
def time(self):
return self._time
@property
def sea_level(self):
return self.grid.at_grid["sea_level__elevation"]
@sea_level.setter
def sea_level(self, sea_level):
self.grid.at_grid["sea_level__elevation"] = sea_level
[docs]
def depth_function(self, water_depth):
"""
Return weighting factor for transport.
If there is no tidal range, then the weight factor is 1 if at or
below sea level, and 0 if above it. If there is a tidal range, then
a tanh function is used to weight transport across mean sea level, so
that there is some degree of transport for water depths within the
tidal range (less above, more below). The nature of the tanh function
is such that the transport is about 95% of its maximum value at a depth
of 1.5x the mean tidal range, and 5% of its maximum value at a height
of 1.5x the mean tidal range above mean sea level.
Parameters
----------
water_depth : float array
Depth of water relative to mean sea level (m) (can be negative)
Returns
-------
df : float array
Weight factor ranging from 0 to 1.
"""
if self._tidal_range > 0.0:
df = (np.tanh(self._inverse_tidal_range * water_depth) + 1.0) / 2.0
else:
df = 1.0 * (water_depth >= 0.0)
return df
[docs]
def calc_diffusion_coef(self):
"""
Calculate and store diffusion coefficient values.
Returns
-------
k : float array
Diffusion coefficient, m2/y
"""
sea_level = self.grid.at_grid["sea_level__elevation"]
self._depth[:] = sea_level - self._grid.at_node["topographic__elevation"]
deep_water = self._depth > self._wave_base
land = self._depth < 0.0
k = self.grid.at_node["kd"]
k[:] = self._shallow_water_diffusivity * self.depth_function(self._depth)
k[deep_water] *= np.exp(
-(self._depth[deep_water] - self._wave_base) / self._wave_base
)
k[land] += _TINY_DIFFUSIVITY
return k
[docs]
def run_one_step(self, dt):
"""
Advance by one time step.
Parameters
----------
dt : float
Time-step duration (y)
"""
z_before = self.grid.at_node["topographic__elevation"].copy()
self.calc_diffusion_coef()
super().run_one_step(dt)
depo = self.grid.at_node["sediment_deposit__thickness"]
depo[:] = self.grid.at_node["topographic__elevation"] - z_before
self._time += dt