Chapter 14 Selective Tidal Stream Transport

⬇ Download this chapter

14.1 Overview

Selective Tidal Stream Transport (STST) is a behavioral strategy that enables agents to conserve energy by alternating between active swimming and passive drift under strong hydrodynamic forcing. Within this submodel, STST is triggered when the along-channel velocity of a patch exceeds an agent’s effective swimming speed and that speed falls below a species-specific minimum threshold. When engaged, agents align with the tidal current and are passively transported upstream or downstream depending on flow direction, reducing the metabolic cost of movement by substituting active swimming with drift.

This behavior is well documented in anadromous and estuarine fishes, where individuals exploit tidal currents to facilitate migration while minimizing energy expenditure (Forward and Tankersley 2001; Gibson et al. 2001b). Movement during STST is governed by local flow velocity, allowing migration pathways, displacement, and energy savings to emerge dynamically from the interaction between individual swimming capacity and the tidal flow field. STST persists for a limited duration or until swimming ability improves, after which agents resume directional migration.

14.2 Purpose

To simulate a passive energy-conserving behavior in migratory fish that allows them to use tidal currents to move when swimming capacity is insufficient to overcome flow velocities.

14.3 Entities, State Variables, and Scales

14.3.1 Spatial and Temporal Scales

Spatial Unit: Patch (3 m x 3 m resolution)
Temporal Unit: 5 minute time steps (tick)

14.3.2 Global Variables

Variable Name Definition
max-seaward-velocity Highest magnitude seaward-directed hydrodynamic velocity across the spatial domain.
max-landward-velocity Highest magnitude landward-directed hydrodynamic velocity across the spatial domain.

14.3.3 Patch Variables

Variable Name Definition
Velocity \(V_{patch}\) The along-channel velocity of a given patch, derived from hydrodynamic model inputs, where positive values are in the landward direction and negative values are in the seaward direction.
tidal-transport-in-patch Count of agents exhibiting tidal stream transport within a patch (for habitat quality analysis).

14.3.4 Agent Variables

Variable Name Definition
energy \(E_{agent}\) Total energy available to the agent.
swimming energy \(E_{swim}\) Energy expenditure from movement per time step.
base swim energy \(swim_{base}\) Baseline energy cost of movement.
swimming difficulty \(D_f\) Velocity-based proxy representing hydrodynamic resistance.
in-STST? \(STST_{?}\) Boolean value indicating if the agent is actively in STST.
swimming speed \(V_{agent}\) The effective swimming speed of the agent.
minimum threshold speed \(Speed_{min}\) The minimum speed at which an agent will move.

14.4 Process Overview and Scheduling

  1. Compare swimming speed (\(A_{speed}\)) with flow speed (\(V_{patch}\)).

  2. If \(|V_{patch}| > A_{speed}\) and \(A_{speed} \leq Speed_{min}\), enter STST.

  3. In STST: align with current, update position via drift, apply reduced energy cost.

  4. If \(A_{speed} > Speed_{min}\), exit STST and resume active swimming.

14.5 Design Concepts

Basic Principles: Selective tidal stream transport (STST) is a documented behavioral strategy in anadromous fishes that exploits tidal currents to conserve energy during migration (e.g., Forward and Tankersley (2001); Gibson et al. (2001b))

Emergence: Passive drift behavior and resulting migration paths emerge from agent-flow interactions and individual swimming limitations.

Adaptation: Agents adapt their mode of movement based on their swimming ability relative to environmental flow, dynamically choosing energy-efficient strategies.

Objectives: Agents seek to minimizing energy loss in strong flows.

Sensing: Agents sense their own \(A_{speed}\) and the \(V_{patch}\) to determine whether passive drift is needed.

Observation: Records STST patch events , energy expenditure (\(E_{agent}\)), and displacement are logged to analyze behavior across flow regimes.

14.6 Initialization

Variable Initialized Value Justification
\(V_{agent}\) Based on size, energy, and difficulty factor Reflects agent’s swimming capability based on metabolic limits.
\(swim_{min}\) Species-specific parameter Represents the minimum sustained swimming velocity of the agent.
\(swim_{max}\) Species-specific parameter Represents the maximum sustained swimming velocity of the agent.
\(E_{agent}\) 100 Assumes full energy at the start of simulation or at spawning.
\(swim_{base}\) \(0.02 \cdot \frac{M_{agent}}{M_{max}}^{k}\) Scales locomotion cost nonlinearly with size; can be calibrated.

14.7 Submodels

14.7.1 Trigger Conditions for STST

Agents compare their swimming ability to the flow conditions. If local flow exceeds their capability and their effort is below a defined threshold, they enter STST:

\[ |V_{patch}| > A_{speed} \quad \text{and} \quad A_{speed} \leq Speed_{min} \hspace{2cm} \text{(14.1)} \]

Where:

  • \(V_{patch}\) is the depth-Averaged along-channel water velocity at the patch (m s⁻¹).
  • \(A_{speed}\) is the actual swimming speed used for movement (m s⁻¹).
  • \(Speed_{min}\) is the minimum sustainable swimming speed (m s⁻¹).

While in STST:

Heading aligns with the current (drift vector) & swimming speed is set to:

\[ A_{speed} = |V_{patch}| \hspace{2cm} \text{(14.2)} \]

Where:

  • \(V_{patch}\) is the depth-Averaged along-channel water velocity at the patch (m s⁻¹).
  • \(A_{speed}\) is the actual swimming speed used for movement (m s⁻¹).

Energy is set as:

\[ E_{swim} = swim_{base} \hspace{2cm} \text{(14.3)} \]

Where:

  • \(E_{swim}\) is the energy cost of swimming for the tick (energy units).
  • \(swim_{base}\) is the baseline energetic cost of swimming (energy units).

14.7.2 Behavior During STST

While in STST, agents align with the current (either landward or seaward) and are passively transported:

\[ \vec{Y}_{t+1} = \vec{Y}_t + |V_{patch}| \cdot \hat{u} \hspace{2cm} \text{(14.4)} \]

Where:

  • \(\vec{Y}_t\) is the Agent spatial position vector.
  • \(V_{patch}\) is the depth-Averaged along-channel water velocity at the patch (m s⁻¹).
  • \(\hat{u}_{patch}\) is the unit direction vector of patch flow, defined as \(\hat{u}_{patch} = V_{patch} / |V_{patch}|\) when \(|V_{patch}| > 0\).

Swimming speed is overwritten:

\[ A_{speed} = |V_{patch}| \hspace{2cm} \text{(14.5)} \]

Where:

  • \(A_{speed}\) is the actual swimming speed used for movement (m s⁻¹).
  • \(V_{patch}\) is the depth-Averaged along-channel water velocity at the patch (m s⁻¹).

Energy cost is minimized:

\[ E_{swim} = swim_{base} \hspace{2cm} \text{(14.6)} \]

Where:

  • \(E_{swim}\) is the energy cost of swimming for the tick (energy units).
  • \(swim_{base}\) is the baseline energetic cost of swimming (energy units).

14.7.3 Stop Conditions for STST

Agents exit STST when they regain sufficient swimming capacity to exceed threshold:

\[ A_{speed} > speed_{min} \hspace{2cm} \text{(14.7)} \]

Where:

  • \(A_{speed}\) is the actual swimming speed used for movement (m s⁻¹).
  • \(speed_{min}\) is the minimum sustainable swimming speed (m s⁻¹).

This triggers a return to active migratory movement and deactivates \(STST_{?}\).

14.8 Netlogo Implementation

References

Forward, Richard B., and Richard A. Tankersley. 2001. “Selective Tidal-Stream Transport of Marine Animals.” Oceanography and Marine Biology: An Annual Review 39: 305–53.
Gibson, R. N., M. Barnes, and R. J. A. Atkinson. 2001b. “Selective Tidal-Stream Transport of Marine Animals.” Oceanography and Marine Biology: An Annual Review 39: 305–53.