#!/usr/bin/env python3
"""
Calculate cycle-averaged tidal flow field using approach of Mariotti (2018)
"""
import numpy as np
from scipy.sparse.linalg import spsolve
from landlab import Component
from landlab import HexModelGrid
from landlab import RasterModelGrid
from landlab.grid.mappers import map_min_of_link_nodes_to_link
from landlab.utils import get_core_node_matrix
from landlab.utils.return_array import return_array_at_link
_FOUR_THIRDS = 4.0 / 3.0
_M2_PERIOD = (12.0 + (25.2 / 60.0)) * 3600.0 # M2 tidal period, in seconds
[docs]
class TidalFlowCalculator(Component):
r"""Component that calculates average flow over a tidal cycle.
The TidalFlowCalculator component calculates a tidal flow velocity field on
a grid using the method of Mariotti et al. (2018). The grid can be raster
or hex. In essence, the method uses a numerical solution to the steady
diffusion equation. The resulting velocity fields---one for flood tide, and
on for ebb tide---represent the average velocity over a tidal half-cycle.
Velocity is obtained by starting with the total depth of water that is
added or removed during flood tide or ebb tide, respectively, at each grid
point. The idea is to solve for the water-surface elevation field that
produces this total inflow or outflow of water at each point, using a
linear approximation for shallow-water flow. The math is given in
Mariotti (2018), and is summarized below.
Tidal-averaged water depth: with z as bed surface elevation, and r as tidal
range, the water depth h is:
.. math::
h = [\max(0, r/2 − z) + \max(0, −r/2 − z)]/2
Horizontal flow velocity (2d vector): with :math:`\eta` as water-surface
elevation, n as Manning roughness, and :math:`\chi` as a scale velocity
(here unity), depth-averaged flow velocity U is:
.. math::
U = \frac{h^{4/3}}{n^2\chi} \nabla \eta
Tidal inundation / drainage rate, I: at any given point, this is the depth
of water added (flood tide) or drained (ebb tide) divided by the tidal half
period, T/2. It is defined as:
.. math::
I = [r/2 − \max(−r/2, \min(z, r/2))] / (T/2)
Mass conservation:
.. math::
\nabla \cdot (h U) = I
Because h is assumed constant, this becomes a steady diffusion equation:
.. math::
\nabla^2 \eta = \frac{I n^{4/3} \chi}{h^{7/3}}
This is a Poisson (steady diffusion) equation, which is solved numerically
at grid nodes using a finite-volume method. The water-surface gradient is
then used to calculate the velocity field, using the above equation for U.
Parameters
----------
grid : RasterModelGrid or HexModelGrid
A Landlab grid object.
tidal_range : float, optional
Tidal range (2x tidal amplitude) (m) (default 1)
tidal_period : float, optional
Tidal perioid (s) (default M2 tidal period = 12 h 25 min)
roughness : float, array, or field name; optional
Manning roughness coefficient ("n") (s/m^1/3) (default 0.01)
mean_sea_level : float, optional
Mean sea level (m) (default 0)
scale_velocity : float, optional
Scale velocity (see Mariotti, 2018) (m/s) (default 1)
min_water_depth : float, optional
Minimum depth for calculating diffusion coefficient (m) (default 0.01)
Examples
--------
>>> from landlab import RasterModelGrid
>>> from landlab.components import TidalFlowCalculator
>>> grid = RasterModelGrid((3, 5), xy_spacing=2.0) # 1 row core nodes
>>> grid.set_closed_boundaries_at_grid_edges(False, True, True, True)
>>> z = grid.add_zeros("topographic__elevation", at="node")
>>> z[:] = -50.0 # mean water depth is 50 m below MSL
>>> tfc = TidalFlowCalculator(
... grid, tidal_range=2.0, tidal_period=4.0e4, roughness=0.01
... )
>>> tfc.run_one_step()
>>> int(round(grid.at_link["ebb_tide_flow__velocity"][10] * 1.0e6))
4
References
----------
Mariotti, G. (2018) Marsh channel morphological response to sea level rise
and sediment supply. Estuarine, Coastal and Shelf Science, 209, 89--101,
https://doi.org/10.1016/j.ecss.2018.05.016.
"""
_name = "TidalFlowCalculator"
_unit_agnostic = False
_info = {
"flood_tide_flow__velocity": {
"dtype": float,
"intent": "out",
"optional": False,
"units": "m/s",
"mapping": "link",
"doc": "Horizontal flow velocity along links during flood tide",
},
"ebb_tide_flow__velocity": {
"dtype": float,
"intent": "out",
"optional": False,
"units": "m/s",
"mapping": "link",
"doc": "Horizontal flow velocity along links during ebb tide",
},
"topographic__elevation": {
"dtype": float,
"intent": "in",
"optional": False,
"units": "m",
"mapping": "node",
"doc": "Land surface topographic elevation",
},
"mean_water__depth": {
"dtype": float,
"intent": "out",
"optional": False,
"units": "m",
"mapping": "node",
"doc": "Tidal mean water depth",
},
}
[docs]
def __init__(
self,
grid,
tidal_range=1.0,
tidal_period=_M2_PERIOD,
roughness=0.01,
mean_sea_level=0.0,
scale_velocity=1.0,
min_water_depth=0.01,
):
"""Initialize TidalFlowCalculator."""
# Handle grid type
if isinstance(grid, RasterModelGrid):
self._grid_multiplier = 1.0 * grid.dx * grid.dy
elif isinstance(grid, HexModelGrid):
self._grid_multiplier = 1.5 * grid.spacing * grid.spacing
else:
raise TypeError("Grid must be raster or hex.")
# Call base class methods to check existence of input fields,
# create output fields, etc.
super().__init__(grid)
self.initialize_output_fields()
# Get references to various fields, for convenience
self._elev = self.grid.at_node["topographic__elevation"]
self._water_depth = self.grid.at_node["mean_water__depth"]
self._flood_tide_vel = self.grid.at_link["flood_tide_flow__velocity"]
self._ebb_tide_vel = self.grid.at_link["ebb_tide_flow__velocity"]
# Handle inputs
self.roughness = roughness # uses setter below
self._tidal_range = tidal_range
self._tidal_half_range = tidal_range / 2.0
self._tidal_period = tidal_period
self._tidal_half_period = tidal_period / 2.0
self._scale_velocity = scale_velocity
self._mean_sea_level = mean_sea_level
self._min_depth = min_water_depth
# Make other data structures
self._water_depth_at_links = np.zeros(grid.number_of_links)
self._diffusion_coef_at_links = np.zeros(grid.number_of_links)
self._boundary_mean_water_surf_elev = np.zeros(grid.number_of_nodes)
@property
def roughness(self):
"""Roughness coefficient (Manning's n)."""
return self._roughness
@roughness.setter
def roughness(self, new_val):
self._roughness = return_array_at_link(self.grid, new_val)
@property
def tidal_range(self):
"""Tidal range."""
return self._tidal_range
@tidal_range.setter
def tidal_range(self, new_val):
self._tidal_range = new_val
self._tidal_half_range = new_val / 2
@property
def tidal_period(self):
"""Tidal period."""
return self._tidal_period
@tidal_period.setter
def tidal_period(self, new_val):
self._tidal_period = new_val
self._tidal_half_period = new_val / 2
@property
def mean_sea_level(self):
"""Mean sea level."""
return self._mean_sea_level
@mean_sea_level.setter
def mean_sea_level(self, new_val):
self._mean_sea_level = new_val
[docs]
def calc_tidal_inundation_rate(self):
"""Calculate and store the rate of inundation/draining at each node,
averaged over a tidal half-cycle.
Examples
--------
>>> grid = RasterModelGrid((3, 5))
>>> z = grid.add_zeros("topographic__elevation", at="node")
>>> z[5:10] = [10.0, 0.25, 0.0, -0.25, -10.0]
>>> period = 4.0e4 # tidal period in s, for convenient calculation
>>> tfc = TidalFlowCalculator(grid, tidal_period=period)
>>> rate = tfc.calc_tidal_inundation_rate()
>>> 0.5 * rate[5:10] * period # depth in m
array([0. , 0.25, 0.5 , 0.75, 1. ])
>>> rate[5:10] # rate in m/s
array([0.00e+00, 1.25e-05, 2.50e-05, 3.75e-05, 5.00e-05])
Notes
-----
This calculates I in Mariotti (2018) using his equation (1).
"""
return (
self._tidal_half_range
- np.maximum(
-self._tidal_half_range, np.minimum(self._elev, self._tidal_half_range)
)
) / self._tidal_half_period
def _calc_effective_water_depth(self):
"""Calculate and store the effective water depth.
Water depth is calculated as the average of high tide and low tide
water depth, except where this average is less than the user-specified
minimum depth, in which case the minimum depth is assigned.
Examples
--------
>>> grid = RasterModelGrid((3, 5))
>>> z = grid.add_zeros("topographic__elevation", at="node")
>>> z[6:9] = [1.0, 2.0, -2.0]
>>> tfc = TidalFlowCalculator(grid, tidal_range=3.1, min_water_depth=0.02)
>>> tfc._calc_effective_water_depth()
>>> tfc._water_depth[6:9]
array([0.275, 0.02 , 2. ])
"""
high_tide_depth = (self.mean_sea_level + self._tidal_half_range) - self._elev
low_tide_depth = np.maximum(
(self.mean_sea_level - self._tidal_half_range) - self._elev, 0.0
)
self._water_depth[:] = (high_tide_depth + low_tide_depth) / 2.0
self._water_depth[self._water_depth <= self._min_depth] = self._min_depth
[docs]
def run_one_step(self):
"""Calculate the tidal flow field and water-surface elevation."""
# Tidal mean water depth and water surface elevation at nodes
# (Note: mean water surf elev only used for boundary conditions in
# matrix construction; should be mean sea level)
self._calc_effective_water_depth()
self._boundary_mean_water_surf_elev[:] = self._mean_sea_level
# Map water depth to links
map_min_of_link_nodes_to_link(
self.grid, self._water_depth, out=self._water_depth_at_links
)
# Calculate velocity and diffusion coefficients on links
velocity_coef = self._water_depth_at_links**_FOUR_THIRDS / (
(self.roughness**2) * self._scale_velocity
)
self._diffusion_coef_at_links[:] = self._water_depth_at_links * velocity_coef
# Calculate inundation / drainage rate at nodes
tidal_inundation_rate = self.calc_tidal_inundation_rate()
# Set up right-hand-side (RHS) vector for both ebb and flood tides (only
# difference is in the sign)
cores = self.grid.core_nodes
# For flood tide, set up matrix and add boundary info to RHS vector
# mat, rhs = make_core_node_matrix_var_coef(
mat, rhs = get_core_node_matrix(
self.grid,
self._boundary_mean_water_surf_elev,
coef_at_link=self._diffusion_coef_at_links,
)
rhs[:, 0] += self._grid_multiplier * tidal_inundation_rate[cores]
# Solve for flood tide water-surface elevation
tidal_wse = np.zeros(self.grid.number_of_nodes)
tidal_wse[self.grid.core_nodes] = spsolve(mat, rhs)
# Calculate flood-tide water-surface gradient at links
tidal_wse_grad = np.zeros(self.grid.number_of_links)
self.grid.calc_grad_at_link(tidal_wse, out=tidal_wse_grad)
# Calculate flow velocity field at links for flood tide, and assign
# negative of the flood tide values to ebb tide
self._flood_tide_vel[self.grid.active_links] = (
-velocity_coef[self.grid.active_links]
* tidal_wse_grad[self.grid.active_links]
)
self._ebb_tide_vel[:] = -self._flood_tide_vel