From 177a0009cc2fac41be6a42b226b640440c4bad66 Mon Sep 17 00:00:00 2001 From: iovereem Date: Thu, 13 Aug 2020 20:16:26 -0600 Subject: [PATCH] add tidal flow calculator --- lessons/landlab/tidal_flow_calculator.ipynb | 544 ++++++++++++++++++++ 1 file changed, 544 insertions(+) create mode 100644 lessons/landlab/tidal_flow_calculator.ipynb diff --git a/lessons/landlab/tidal_flow_calculator.ipynb b/lessons/landlab/tidal_flow_calculator.ipynb new file mode 100644 index 0000000..c29162f --- /dev/null +++ b/lessons/landlab/tidal_flow_calculator.ipynb @@ -0,0 +1,544 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tidal Flow Calculator\n", + "\n", + "*(Greg Tucker, August 2020)*\n", + "\n", + "This tutorial explains the theory behind the `TidalFlowCalculator` Landlab component, and shows several examples of how to use the component in various different configurations." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Theory\n", + "\n", + "The `TidalFlowCalculator` computes a tidal-cycle averaged flow velocity field, given a topography (bathymetry), mean sea level, tidal range, and tidal period. The approach that the component uses is based on Mariotti (2018). The idea is to calculate a flow velocity field that is just sufficient to bring in (flood tide) or send out (ebb tide) all of the water that enters or leaves the system during one tidal cycle.\n", + "\n", + "The inertial terms in the shallow-water momentum equations are assumed to be negligible, so that the operative driving forces are gravity and pressure (represented by the water-surface slope), and the resisting force is friction. The resulting relationship between velocity, depth, roughness, and water-surface slope is linearized into the following form:\n", + "\n", + "$$U = -\\frac{h^{4/3}}{n^2\\chi} \\nabla\\eta$$ (1)\n", + "\n", + "Here, $U$ is velocity (2D vector), $h$ is tidal-averaged water depth, $n$ is roughness, $\\chi$ is a scale velocity (here assumed to be 1 m/s), and $\\eta = h + z$ is water surface elevation (and $z$ is bed surface elevation). The equation above represents momentum conservation. Note that $U$ and $\\nabla\\eta$ are vectors, representing the $x$ and $y$ components of flow velocity and water-surface gradient, respectively.\n", + "\n", + "The method uses a steady form of the mass-conservation equation---again, the idea is that we're seeking a flow velocity field that is just sufficient to carry in or out all the water that enters or exits during a tidal cycle. The mass conservation equation is:\n", + "\n", + "$$\\nabla \\cdot \\mathbf{q} = I$$\n", + "\n", + "Here, $\\mathbf{q} = U h$ is the volume flow per unit width (again, a two-dimensional vector). The variable $I$ is \"the distributed input of water over half a tidal cycle\" (Mariotti, 2018), defined as\n", + "\n", + "$$I(x,y) = \\left[r/2 − \\max(−r/2, \\min(z(x,y), r/2))\\right]/(T/2)$$\n", + "\n", + "where $r$ is the tidal range [L] and $T$ is the tidal period [T]. In the expression above, if the water at a point $(x,y)$ is deeper than the tidal amplitude (i.e, half the tidal range, or $r/2$), then the depth of inundation or drainage during half of a tidal cycle is simply the tidal range $r$. All of this water must enter or leave during half a tidal cycle, or $T/2$. Therefore the **rate** [L/T] of inundation or drainage is equal to the depth divided by $T/2$. Again, if the water is deeper than $r/2$, the rate is just $2r/T$.\n", + "\n", + "Our goal is to calculate $U$ at each location. We get it by solving for $\\eta$ then using equation (1) to calculate $U$. It turns out that we can formulate this as a Poisson equation: a steady diffusion equation, in this case in two (horizontal) dimensions. First, approximate that $h$, $n$ are uniform (even though they aren't, in the general problem). Substituting, we have\n", + "\n", + "$$\\nabla U h = \\nabla \\frac{h^{7/3}}{n^2\\chi} \\nabla\\cdot\\eta = \\frac{h^{7/3}}{n^2\\chi} \\nabla^2 \\eta$$\n", + "\n", + "Plugging this into our mass conservation law\n", + "\n", + "$$\\frac{h^{7/3}}{n^2\\chi} \\nabla^2 \\eta = I$$\n", + "\n", + "This can be rearranged to:\n", + "\n", + "$$\\boxed{\\nabla^2\\eta = \\frac{In^2\\chi}{h^{7/3}}} \\text{ (equation 1)}$$\n", + "\n", + "This is the Poisson problem to be solved numerically.\n", + "\n", + "Note that $I$ is positive on the flood tide and negative on the ebb tide. In practice, the component solves for the ebb tide velocity, than calculates the flood tide velocity as -1 times the ebb tide velocity (i.e., just the reverse of the ebb tide)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Numerical methods\n", + "\n", + "The `TidalFlowCalculator` uses a finite-volume method to solve equation (1) numerically at the core nodes of a Landlab grid. The grid must be either a `RasterModelGrid` or a `HexModelGrid`. You can find a discussion of finite-volume methods in the tutorial for Landlab's matrix-building utility. Here, a quick sketch of the solution method is as follows. The governing mass conservation equation is:\n", + "\n", + "$$\\nabla\\cdot \\mathbf{q} = I$$\n", + "\n", + "The basis for the 2d finite-volume method is to integrate both sides of the equation over a region $R$, representing a grid cell. Then Green's theorem is used to turn the divergence term into a line integral of the flux around the perimeter of the region, $S$. The above equation becomes\n", + "\n", + "$$\\oint_S \\mathbf{q} \\mathbf{n} dS = IA_c$$\n", + "\n", + "where $A_c$ is the surface area of the region and $\\mathbf{n}$ is the outward unit vector normal to the perimeter of the region. When the region is a grid cell with $N$ faces of width $w$, the above becomes\n", + "\n", + "$$\\sum_{k=1}^N q_k \\delta_k w = IA_c$$\n", + "\n", + "where $q_k$ is the magnitude of $q$ in the face-perpendicular direction at cell face $k$, and $\\delta$ is either 1 or -1, depending on the orientation of the grid link that crosses the face. The flux strength $q$ is positive when flow is in the direction of the link, and negative when it is in the opposite direction. For a `RasterModelGrid`, $N=4$, and for a `HexModelGrid`, $N=6$.\n", + "\n", + "As discussed in the tutorial *Building a matrix for numerical methods using a Landlab grid*, when $q$ depends on the gradient in some field (in this case, water-surface elevation), the above equation can be translated into a matrix equation of the form $A\\mathbf{x}=\\mathbf{b}$, whose solution gives the solution to the Poisson equation." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Examples\n", + "\n", + "### One-dimensional case\n", + "\n", + "Consider a one dimensional domain with open water at the east (right) side and a closed boundary (e.g., seawall) at the west (left) side, where by definition the distance from the seawall is $x=0$. Assume that the mean water depth is larger than the tidal amplitude, so that the sea bed is never exposed, even at low tide. Imagine that our tidal range is 2 meters, the water depth is 50 meters, and (to make the math a bit easier) the tidal period is 40,000 seconds. The analytical solution for flow discharge, $q$, can be found by noting that at any given distance from the sea wall, $q$ must be just enough to carry out all the outgoing water (ebb tide) or carry in all the incoming water (flood tide). The rate of inflow or outflow is equal to the inundation/drainage rate $I$ times distance from the sea wall, $x$:\n", + "\n", + "$$q = -I x$$\n", + "\n", + "The negative sign just means that $q$ is positive (flow to the right/east) when the tide is going out (negative $I$) and negative (flow to the left/west) when the tide is coming in. The velocity is\n", + "\n", + "$$U = -I x / h$$\n", + "\n", + "Here, $h$ is a function of $x$, but with a modest roughness (Manning's $n$) of 0.01 and relatively deep water, we can get a good approximation using just the tidal-average depth of 50 m. With this approximation, we expect the solution to be:\n", + "\n", + "$$U = \\pm \\frac{(2 m)}{(50 m) \\cdot (2\\times 10^4 s)} x = 2\\times 10^{-6} x$$\n", + "\n", + "The code below runs the component for these conditions, and compares the solution with this analytical solution." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# imports\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "from landlab import RasterModelGrid, imshow_grid\n", + "from landlab.components import TidalFlowCalculator" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# set up the grid\n", + "grid = RasterModelGrid((3, 101), xy_spacing=2.0) # only 1 row of core nodes, between 2 boundary rows\n", + "grid.set_closed_boundaries_at_grid_edges(False, True, True, True) # only east/right side open\n", + "z = grid.add_zeros('topographic__elevation', at='node') # create the bathymetry field\n", + "z[:] = -50.0 # mean water depth is 50 m below MSL, which is our vertical datum\n", + "\n", + "# create the component\n", + "tfc = TidalFlowCalculator(grid, tidal_range=2.0, tidal_period=4.0e4, roughness=0.01)\n", + "\n", + "# run the component\n", + "tfc.run_one_step()\n", + "\n", + "# calculate the analytical solution\n", + "x = np.arange(3.0, 200.0, 2.0)\n", + "vel_analytical = 2.0e-6 * x\n", + "\n", + "# plot both\n", + "plt.plot(x, grid.at_link['ebb_tide_flow__velocity'][grid.active_links], 'b.')\n", + "plt.plot(x, vel_analytical, 'r')\n", + "plt.xlabel('Distance from sea wall (x)')\n", + "plt.ylabel('Ebb tide velocity (m/s)')\n", + "plt.legend(['numerical', 'analytical'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As we would expect, the numerical solution is slightly lower than the analytical solution, because our simplified analytical solution does not take into account the extra water depth whose gradient propels the ebb tide. (Exercise to the reader: develop the analytical solution for water surface elevation, and then use it to derive a correct flow velocity that accounts for a little bit of extra depth at ebb tide, and a little less depth at flood tide.)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Idealized two-dimensional cases\n", + "\n", + "#### Two open boundaries\n", + "\n", + "Here we use a rectangular domain with two open sides and two closed sides. Start by defining a generic plotting function:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from landlab.grid.mappers import map_link_vector_components_to_node\n", + "\n", + "def map_velocity_components_to_nodes(grid):\n", + " \"\"\"Map the velocity components from the links to the nodes, and return the node arrays.\"\"\"\n", + " ebb_vel_x, ebb_vel_y = map_link_vector_components_to_node(grid, grid.at_link['ebb_tide_flow__velocity'])\n", + " flood_vel_x = -ebb_vel_x\n", + " flood_vel_y = -ebb_vel_y\n", + " return (ebb_vel_x, ebb_vel_y, flood_vel_x, flood_vel_y)\n", + "\n", + "def plot_tidal_flow(grid, resample=1):\n", + " \n", + " (ebb_x, ebb_y, flood_x, flood_y) = map_velocity_components_to_nodes(grid)\n", + "\n", + " # depth\n", + " plt.figure()\n", + " imshow_grid(grid, grid.at_node['mean_water__depth'], cmap='YlGnBu', color_for_closed='g')\n", + " plt.title('Water depth (m)')\n", + " plt.xlabel('Distance (m)')\n", + " plt.ylabel('Distance (m)')\n", + "\n", + " # down-sample for legible quiver plots if needed\n", + " if resample != 1:\n", + " xr = grid.x_of_node.reshape((grid.number_of_node_rows, grid.number_of_node_columns))[::resample, ::resample]\n", + " yr = grid.y_of_node.reshape((grid.number_of_node_rows, grid.number_of_node_columns))[::resample, ::resample]\n", + " ebb_xr = ebb_x.reshape((grid.number_of_node_rows, grid.number_of_node_columns))[::resample, ::resample]\n", + " ebb_yr = ebb_y.reshape((grid.number_of_node_rows, grid.number_of_node_columns))[::resample, ::resample]\n", + " fld_xr = flood_x.reshape((grid.number_of_node_rows, grid.number_of_node_columns))[::resample, ::resample]\n", + " fld_yr = flood_y.reshape((grid.number_of_node_rows, grid.number_of_node_columns))[::resample, ::resample]\n", + " else:\n", + " xr = grid.x_of_node\n", + " yr = grid.y_of_node\n", + " ebb_xr = ebb_x\n", + " ebb_yr = ebb_y\n", + " fld_xr = flood_x\n", + " fld_yr = flood_y\n", + " \n", + " # ebb tide\n", + " plt.figure()\n", + " imshow_grid(grid, grid.at_node['topographic__elevation'])\n", + " plt.quiver(xr, yr, ebb_xr, ebb_yr)\n", + " plt.title('Ebb Tide')\n", + " plt.xlabel('Distance (m)')\n", + " plt.ylabel('Distance (m)')\n", + "\n", + " ebb_vel_magnitude = np.sqrt(ebb_x * ebb_x + ebb_y * ebb_y)\n", + " plt.figure()\n", + " imshow_grid(grid, ebb_vel_magnitude, cmap='magma', color_for_closed='g')\n", + " plt.title('Ebb Tide Velocity Magnitude (m/s)')\n", + " plt.xlabel('Distance (m)')\n", + " plt.ylabel('Distance (m)')\n", + "\n", + " # flood tide\n", + " plt.figure()\n", + " imshow_grid(grid, grid.at_node['topographic__elevation'])\n", + " plt.quiver(xr, yr, fld_xr, fld_yr)\n", + " plt.title('Flood Tide')\n", + " plt.xlabel('Distance (m)')\n", + " plt.ylabel('Distance (m)')\n", + "\n", + " plt.figure()\n", + " flood_vel_magnitude = np.sqrt(flood_x * flood_x + flood_y * flood_y)\n", + " imshow_grid(grid, flood_vel_magnitude, cmap='magma', color_for_closed='g')\n", + " plt.title('Flood Tide Velocity Magnitude (m/s)')\n", + " plt.xlabel('Distance (m)')\n", + " plt.ylabel('Distance (m)')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# parameters\n", + "nrows = 15\n", + "ncols = 25\n", + "grid_spacing = 100.0 # m\n", + "mean_depth = 2.0 # m\n", + "tidal_range = 2.0 # m\n", + "roughness = 0.01 # s/m^1/3, i.e., Manning's n\n", + "\n", + "# create and set up the grid\n", + "grid = RasterModelGrid((nrows, ncols), xy_spacing=grid_spacing)\n", + "z = grid.add_zeros('topographic__elevation', at='node')\n", + "z[:] = -mean_depth\n", + "grid.set_closed_boundaries_at_grid_edges(False, False, True, True)\n", + "\n", + "# instantiate the TidalFlowCalculator\n", + "tfc = TidalFlowCalculator(grid, tidal_range=2.0, roughness=0.01)\n", + "\n", + "# run it\n", + "tfc.run_one_step()\n", + "\n", + "# make plots...\n", + "plot_tidal_flow(grid)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Uniform with one open boundary" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# parameters\n", + "nrows = 400\n", + "ncols = 200\n", + "grid_spacing = 2.0 # m\n", + "mean_depth = 2.0 # m\n", + "tidal_range = 3.1 # m\n", + "tidal_period = 12.5 * 3600.0 # s\n", + "roughness = 0.01 # s/m^1/3, i.e., Manning's n\n", + "open_nodes = np.arange(95, 105, dtype=np.int)\n", + "\n", + "# create and set up the grid\n", + "grid = RasterModelGrid((nrows, ncols), xy_spacing=grid_spacing)\n", + "z = grid.add_zeros('topographic__elevation', at='node')\n", + "z[:] = -mean_depth\n", + "grid.set_closed_boundaries_at_grid_edges(True, True, True, False)\n", + "\n", + "# instantiate the TidalFlowCalculator\n", + "tfc = TidalFlowCalculator(grid, tidal_range=tidal_range, tidal_period=tidal_period, roughness=0.01)\n", + "\n", + "# run it\n", + "tfc.run_one_step()\n", + "\n", + "# make plots...\n", + "plot_tidal_flow(grid, resample=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Uniform with narrow open boundary" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# parameters\n", + "nrows = 400\n", + "ncols = 200\n", + "grid_spacing = 2.0 # m\n", + "mean_depth = 2.0 # m\n", + "tidal_range = 3.1 # m\n", + "tidal_period = 12.5 * 3600.0 # s\n", + "roughness = 0.01 # s/m^1/3, i.e., Manning's n\n", + "open_nodes = np.arange(95, 105, dtype=np.int)\n", + "\n", + "# create and set up the grid\n", + "grid = RasterModelGrid((nrows, ncols), xy_spacing=grid_spacing)\n", + "z = grid.add_zeros('topographic__elevation', at='node')\n", + "z[:] = -mean_depth\n", + "grid.set_closed_boundaries_at_grid_edges(True, True, True, True)\n", + "grid.status_at_node[open_nodes] = grid.BC_NODE_IS_FIXED_VALUE\n", + "\n", + "# instantiate the TidalFlowCalculator\n", + "tfc = TidalFlowCalculator(grid, tidal_range=tidal_range, tidal_period=tidal_period, roughness=0.01)\n", + "\n", + "# run it\n", + "tfc.run_one_step()\n", + "\n", + "# make plots...\n", + "plot_tidal_flow(grid, resample=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Straight channel" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from landlab.grid.mappers import map_max_of_link_nodes_to_link\n", + "\n", + "# parameters\n", + "nrows = 400\n", + "ncols = 200\n", + "grid_spacing = 2.0 # m\n", + "marsh_height = 1.0 # m\n", + "channel_depth = 2.0 # m\n", + "tidal_range = 3.1 # m\n", + "tidal_period = 12.5 * 3600.0 # s\n", + "open_nodes = np.arange(94, 105, dtype=np.int) # IDs of open-boundary nodes (along channel at bottom/south boundary)\n", + "roughness_shallow = 0.2 # Manning's n for areas above mean sea level (i.e., the marsh)\n", + "roughness_deep = 0.01 # Manning's n for areas below mean sea level (i.e., the channel)\n", + "\n", + "# create and set up the grid\n", + "grid = RasterModelGrid((nrows, ncols), xy_spacing=grid_spacing)\n", + "z = grid.add_zeros('topographic__elevation', at='node')\n", + "z[grid.core_nodes] = marsh_height\n", + "channel = np.logical_and(grid.x_of_node >= 188.0, grid.x_of_node <= 208.0)\n", + "z[channel] = -channel_depth\n", + "grid.set_closed_boundaries_at_grid_edges(True, True, True, True)\n", + "grid.status_at_node[open_nodes] = grid.BC_NODE_IS_FIXED_VALUE\n", + "\n", + "# set up roughness field (calculate on nodes, then map to links)\n", + "roughness_at_nodes = roughness_shallow + np.zeros(z.size)\n", + "roughness_at_nodes[z < 0.0] = roughness_deep\n", + "roughness = grid.add_zeros('roughness', at='link')\n", + "map_max_of_link_nodes_to_link(grid, roughness_at_nodes, out=roughness)\n", + "\n", + "# instantiate the TidalFlowCalculator\n", + "tfc = TidalFlowCalculator(grid, tidal_range=tidal_range, tidal_period=tidal_period, roughness='roughness')\n", + "\n", + "# run it\n", + "tfc.run_one_step()\n", + "\n", + "# make plots...\n", + "plot_tidal_flow(grid, resample=10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Case study based on example in Giulio Mariotti's MarshMorpho2D package\n", + "\n", + "This example reads topography/bathymetry from a 2-meter resolution digital elevation model. Locations above mean high tide are flagged as closed boundaries." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from landlab.io import read_esri_ascii\n", + "\n", + "# Set parameters (these are from the MarshMorpho2D source code)\n", + "tidal_period = 12.5 * 3600.0 # tidal period in seconds\n", + "tidal_range = 3.1 # tidal range in meters\n", + "roughness = 0.02 # Manning's n\n", + "mean_sea_level = 0.0 # mean sea level in meters\n", + "min_water_depth = 0.01 # minimum depth for water on areas higher than low tide water surface, meters\n", + "nodata_code = 999 # code for a DEM cell with no valid data\n", + "\n", + "# Read the DEM to create a grid and topography field\n", + "(grid, z) = read_esri_ascii('zSW3.asc', name='topographic__elevation')\n", + "\n", + "# Configure boundaries: any nodata nodes, plus any nodes higher than mean high tide\n", + "grid.status_at_node[z==nodata_code] = grid.BC_NODE_IS_CLOSED\n", + "grid.status_at_node[z>1.8] = grid.BC_NODE_IS_CLOSED\n", + "boundaries_above_msl = np.logical_and(grid.status_at_node==grid.BC_NODE_IS_FIXED_VALUE, z > 0.0)\n", + "grid.status_at_node[boundaries_above_msl] = grid.BC_NODE_IS_CLOSED\n", + "\n", + "# Instantiate a TidalFlowCalculator component\n", + "tfc = TidalFlowCalculator(\n", + " grid,\n", + " tidal_period=tidal_period,\n", + " tidal_range=tidal_range,\n", + " roughness=roughness,\n", + " mean_sea_level=mean_sea_level,\n", + " min_water_depth=min_water_depth,\n", + ")\n", + "\n", + "# Calculate tidal flow\n", + "tfc.run_one_step()\n", + "\n", + "# make plots...\n", + "plot_tidal_flow(grid, resample=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example with hex grid\n", + "\n", + "The following example demonstrates that the `TidalFlowCalculator` can operate on a hex grid\n", + "\n", + "(Note that the slightly odd flow patterns along the two closed edges are just artifacts of the method used to map velocity vectors from links onto nodes for plotting purposes; the current method doesn't accurately handle nodes adjacent to closed boundaries.)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from landlab.grid.mappers import map_link_vector_components_to_node\n", + "\n", + "def plot_tidal_flow_hex(grid):\n", + "\n", + " (ebb_x, ebb_y) = map_link_vector_components_to_node(grid, grid.at_link['ebb_tide_flow__velocity'])\n", + "\n", + " # ebb tide velocity vectors & magnitude\n", + " ebb_vel_magnitude = np.sqrt(ebb_x * ebb_x + ebb_y * ebb_y)\n", + " plt.figure()\n", + " imshow_grid(grid, ebb_vel_magnitude, cmap='magma')\n", + " plt.quiver(grid.x_of_node, grid.y_of_node, ebb_x, ebb_y)\n", + " plt.title('Ebb Tide')\n", + " plt.xlabel('Distance (m)')\n", + " plt.ylabel('Distance (m)')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from landlab import HexModelGrid\n", + "\n", + "# parameters\n", + "nrows = 15\n", + "ncols = 25\n", + "grid_spacing = 100.0 # m\n", + "mean_depth = 2.0 # m\n", + "tidal_range = 2.0 # m\n", + "roughness = 0.01 # s/m^1/3, i.e., Manning's n\n", + "\n", + "# create and set up the grid\n", + "grid = HexModelGrid((nrows, ncols), spacing=grid_spacing, node_layout='rect')\n", + "z = grid.add_zeros('topographic__elevation', at='node')\n", + "z[:] = -mean_depth\n", + "grid.status_at_node[grid.nodes_at_bottom_edge] = grid.BC_NODE_IS_CLOSED\n", + "grid.status_at_node[grid.nodes_at_left_edge] = grid.BC_NODE_IS_CLOSED\n", + "\n", + "# instantiate the TidalFlowCalculator\n", + "tfc = TidalFlowCalculator(grid, tidal_range=2.0, roughness=0.01)\n", + "\n", + "# run it\n", + "tfc.run_one_step()\n", + "\n", + "# make plots...\n", + "plot_tidal_flow_hex(grid)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Congratulations on completing the `TidalFlowCalculator` tutorial!\n", + "\n", + "### Click here for more Landlab tutorials" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}