Chapter 10 Lipid Catabolism

⬇ Download this chapter

10.1 Overview

Lipid catabolism provides a secondary energy pathway that fish use when immediate food resources are unavailable or when energy falls below a functional threshold. In this submodel, agents metabolize stored lipid reserves to restore energy, maintain migration, and avoid starvation, with lipid use influenced by body condition, metabolic efficiency, and the magnitude of energetic deficit. This process represents endogenous energy mobilization when metabolic demand exceeds energy intake, as energetic deficits generated by movement, digestion, and osmoregulation trigger the use of stored lipids to maintain function, consistent with established physiological responses in fishes during fasting, migration, and overwintering (Simpkins et al. 2003). In anadromous species, lipid reserves play a critical role in sustaining upstream migration and reproductive effort when feeding is reduced or suspended (Bordeleau et al. 2019).

Lipid depletion reduces body weight over time, creating a biologically meaningful cost to sustained reliance on internal reserves and linking energy balance to physiological state. Contaminant uptake does not occur during lipid catabolism, reflecting the absence of feeding. This formulation allows energy limitation and recovery to emerge dynamically from the interaction between metabolic demand and resource availability.

10.2 Purpose

The purpose of this submodel is to simulate endogenous energy mobilization through lipid reserves when fish cannot meet energetic needs through feeding. Lipid catabolism allows migratory fish to continue movement and survive temporary periods of low food availability. This mechanism reflects empirical observations of lipid use during spawning migrations, overwintering, and other energetically demanding life history periods.

This submodel is best used in tandpm with an energy recovery stratedge like filter feelding and digestion, or pref=dation and digesiton

10.3 Entities, State Variables, and Scales

10.3.1 Spatial and Temporal Scales

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

10.3.2 Global Variables

Global Variable Definition
full-energy-level Target energy level used to compute energetic deficit during lipid use (default = 100).
energy-per-lipid Energy returned per unit lipid mass mobilized (default = 40), used to convert lipid into energy.
lipid-refill-fraction Fraction of body mass available to mobilize as lipid during fasting (default = 0.5).
lipid-max-fraction (optional) Upper bound on lipid fraction that can be lost before mortality or physiological collapse (not currently enforced but biologically relevant).
debug-lipid? (optional) Toggles printing of intermediate lipid catabolism calculations for debugging.

10.3.3 Patch Variables

Lipid catabolism does not directly depend on patch level variables, since no external resources are consumed.

10.3.4 Agent Variables

Variable Name Definition
energy Current energy level of the agent
weight Current body mass of the fish
original-weight Initial body mass used to scale maximum lipid availability
lipid-catabolism-efficiency Efficiency with which lipids are converted into usable energy. This value is equal to the current metabolic rate divided by the metabolic rate at optimal temperature, allowing lipid use to scale with physiological performance
lipid-used Amount of lipid converted to energy during the current step
metabolism-rate Current metabolic rate, which influences efficiency scaling
baseline-metabolism-rate Metabolic rate at optimal temperature
mehg-foraging Methylmercury acquired during feeding (set to zero when lipids are used)
hg-foraging Inorganic mercury acquired during feeding (set to zero when lipids are used)
mehg-foraging-total Total methylmercury obtained from foraging
hg-foraging-total Total inorganic mercury obtained from foraging
mehg-total Total methylmercury accumulated
hg-total Total inorganic mercury accumulated

10.4 Process Overview and Scheduling

  1. Compute energy deficit relative to a target energy level of one hundred (%, relative density).

  2. Determine the lipid amount needed to fill the deficit (g tick⁻¹).

  3. Limit lipid use by the maximum lipid available for mobilization (g tick⁻¹).

  4. Apply lipid catabolism efficiency to determine usable lipid energy (%).

  5. Convert mobilized lipid (g) to energy (energy units).

  6. Reduce weight (g) by the amount of lipid burned (g).

10.5 Design Concepts

Basic Principles: Lipid catabolism represents endogenous energy mobilization when external food intake is insufficient. Fish draw upon stored lipids under energetic deficit, a well documented physiological response during migration, overwintering, and fasting (Simpkins et al. 2003). In anadromous species, these lipid reserves fuel upstream migration and reproductive effort when feeding is reduced or suspended [Bordeleau et al. (2019);].

Emergence: Patterns of weight loss, energy cycling, and recovery emerge from repeated lipid use during periods of limited food access.

Adaptation: Agents adaptively mobilize lipids based on the severity of their energy deficit and on efficiency scaling from the metabolism submodel.

Objectives: Agents seek to maintain enough energy to migrate, forage, avoid predation, and prevent starvation.

Sensing: Agents sense their own internal energy level and lipid reserve availability.

Interaction: Lipid catabolism does not require environmental interaction and therefore represents a purely endogenous process.

Stochasticity: This submodel is deterministic. However, variation in weight, metabolism, and previous feeding creates emergent differences among individuals.

Observation: Outputs include energy restored through lipid catabolism, lipid used, and body mass loss over time.

10.6 Initialization

Variable Initialized Value Justification
weight species specific Establishes initial body condition
original-weight equal to initial weight Defines total lipid availability
energy 100 Full energy at initialization
lipid-catabolism-efficiency from metabolism submodel Reflects physiological scaling of lipid use
lipid-used 0 No lipid used at start

10.7 Submodels

10.7.1 Lipid Mobilization

Maximum lipid available for mobilization depends on relative body mass:

\[ Lipid_{refill} = 0.5 \times \left(\frac{A_{mass}}{A_{mass_{i}}}\right) \hspace{2cm} \text{(10.1)} \]

Where:

  • \(Lipid_{refill}\) is the Maximum lipid available for mobilization this tick (g).
  • \(A_{mass}\) is the agent’s body mass used for allometric and energetic scaling (g).

Energy deficit relative to full energy:

\[ E_{deficit} = 100 - E_{agent} \hspace{2cm} \text{(10.2)} \]

Where:

  • \(E_{deficit}\) is the energy shortfall relative to full energy (energy units).
  • \(E_{agent}\) is the total internal energy available to the agent (energy units).

Lipid required to refill the deficit:

\[ Lipid_{needed} = \frac{Energy_{deficit}}{100} \hspace{2cm} \text{(10.3)} \]

Where:

  • \(Lipid_{needed}\) is the lipid required to fill the energy deficit (g).
  • \(E_{deficit}\) is the energy shortfall relative to full energy (%, relative energy).

Actual lipid mobilized:

\[ Lipid_{used} = \min(Lipid_{needed},\ Lipid_{refill}) \times Lipid_{Eff} \hspace{2cm} \text{(10.4)} \]

Where:

  • \(Lipid_{used}\) is the lipid mobilized during the current tick (g).
  • \(Lipid_{needed}\) is the lipid required to fill the energy deficit (g).
  • \(Lipid_{refill}\) is the Maximum lipid available for mobilization this tick (g).
  • \(Lipid_{Eff}\) is the efficiency multiplier applied to lipid catabolism (%).

10.7.2 Energy Conversion

Mobilized lipid is converted into energy:

\[ E_{added} = Lipid_{used} \times 100 \hspace{2cm} \text{(10.5)} \]

Where:

  • \(E_{added}\) is the energy added from lipid mobilization (energy units).
  • \(Lipid_{used}\) is the lipid mobilized during the current tick (g).

Energy is capped at one hundred:

\[ E_{agent} = \min(100,\ E_{agent} + E_{added}) \hspace{2cm} \text{(10.6)} \]

Where:

  • \(E_{agent}\) is the total internal energy available to the agent (energy units).
  • \(E_{added}\) is the energy added from lipid mobilization (energy units).

10.7.3 Weight Loss

Weight decreases proportionally to lipid used:

\[ A_{mass} = A_{mass} - Lipid_{used} \hspace{2cm} \text{(10.7)} \] Where:

  • \(A_{mass}\) is an agent’s body mass used for allometric and energetic scaling (g).
  • \(Lipid_{used}\) is the lipid mobilized during the current tick (g).

10.7.4 Contaminant Bookkeeping

No mercury or methylmercury is acquired during lipid catabolism:

\[ MeHg_{digested} = 0 \]

\[ Hg_{digested} = 0 \]

These values are added to cumulative totals to maintain bookkeeping consistency, but do not increase contaminant burden.

10.8 Netlogo Implementation

References

Bordeleau, X, B G Hatcher, S Denny, F G Whoriskey, D A Patterson, and G T Crossin. 2019. “Nutritional Correlates of the Overwintering and Seaward Migratory Decisions and Long-Term Survival of Post-Spawning Atlantic Salmon.” Conservation Physiology 7 (1): coz107. https://doi.org/10.1093/conphys/coz107.
Simpkins, Darin G., Wayne A. Hubert, Carlos Martinez Del Rio, and Daniel C. Rule. 2003. “Physiological Responses of Juvenile Rainbow Trout to Fasting and Swimming Activity: Effects on Body Composition and Condition Indices.” Transactions of the American Fisheries Society 132 (3): 576–89. https://doi.org/10.1577/1548-8659(2003)132<0576:PROJRT>2.0.CO;2.