Articles | Volume 17, issue 3
https://doi.org/10.5194/gmd-17-1175-2024
https://doi.org/10.5194/gmd-17-1175-2024
Model description paper
 | 
13 Feb 2024
Model description paper |  | 13 Feb 2024

The XSO framework (v0.1) and Phydra library (v0.1) for a flexible, reproducible, and integrated plankton community modeling environment in Python

Benjamin Post, Esteban Acevedo-Trejos, Andrew D. Barton, and Agostino Merico
Abstract

Plankton community modeling is a critical tool for understanding the processes that shape marine ecosystems and their impacts on global biogeochemical cycles. These models can be of variable ecological, physiological, and physical complexity. Many published models are either not publicly available or implemented in static and inflexible code, thus hampering adoption, collaboration, and reproducibility of results. Here we present Phydra, an open-source library for plankton community modeling, and Xarray-simlab-ODE (XSO), a modular framework for efficient, flexible, and reproducible model development based on ordinary differential equations. Both tools are written in Python. Phydra provides pre-built models and model components that can be modified and assembled to develop plankton community models of various levels of ecological complexity. The components can be created, adapted, and modified using standard variable types provided by the XSO framework. XSO is embedded in the Python scientific ecosystem and is integrated with tools for data analysis and visualization. To demonstrate the range of applicability and how Phydra and XSO can be used to develop and execute models, we present three applications: (1) a highly simplified nutrient–phytoplankton (NP) model in a chemostat setting, (2) a nutrient–phytoplankton–zooplankton–detritus (NPZD) model in a zero-dimensional pelagic ocean setting, and (3) a size-structured plankton community model that resolves 50 phytoplankton and 50 zooplankton size classes with functional traits determined by allometric relationships. The applications presented here are available as interactive Jupyter notebooks and can be used by the scientific community to build, modify, and run plankton community models based on differential equations for a diverse range of scientific pursuits.

1 Introduction

Scientists have used mathematical models to advance our understanding of marine ecosystems for at least 70 years (Sverdrup1953; Fasham et al.1990; Gentleman2002; Follows et al.2007; Acevedo-Trejos et al.2016). Early models comprising a few differential equations describing phytoplankton populations in a simplified physical setting (Evans and Parslow1985; Fasham et al.1990) have matured into detailed descriptions of multiple trophic levels that are run in complex three-dimensional general circulation models (GCMs) (e.g., Dutkiewicz et al.2020). While plankton community models often lack biological realism (Smith et al.2014) and suffer from poorly constrained model parameters and comparisons to observations (Anderson2005), they have been important in developing our understanding of the mechanisms shaping plankton biogeography (e.g., Follows et al.2007), phenology (e.g., Taylor et al.1993), and biodiversity (e.g., Barton et al.2010; Acevedo-Trejos et al.2015), as well as links between ecosystems and biogeochemical cycles (e.g., Fasham et al.1990; Sarmiento et al.1998; Merico et al.2006; Dutkiewicz et al.2009).

Despite this progress, we argue that the technical implementations of plankton community models are often inflexible, complicated, and inaccessible, which obscures valuable research and presents a high barrier of entry for beginners or students. Existing model code is rarely reused beyond the development teams (Belete et al.2017). Many models use legacy codes that are difficult to modify or integrate, resulting in “good knowledge bound in outdated code” (Argent2004). This creates challenges, particularly when attempting to integrate models across domains, e.g., linking ecological models to sophisticated physical models (Koralewski et al.2019), or when calibrating models (Steenbeek et al.2021).

A collective and dedicated effort in the marine ecosystem modeling community is ongoing to improve on these issues. It has become more common to publish model source code, and there is an ongoing development of open-source frameworks that can make models more approachable, flexible, and reproducible (Janssen et al.2015). On one end, there are large-scale global models, often written in the highly efficient programming language Fortran, that are systematically embedded in frameworks. Examples are the modular biogeochemical modeling suite MARBL (Long et al.2021) and the limnological FABM-PCLake model (Hu et al.2016). In these projects, generally, a large monolithic model code is modularized and partially retrofitted with a user interface, for example by allowing the user to supply a markup language file to initialize the model. Much of the model is still hard-coded in the underlying Fortran scripts such that advanced technical knowledge is necessary for granular control of model structure. Not all students entering the field of plankton community modeling will start working on such large ecosystem models, and Fortran is not among the first programming languages learned by beginners. Instead, students usually start with interpreted programming languages commonly used for data analysis applications, such as Python. These languages are typically designed with the aim of improving code structure and readability and have evolved the capabilities to efficiently support advanced numerical computations (Lin2012), in part by wrapping lower-level languages such as Fortran or C++. This is showcased by Veros, a global circulation model (GCM) translated to Python (Häfner et al.2018). The Python scientific ecosystem and Jupyter notebooks in particular (Kluyver et al.2016) have proven to be a useful tool for collaborative model development workflows (e.g., eWaterCycle platform; Hut et al.2022).

To efficiently test and answer ecological and biogeochemical questions using plankton community models, we need modeling tools that (1) are easy to use, (2) are open-source, (3) allow flexible and granular control of model structure, and (4) are conducive to scientific collaboration via an open and extensible framework. These motivations led us to develop the novel XSO framework and Phydra library in the programming language Python. The XSO framework offers a set of building blocks for developing computational models based on ordinary differential equations. XSO is used as the basis of the plankton community models contained in the Phydra library. The foundational framework facilitates the modification of model structure, dimensionality, and parameterization. The ultimate goal is to provide usability and flexibility in line with popular Python data analysis and visualization tools, such as Pandas, Xarray, and Matplotlib. The XSO framework depends on functionality from these packages and provides direct interoperability for an integrated modeling environment.

In the next sections, we present the XSO framework and structure of the Phydra library, including the steps of an exemplary model development workflow. We show the utility of the tool set in three exemplary model applications: (1) a basic nutrient–phytoplankton (NP) chemostat model, (2) a nutrient–phytoplankton–zooplankton–detritus (NPZD) model in a slab-ocean physical setting adapted from Anderson et al. (2015), and (3) a complex size-resolved plankton community model in a simple box setting adapted from Banas (2011). These models form the basis of the first release of the Phydra library. We then discuss the architecture of the framework, current limitations, and possible future developments.

2 Descriptions of the XSO framework and the Phydra library

2.1 The XSO framework

Xarray-simlab-ODE (XSO) is a Python framework that allows users to construct and customize models based on ordinary differential equations (ODEs) in a modular fashion. It is a non-opinionated framework; i.e., it does not provide a fixed notion of how a model should be implemented. Instead it attempts to remove the redundant boilerplate code, allowing a user to efficiently construct and work with ODE-based models. XSO was developed as the technical foundation of the Phydra library but is not limited to any particular domain and can be used to create ODE-based models of any type. The typical steps of a model development workflow are presented in Fig. 1.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f01

Figure 1Schematic of a typical workflow utilizing XSO and Phydra. XSO provides the framework. Phydra is a library of functional components and pre-built model objects that can be used, extended, and modified. A typical workflow would consist of five steps. (1) Choose a pre-existing model, and potentially remove or add components or create a new model using xso.create(). (2) Create a model setup by supplying the appropriate labels, parameters, and solver to xso.setup(). The model setup is an Xarray dataset. (3) To run the model, call the xsimlab.run() method on the model setup. Output is returned as an Xarray dataset containing all metadata. (4) These datasets can be easily stored or shared. (5) Xarray datasets are fully compatible for being analyzed and visualized with the wealth of tools provided by the Python scientific ecosystem.

Download

The XSO framework is an extension of Xarray-simlab (Bovy and Braun2018; Bovy et al.2021), which itself provides a generic and highly flexible model development framework in Python. It relies on object-oriented Python functionalities, such as compact data classes and decorators (see the online documentation for more details). Xarray-simlab provides a succinct set of functions and attributes to construct Python objects that can interact as processes of a larger model. In addition to this interface, Xarray-simlab provides powerful data handling capabilities, storing model input and output as multidimensional Xarray datasets (Hoyer and Hamman2017) including all relevant metadata (such as units of variables). Model output is thus directly compatible with a wealth of other Python tools for data analysis or visualization and can be readily exported to the NetCDF file standard (amongst others).

Xarray-simlab has found various applications, for example in landscape evolution (Bovy2021) and plant growth modeling (Vaillant et al.2022). The Xarray-simlab framework is generic in that it provides only a step-wise execution of model processes and could be utilized to build almost any kind of computational model. Our package XSO is, technically, a wrapper around Xarray-simlab, adding custom building blocks and back-end code to allow a user to easily define and compute models based on differential equations.

Our objective in developing the XSO framework was to enable users to construct ODE-based models to be readily modified, especially in relation to dimensionality as well as the number of state variables and processes involved. XSO provides an interface for iterative modifications to both more complex and simpler model constructs. The building blocks provided by XSO are as follows.

  • Variable types. These are the most granular elements of the framework, which directly correspond to the basic mathematical components of ODE-based models (e.g., state variables, parameters, forcing, and partial equations). XSO currently provides the following variable types.

    • xso.variable defines a state variable in a component, either locally or via reference in another component.

    • xso.forcing defines an external forcing as a constant or time-varying value via an additional setup function. It can also be a reference to a forcing in another component.

    • xso.parameter defines a constant model parameter.

    • xso.flux defines a partial equation with the variable types within the component and adds the term to the system of differential equations of the underlying model. The flux function decorator provides a group argument that allows passing fluxes as arguments between components.

    • xso.index creates an input variable to define a dimension label (i.e., Xarray index) within the model, stored as metadata in the input and output dataset.

    These can be used to define variables in compact Python classes to construct functional XSO components. All of them can be defined with a variable number of dimensions (i.e., as a vector, array, or matrix).

  • Components. These are the building blocks of a model. Components declare a subset of variables and define a specific set of mathematical functions computed for these variables during model runtime. More specifically, a component refers to a Python class containing variable types that is decorated with the @xso.component function. For example, a component could define a specific nutrient uptake function, e.g., Monod-type phytoplankton growth on a single nutrient. The decorating function registers the variable types within the framework, reducing boilerplate code and creating fully functional model building blocks. Components can be reused within a model.

  • Model object. These are instances of the model class provided by Xarray-simlab. They consist of an ordered, immutable collection of components. An XSO model object is created with a call to the function xso.create() by supplying a dictionary of model components with their respective labels. Model objects contain the components relevant to a model and can be easily stored and shared. They do not contain custom parameterization.

  • Model setup. This object is an Xarray dataset that includes all relevant information needed at runtime, such as the model object, solver algorithm to be used, time steps, and model parameterization. An XSO model setup is created with a call to the function xso.setup() supplying the aforementioned information as arguments. At this step, the variable types initialized in a component must be supplied with a value, as well as a label that can be used to reference them in other components. The model parameterization is passed as a dictionary, referencing the component labels and variable names.

The system of differential equations is constructed from the fluxes using the labels supplied during model setup. The number of values in a defined dimension is flexible, but they have to match across the model in order for the model to run. When executing the model by calling the xsimlab.run() method of the model setup dataset and supplying the appropriate model object, a “filled-out” Xarray dataset is returned containing model setup parameters, metadata, and output.

The XSO framework currently provides two solver algorithms: an adaptive step-size solver from the SciPy package solve_ivp (Virtanen et al.2020) and a simple step-wise solver that is built into the back-end Xarray-simlab framework. The solve_ivp algorithm is implemented to use the default RK45 method, which is an explicit Runge–Kutta method of order 5(4) (Dormand and Prince1980). Apart from the technical limitations of the solver algorithm used, there are no restrictions to the dimensionality and number of variable types used within a component and no limitations to the levels of group variables linking components to define a single ecosystem process. The xso Python package is available via PyPI and GitHub (Post2023b).

2.2 The Phydra library

Phydra is a Python package that provides a library of modular plankton community models built using the XSO framework. Phydra establishes conventions and common usage for building models using XSO.

The plankton community models included in the Phydra package are available to the user at multiple hierarchical levels: as a library of pre-built XSO model components, as pre-assembled model objects, and as exemplary model simulations in interactive Jupyter notebooks. These levels are described below.

  1. Components. The first version of the library will contain all components used to create the three model applications presented in Sect. 3. The components can be combined to zero-dimensional plankton community models of variable complexity. The library follows common usage patterns and conventions. As long as the labeled model dimensions between components match at model setup, all components included in the Phydra library are compatible.

  2. Model objects. The first release of Phydra contains the model objects defined in the three model applications presented in Sect. 3. The model objects can be imported from the library and can be readily set up, modified, and run by a user.

  3. Example notebooks. Model objects only define the collection of components. To run a model, the input parameters still need to be defined and supplied at runtime. The Phydra library comes with three fully documented model applications that are presented in interactive Jupyter notebooks. These notebooks show all steps from creating the model setup object to analyzing model output and provide a template for further exploration and experimentation with the provided plankton community models.

The open-source and extensible nature of Phydra and XSO enables users to customize and develop processes that accurately describe a particular ecosystem. In a collaborative effort aiming to promote efficient, transparent, and reproducible marine ecosystem modeling, Phydra encourages users to contribute their own components and models to the core library. The Phydra library could potentially offer a comprehensive, well-documented, and peer-reviewed code base for the scientific exploration of plankton community models. Phydra is available via GitHub (Post2023a).

3 Model applications

To showcase the utility of the XSO framework and Phydra library, we present three plankton community model applications of varying complexity. For each application, we present the mathematical model, the implementation within the XSO framework, and the model results. To highlight the flexible nature of the model implementations, we also show how one aspect of each model can be modified.

For the first application, we consider a simple chemostat model, whose implementation using the XSO framework is presented in full detail. For the presentation of the more complex models, we show only the component structure and highlight additional technical aspects of the implementation. For all use cases, the complete codes, following the full development workflow from model creation to output visualization, are available publicly as interactive Jupyter notebooks in the “notebooks” folder of the Phydra repository (Post2023a).

3.1 Model application 1: phytoplankton growth in a chemostat

Chemostats are a commonly used experimental setup for studying the growth dynamics of microorganisms under controlled laboratory settings. They are characterized by a constant inflow of the medium containing nutrients and a constant outflow of the culture, both at a fixed rate d (d−1). Under constant conditions, a steady state emerges that is particularly useful for studying growth rates of microorganisms. Although the conditions of chemostat systems do not have a direct equivalent in nature, some oceanic upwelling systems can be approximated with such a simple model (Haefner2005).

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f02

Figure 2Schematic of model application 1: phytoplankton P consuming a single nutrient N in a flow-through chemostat system. The chemostat system is supplied with external medium with nutrient concentration N0. The medium flows into the system, and both N and P flow out of the system at a constant rate, d.

Download

To showcase the flexibility and simplicity of the XSO framework, we consider two cases: (1) a constant nutrient input and (2) a sinusoidal nutrient input (time-varying d).

3.1.1 Description

The chemostat model is presented in Fig. 2. It comprises two state variables, dissolved nutrients (N) and phytoplankton (P). The model expresses quantities in units of µM N (i.e., µmol N m−3). The physical environment is a flow-through system corresponding to a laboratory chemostat setup. Growth medium with nutrient concentration N0 (µM N) flows into the system at a rate d (d−1). The model components (N and P) flow out of the system at that same rate.

Phytoplankton growth μ (d−1) is described by Monod kinetics (Monod1949):

(1) μ = μ max N k N + N ,

where kN (µM N) is the half-saturation nutrient concentration defined as the concentration at which half the maximum growth rate is achieved, N is the ambient nutrient concentration, and μmax (d−1) is the maximum growth rate achievable under ideal growth conditions.

The model equations are

(2)dNdt=d(N0-N)-μmaxNkN+NP,(3)dPdt=μmaxNkN+NP-dP.

3.1.2 Implementation

To meaningfully structure our model within the XSO framework, we separate the model into state variables, forcing, and fluxes. For state variables, we have nutrients (N, Eq. 2) and phytoplankton (P, Eq. 3). The only forcing is the external nutrient concentration (N0, Eq. 2). Three fluxes can be defined: (a) the inflow of the external medium (Eq. 2), (b) P growing on N (Eqs. 1, 2 and 3), and (c) the outflow of both N and P (Eqs. 2 and 3). The model is implemented using these six separate model components, as shown in Fig. 3.

To explore the basic model dynamics, we choose standard parameter values (Table 1). Initial values for N and P are set at 1 and 0.1 µM N, respectively. The model is run for 100 d with a time step of 0.1 d.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f03

Figure 3Schematic representation of the chemostat model using the XSO framework and included in the Phydra library. Model setup with constant forcing (a) and with sinusoidal forcing (b). Structures in solid black are hard-coded into components. Labels of the different components are supplied at model creation. Gray boxes and the resulting links between components (shown as thick colored arrows and dashed lines) are defined at model setup via the supplied labels and parameters. The asterisks in the flux function input arguments reference the variables, forcing, and parameters defined within the same component; these local variables can be used in all functions (e.g., fluxes or forcing setup functions) within that same component.

Download

Table 1List of variables and parameters considered for the NP chemostat model. In addition to values and units, we report the variable names to compare with Fig. 3.

Download Print Version | Download XLSX

In order to run the model with periodic forcing, we simply exchange the forcing component from ConstantForcing to SinusoidalForcing (see Fig. 3). This specific component requires two more input parameters, but otherwise the model creation and setup remain the same. We can update the model object by simply exchanging the SinusoidalForcing component for the N_inflow component via the model.update_processes() method and updating the corresponding parameters via the model_setup.update_vars() functions supplied by the Xarray-simlab framework that XSO extends. Such functionality allows straightforward modification and testing of model structures.

3.1.3 Results

Figure 4 shows the results of two cases considered. Under constant forcing, the model quickly reaches a steady state, as nutrient supply and the resulting phytoplankton growth balance with the loss of nutrients and phytoplankton due to the constant outflow. The periodically variable forcing creates oscillations in P centered around 0.9 µM N. In this highly simplified model, the results show the typical time shift between nutrients and phytoplankton, i.e., the time lag between the point in time when all nutrients in the culture are consumed and the peak in phytoplankton concentration.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f04

Figure 4Model outputs for the two chemostat scenarios: (a) constant forcing and (b) sinusoidal forcing. In both cases, the concentrations of nutrient (N, purple) and phytoplankton (P, green) are shown through time.

Download

By producing expected results with a very simple model setup, this first application represents a basic proof of concept of our framework and library.

3.2 Model application 2: nutrient–phytoplankton–zooplankton–detritus (NPZD) model

The classic nutrient–phytoplankton–zooplankton–detritus (NPZD) model is embedded in a slab-ocean physical setting (e.g., Evans and Parslow1985; Fasham et al.1990). “Slab” refers to a simplified zero-dimensional model of the oceanic upper mixed layer in which depth varies seasonally. This model structure provides an efficient physical setting for more complicated ecosystem descriptions and is used for both research and teaching purposes. This application is adapted from the EMPOWER model, as presented by Anderson et al. (2015). See Fig. 5 for a schematic of the model structure.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f05

Figure 5Schematic of model application 2: the nutrient–phytoplankton–zooplankton–detritus (NPZD) slab model. The model structure is adapted from Anderson et al. (2015). Boxes with black and white labels respectively represent state variables and external forcing. Arrows indicate fluxes between state variables. Filled colored arrows represent exchanges between state variables and forcings, and open arrows represent fluxes that are lost from the model system. The upper layer box contains the ecosystem model, with state variables for nutrient, phytoplankton, zooplankton, and detritus. The oscillating blue line represents the seasonally variable mixed layer depth (MLD) that defines the boundary between the upper layer and the abiotic deep ocean.

In the model, phytoplankton growth is driven by temperature, light, and nutrients. Phytoplankton are consumed by zooplankton, which are in turn subject to a higher-order mortality (such as predation by higher trophic levels). Phytoplankton and zooplankton mortality and grazing by-products fuel a detrital pool that is remineralized in the upper ocean. Changes in the depth of the upper mixed layer have effects on all components. Nutrients are exchanged between the upper ocean and deep ocean across the mixed layer boundary. Fractions of phytoplankton, zooplankton, and detritus are lost due to mixing, with detritus additionally sinking out of the mixed layer at a constant rate.

Many NPZD-type models have been published over the years, with a variety of formulations for the functional responses of the ecosystem components. Anderson et al. (2015) showcase multiple alternative formulations, particularly focusing on the treatment of light in the model. We partially follow their analysis by considering two different light attenuation algorithms in our modular implementation with the XSO framework.

3.2.1 Description

The model expresses quantities in units of µM N, with state variables for dissolved nutrients (N), phytoplankton (P), zooplankton (Z), and detritus (D). The water column is represented by two vertically stacked layers. One is the upper layer, containing the ecosystem, and the other is a biologically inert deep box. All symbols, parameter values, and units are reported in Table 2. For a more detailed presentation of model structure and formulation, we refer the reader to the original publication (Anderson et al.2015).

The model is driven by external forcing describing the depth of the upper mixed layer H (m), the average temperature of the upper mixed layer T (C), photosynthetically active radiation (PAR) at the ocean surface I (W m−2), and nutrient concentration in the deep layer N0 (µM N).

The deeper layer supplies nutrients to the upper layer. Fractions of all state variables are lost into the deeper layer due to mixing. The rate of mixing is described by K (d−1):

(4) K = h + + κ H ,

where κ (m d−1) represents constant diffusive mixing. Variable mixing is a function of the change in mixed layer depth (MLD) over time h=dHdt. The function h+ (m d−1) defines the differential effects of entrainment and detrainment due to the changes in MLD as h+=max(0,h). When the mixed layer shallows, h+ does not modify K based on the assumption that detrainment of mass and the increase in concentration due to the reduced volume of the mixed layer are balanced (Evans and Parslow1985). We note that, for comparability, we follow the EMPOWER model in their treatment of motile entities (Z) as having the same mixing term as non-motile entities (N, P, and D) (Anderson et al.2015). Traditionally, motile entities are treated differently (see, e.g., Fasham et al.1990).

Dissolved nutrients in the mixed layer (N, µM N) are supplied via mixing, the fraction of zooplankton excretion, and remineralization of detritus. Mixing of nutrients is a positive term, adding to N according to the sign of the gradient between N0 and N. The general direction of the nutrient flux is from a variable and nutrient-rich bottom layer to the upper layer. This nutrient flux supports phytoplankton growth, which is the only loss term for N.

(5) d N d t = K ( N 0 - N ) + β ( 1 - ϵ ) ( G P + G D ) + m D D - μ P P

The growth rate of phytoplankton μP is the product of the temperature-dependent maximum growth rate μPmax(T) and the growth dependencies on light (γI) and nutrients (γN) in units of d−1.

(6) μ P = μ P max ( T ) γ I γ N

The temperature of the upper mixed layer T (in C) is supplied from external forcing. Under the assumption of balanced growth, the maximum growth rate of phytoplankton μPmax(T) in d−1 is equivalent to the temperature-dependent maximum photosynthetic rate VPmax(T) in gC(gChl)-1h-1, when converted by multiplying by 24 h and considering a fixed carbon-to-chlorophyll ratio of 75 g C (g Chl)−1 (Sathyendranath et al.2009). The function is parameterized via the maximum photosynthetic rate at 0 C, represented as VPmax(0) (gC(gchl)-1h-1). The temperature dependence is calculated via the Eppley curve (Eppley1972).

(7) V P max ( T ) = V P max ( 0 ) 1.066 T

Nutrient limitation of phytoplankton growth γN is described by Monod kinetics:

(8) γ N = N k N + N ,

where kN (µM N) is the half-saturation constant.

The term γI represents growth dependence on light I(z) available to phytoplankton through the variable depth (z) of the upper mixed layer. I decays exponentially with z (m).

(9) I ( z ) = I 0 e ( - k PAR z )

I0 is the photosynthetically active radiation (PAR), the irradiance reaching the top of the ocean surface (i.e., at z=0), which is supplied from external forcing. The attenuation coefficient kPAR (m−1) is the sum of light attenuation due to water, kw (0.04 m−1), and due to the presence of phytoplankton (self-shading), accounted for by a term proportional to the concentration of phytoplankton kcP (with kc as 0.03 (µM N m)−1).

(10) k PAR = k w + k c P

We use the Smith function to calculate the photosynthetic rate (Anderson1993):

(11) V P = α I ( z ) V P max ( V P max ) 2 + α 2 I ( z ) 2 ,

where VPmax is the maximum photosynthetic rate, α (gC(gChl)-1h-1(Wm-2)-1) is the slope of the PI curve, and I(z) is irradiance as a function of the upper mixed layer depth (z); see Eq. (9).

The light limitation on phytoplankton growth γI is then calculated by integrating VP through the upper mixed layer (i.e., from z=0 to z=H).

In order to test various levels of model complexity, we also consider light attenuation according to a three-layer model of the upper mixed layer (Anderson1993). This alternative formulation calculates multiple kPAR,i, with i=1 for the top 5 m, i=2 for the depth range 5–23 m, and i=3 for depths below 23 m. The changing spectral properties of water are taken into account by polynomial coefficients (b0,i to b5,i):

(12) k PAR , i = b 0 , i + b 1 , i C 1 / 2 + b 2 , i C + b 3 , i C 3 / 2 + b 4 , i C 2 + b 5 , i C 5 / 2 ,

where C represents the chlorophyll concentration (converted as described above from µM N via θchl and the Redfield ratio). The values of the polynomial coefficients are adapted from Anderson et al. (2015) and shown in Table A1 in the Appendix.

Non-grazing mortality of phytoplankton is described by the sum of linear mP (d−1) and quadratic mP2 ((µM N)−1d−1) terms (Yool et al.2011). The former accounts for natural mortality and excretion. The latter describes higher-order loss processes, including, for example, viral infection. All non-grazing phytoplankton loss terms fuel the detritus pool.

(13) d P d t = μ P P - m P P - m P 2 P 2 - G P - K P

Zooplankton graze upon phytoplankton and detritus. The grazing function is a sigmoidal (or Holling type 3) grazing response (Anderson et al.2015):

(14) G P = I Z φ ^ P P ( k Z ) 2 + φ ^ D D + φ ^ P P Z ,

where φ^P=φPP and φ^D=φDD.

This formulation describes the total biomass of phytoplankton that is grazed GP (µM N). Parameter IZ (d−1) is the maximum ingestion rate of the food source, in this case both phytoplankton and detritus. The density-dependent grazing preference parameters φP and φD (both dimensionless) do not represent a discrete fraction of the amount grazed in the diet relative to the environment. Instead, this amount is represented by the ratio of φ^P and φ^D.

Grazing on detritus is defined as

(15) G D = I Z φ ^ D D ( k Z ) 2 + φ ^ D D + φ ^ P P Z .

Zooplankton food ingestion is not directly converted into biomass. The total biomass grazed (GP+GD) is fractionated into zooplankton growth (to Z), excretion of dissolved nutrients (to N), and egestion of fecal matter and particles (to D). Zooplankton growth is a product of total biomass grazed (GP) and the gross growth efficiency (GGE) of zooplankton. The two parameters defining GGE in this model are absorption efficiency β and net production efficiency ϵ (both dimensionless). Adsorption efficiency β describes the fraction of GP that is absorbed in the gut, of which the fraction ϵ is actually assimilated into biomass (to Z: βϵ) and the rest is excreted as dissolved nutrient (to N: β(1−ϵ)). GGE is the product of ϵ and β, for which values between 0.2 and 0.3 have been observed for a wide range of zooplankton (Straile1997). The fraction of GP egested to D (e.g., as fecal pellets) is calculated via 1−β. See Anderson et al. (2015) for a more detailed discussion of this grazing formulation.

Similar to phytoplankton mortality, a linear mortality factor mZ (d−1) represents natural mortality and excretion of zooplankton and fuels the detritus pool. A quadratic factor mZ2 ((µM N)−1 d−1) describes higher-order predation on zooplankton, for example from fish, which is removed from the system.

(16) d Z d t = β ϵ ( G P + G D ) - m Z Z - m Z 2 Z 2 - K Z

The detritus concentration in the upper layer (D) is fueled by mortality of phytoplankton, linear zooplankton mortality, and zooplankton egestion (e.g., fecal pellets). The loss terms are remineralization, grazing, mixing, and additional sinking. Detritus is remineralized into N at a constant rate mD (d−1). Similar to P and Z, a fraction of D is lost due to mixing through the term K. In addition to K, a portion of detritus is lost due to gravitational sinking at a rate vD (m d−1).

(17) d D d t = m P P + m P 2 P 2 + m Z Z + ( 1 - β ) ( G P + G D ) - G D - m D D - K D - v D H D

3.2.2 Implementation

The ecological description of our model system is adapted from the EMPOWER model; however, the technical implementation using the XSO framework is quite different from the procedural R script of Anderson et al. (2015). Instead of using hard-coded flags to choose different ecological formulations, the XSO component structure provides an object-oriented modular interface. The XSO framework defines functions irrespective of the specific time step used for evaluation and logically separates the model formulation from the solving algorithm in the XSO back end. This allows formulating the model without the rather complicated nested for-loop structure evaluating each time step in the original R implementation.

The fluxes and interdependencies between the calculations in this application require a more elaborate component structure. As for the previous model application, we first separate the model into state variables, forcing, and fluxes. State variables include nutrients (N, Eq. 5), phytoplankton (P, Eq. 13), zooplankton (Z, Eq. 16), and detritus (D, Eq. 17). Forcing to the model are the upper mixed layer depth (H), nutrient concentration below the upper mixed layer (N0), temperature in the upper mixed layer (T), and irradiance at surface (I0). The model defines 10 unique fluxes: phytoplankton growth, zooplankton grazing, nutrient upwelling, mixing, sinking, remineralization, and four mortality terms.

In implementing this model within the XSO framework, we aim to find a balance between component refactoring and structural simplicity. Our goal is to allow every ecologically relevant term to be exchangeable, while making full use of the flexible dimensionality features. This resulted in the structure presented in Fig. 6.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f06

Figure 6Schematic representation of how the NPZD slab-ocean model is implemented with the XSO framework and included in the Phydra library. To simplify visualization, we show only the XSO components with their labels and links. Each component contains various variables, forcings, or parameters. Solid arrows indicate the flow of fluxes between state variables. Dashed arrows indicate fluxes passed along as group variables. Dashed lines connecting processes indicate variables and forcings referenced in another component via their label.

Download

Table 2Parameters considered for the NPZD model applied to four ocean stations.

Parameters considered for the NPZD model applied to the four stations. These are optimized parameters, adapted from Anderson et al. (2015), which we employ to recreate their results. For consistency within this paper, we modified the mathematical symbols.

Download Print Version | Download XLSX

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f07

Figure 7Forcing corresponding to the four locations considered for the NPZD model application. Mixed layer depth (H), nitrate below the mixed layer (N0), temperature averaged through the upper mixed layer (T), and irradiance at the surface (I). Forcing data are calculated from the IFREMER MLD climatology and WOA 2018 data. The mixed layer depth (MLD) is extracted from a global MLD climatology (De Boyer Montégut2023) and used to extract the temperature of the mixed layer from WOA 2018 climatology data (Garcia et al.2019). The blue dots indicate data extracted from monthly climatology, and the gray dots are calculated values from these data. Nutrient forcing N0 is a function of depth for locations BIOTRANS and India and is a constant value for Papa and KERFIX. Irradiance is calculated as a function of latitude, following Anderson et al. (2015).

Download

To highlight one aspect of our implementation, each factor affecting phytoplankton growth is defined by an individual component. The “group to argument” feature of the XSO framework allows such a setup to remain highly modular, since the output of each flux with the appropriate label is utilized in the product of growth-limiting terms. Similarly, the component calculating the mixing coefficient K is computed only once and passed along to two other components, one to calculate nutrient upwelling and the other to calculate mixing loss fluxes of phytoplankton, zooplankton, and detritus. A user could readily add more growth-limiting terms via new components or exchange the component calculating K without necessitating any changes to the rest of the model or workflow.

Following Anderson et al. (2015), we compare model performance in four locations representing named ocean stations: BIOTRANS, India, Papa, and KERFIX. We present the parameters in Table 2, which were optimized for the specific locations by Anderson et al. Two of the stations are located in the temperate North Atlantic, BIOTRANS (47 N, 20 W) and India (60 N, 20 W), both of which exhibit a characteristic phytoplankton spring bloom, followed by a phase of low nutrient availability during summer. The other two stations, Papa in the North Pacific (50 N, 145 W) and KERFIX in the Southern Ocean (5040 S, 6825 E), represent high-nutrient, low-chlorophyll (HNLC) environments with a much less pronounced seasonal cycle. The contrasting environments are clearly discernible from the forcing data (see Fig. 7). In each location, the NPZD slab model is forced by the four corresponding environmental factors. The forcing for the mixed layer depth (H) is taken from an updated version of the IFREMER MLD climatology (De Boyer Montégut et al.2004), calculated using a fixed density threshold criterion of 0.03 kg−1 m3 from 10 m depth value (De Boyer Montégut2023). The nutrient concentration below the mixed layer (N0) is calculated from a combination of the MLD climatology and depth-resolved climatology for nitrate in the World Ocean Atlas (WOA) 2018 (Garcia et al.2019). The temperature of the mixed layer (T) was calculated using the MLD climatology and the temperature data from WOA 2018 (Locarnini et al.2019). The monthly climatological data are interpolated to match the number of model time steps. Anderson et al. (2015) used a linear interpolation, and, for comparability, we adopted the same approach. The forcing for irradiance at the surface (I0) is calculated via a light submodel that employs trigonometric and astronomical equations to calculate light at a given location, with latitude and cloud fraction as input parameters (for exact formulation, please see Appendix A; Anderson et al.2015).

To highlight another technical aspect, we use the batch dimension feature of the XSO model setup function to evaluate the model for all four stations in unison. This feature allows us to define a new dimension at model setup and to supply a list of values for parameters of that dimension. In our case, this additional dimension defines the four stations via the specific forcing and the parameters VPmax, α, IZ, and mZ, which are location-specific (see Table 2). At runtime, the model is solved for each set of parameters in the supplied lists and outputs are returned in a single Xarray dataset. The model outputs for each station can be easily retrieved via the supplied batch dimension label. This feature is also very useful for exploring parameter ranges (e.g., for sensitivity analysis).

We additionally show a modification of the model: Anderson et al. (2015) included a detailed discussion of the treatment of light in a slab model. From the formulations presented in the original paper, we consider two implementations. These are the simple Beer's law, which parameterizes light attenuation with a single attenuation coefficient for the whole upper mixed layer (see Eq. 10), and the more elaborate piecewise description, which evaluates light attenuation in three discrete depth intervals within the upper mixed layer, with specific polynomial coefficients for each interval (see Eq. 12). Model results for both formulations are presented in the following section.

3.2.3 Results

Model outputs for the four stations are shown in Fig. 8. Following Anderson et al. (2015), the output of the state variables N and P is compared to climatological data from the locations. For N, the model output is compared to the concentration of nitrate within the upper mixed layer, which is calculated from a combination of WOA 2018 nitrate data (Garcia et al.2019) and IFREMER MLD climatology (De Boyer Montégut et al.2004). Phytoplankton concentration (P) is compared to converted chlorophyll data extracted for the locations from MODIS Aqua climatology retrieved up until August 2022 (NASA Goddard Space Flight Center2018). In order to simplify the presentation, all units are given as concentration of nitrogen (µM N). The chlorophyll concentration data are converted by a constant factor θchl (75 g C (g Chl)−1) and the Redfield ratio of 6.625 mol C (mol N)−1 as assumed C:N of phytoplankton. We use climatology data because we do not presume to be able to replicate particular biomass peaks of certain years with climatological forcing. The climatological data follow the general pattern shown in the chlorophyll data used as verification data in the original paper, which were taken from a specific representative year.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f08

Figure 8Results of the NPZD model (application 2) for locations (a) BIOTRANS, (b) India, (c) Papa, and (d) KERFIX. We show the final year of a 5-year run, allowing for model spin-up. Model output is shown for two model variants in relation to the light attenuation algorithm used, with everything else being kept equal (see parameters in Table 2). The dashed lines show model outputs using the simple Beer's law for light attenuation (calculated over the entire mixed layer). The solid lines are outputs from the model variant that resolves light attenuation over three discrete depth layers. The data for nitrogen in the upper mixed layer (gray dots) are extracted from WOA 2018 using IFREMER MLD climatology. Phytoplankton nitrogen biomass (gray dots) is calculated via θchl and Redfield ratios from MODIS Aqua chlorophyll monthly climatologies for the specific locations. For some months, no satellite data are available for stations Papa, India, and KERFIX.

Download

The climatological data show a marked seasonal cycle visible with a clear spring phytoplankton bloom for stations BIOTRANS and India, as expected, given their location in the temperate North Atlantic. Stations Papa and KERFIX show less pronounced cycles but still some seasonal variation, with generally higher phytoplankton and zooplankton concentrations in summer (in their respective hemisphere). Zooplankton and detritus dynamics clearly follow phytoplankton concentrations, as expected. In general, the model output agrees relatively well with our verification data, with the optimized parameters from Anderson et al. (2015). In accordance with their results, the change in light attenuation treatment has a pronounced effect on nutrient dynamics, as well as some effect on phytoplankton growth. The model results obtained with light attenuated according to the three-layer formulation show better agreement with the data, particularly for station Papa. Nutrient drawdown during growth periods is consistently lower when compared to the simple Beer's law. This is caused by a greater effect of phytoplankton concentration on the resulting kPAR (light attenuation factor).

These results show that our framework can accurately recreate the results of published marine ecosystem modeling studies within a flexible and modular environment, which allows further experimentation and testing of different model structures.

3.3 Model application 3: size-based nutrient–phytoplankton–zooplankton (NPZ) model

Our third model application is a size-structured plankton community model in an idealized physical setting, similar to a chemostat. The presented model is an adaptation of the ASTroCAT model, developed by Neil Banas (Banas2011). ASTroCAT was developed as a tool to investigate complex trophic interactions between phytoplankton and zooplankton in a simplified setting, resolving a diverse plankton community via a size spectrum. Cell or organism size is used in this model as a “master trait”, defining the parameters of specific plankton types via allometric functions, taken from the literature (Litchman and Klausmeier2008). This allows for a functional and quantifiable model to investigate mechanisms affecting and sustaining phytoplankton diversity.

Banas considered model dynamics under variable forcing or with stochastic grazing parameters. Here, we focus on the basic parameter setup under constant forcing. While trophic interactions between phytoplankton and zooplankton size classes are highly resolved, other ecological processes are neglected (e.g., there are no detrital or regeneration pathways).

This model lends itself well to highlighting the flexibility of the XSO framework. A state variable defined within a component can be defined with a dimension label so that it can represent an array of state variables of flexible size, as long as dimension labels match across components in the same model. The size of the state variable array depends on the number of values supplied at model setup. The built-in vectorization allows the model to compute correctly and efficiently, even with large numbers of state variables. We showcase this feature by running the model with 2 to 50 size classes and comparing bulk phytoplankton biomass between runs. The only modification necessary is varying the number of values supplied at model setup.

3.3.1 Description

The model expresses quantities in units of µM N. The physical setting is analogous to a chemostat with constant nutrient inflow counterbalanced by permanent losses. There is no explicit outflow process implemented, but mortality and egestion fluxes are simply lost from the system.

The model describes size-structured communities of phytoplankton and zooplankton, whose sizes are expressed in terms of equivalent spherical diameter (ESD). Following Banas (2011), we run our initial simulations with 40 size classes of equally log-spaced P (1 to 20 µm) and 40 size classes of Z (2.1 to 460 µm). Additionally, we perform an experiment in which the number of size classes within these ranges is varied from 2 to 50. The model can be defined with any number of size classes within meaningful boundaries of allometric relationships. Size classes are denoted by the subscript i for phytoplankton and j for zooplankton.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f09

Figure 9Schematic of the size-resolved NPiZj trophic model. Model structure and parameterization are adapted from Banas (2011). Boxes with black and white labels respectively represent state variables and external forcing. Arrows indicate fluxes between state variables. The blue boundary contains the ecosystem model, with state variables for a nutrient and multiple size classes of phytoplankton and zooplankton. Filled colored arrows represent exchanges between state variables, and open black arrows represent fluxes that are lost from the model system.

Model nutrient N (µM N) is resupplied from an external source, with concentration N0 (µM N) and delivered at a constant rate f (d−1). In addition, a fraction of grazed biomass that is not assimilated by Z (µM N) is returned to the nutrient pool. The only loss term for N is phytoplankton nutrient uptake.

(18) d N d t = f N 0 + ( 1 - ϵ - f eg ) j i G P i j - i ( μ max i γ i N P i )

Each phytoplankton size class Pi (µM N) grows according to Monod kinetics:

(19) γ i N = N k N i + N ,

where γiN is the limitation on phytoplankton growth due to nutrients, kNi (µM N) is the size-dependent half-saturation constant, and N is the ambient nutrient concentration.

Phytoplankton loss due to natural mortality and excretion is described with the factor mP that is scaled by the maximum intrinsic growth rate μmaxi (d−1) so that mPμmaxi yields the specific mortality rate for each size class.

(20) d P i d t = μ max i γ i N P i - m P μ max i P i - j G P i j

The grazing of the zooplankton size class Zj (µM N) on the phytoplankton size class Pi is calculated by

(21) G P i j = I Z j φ i j P i k Z + i ( φ i j P i ) Z j ,

where IZj (d−1) is the size-dependent maximum ingestion rate, kZ (µM N) is the half-saturation constant, and φij (dimensionless) is the relative preference of Zj for Pi.

Prey preference is assumed to vary with phytoplankton size Pi (µm) in a lognormal distribution around an optimal prey size for each grazer sizeoptj (µm):

(22) φ i j = exp - log 10 ( size P i ) - log 10 ( size opt j ) Δ size P ,

where ΔsizeP is the prey size tolerance parameter (log10ESD (µm)) that controls the width of the Gaussian distribution.

Zooplankton growth is calculated as the product between total biomass grazed (GP) and gross growth efficiency (ϵ), for which values between 0.2 and 0.3 have been observed for a wide range of zooplankton (Straile1997). A fraction feg of grazed biomass is assumed to be quickly excreted to N and another fraction (ϵ) that would feed into a detrital pool is permanently lost from the system. Following Banas (2011), the grazing fractions are split equally so that ϵ=feg=1/3.

Zooplankton experience quadratic losses according to the parameter mZ2, scaled by the total sum of Zj. This term describes higher-order mortality and predation on zooplankton and is permanently removed from the system.

(23) d Z j d t = ϵ i G P i j - m Z 2 Z j j Z j

3.3.2 Implementation

Parameters were adapted from Banas (2011); see Table 3 for all parameter values used and allometric relationships.

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f10

Figure 10Schematic representation of how model application 3 is implemented in the XSO framework and included in the Phydra library. For simplicity, only the XSO components with corresponding labels and links are shown. Each component consists of a number of variables, forcing, or parameters. Solid arrows indicate the fluxes between state variables. Dashed arrows indicate fluxes passed along as group variables. Dashed lines connecting processes indicate variables and forcing passed along via their label. Arrows with multiple lines indicate values with dimensions that are passed along.

Download

Table 3Parameters and allometric functions used for the size-based NPZ model.

Parameters adapted from Banas (2011). Original sources: 1 Tang (1995), 2 Eppley et al. (1969), 3 Hansen et al. (1997), 4 Hansen et al. (1994).

Download Print Version | Download XLSX

We separate the model into state variables, forcing, and fluxes. State variables are nutrients (N, Eq. 18), multiple size classes of phytoplankton (Pi, Eq. 20), and multiple size classes of zooplankton (Zj, Eq. 23). The only forcing is the external nutrient input (N0). At least five fluxes (of variable dimensionality based on the number of zooplankton and phytoplankton) can be defined: the inflow of the external medium, Pi growing on N, Zj grazing on Pi, and mortality terms for Pi and Zj. The model is implemented using 10 XSO components (Fig. 10). We simplify the schematic by only showing the components with their respective labels.

The original ASTroCAT model was implemented with an interactive graphical user interface showing animations of model outputs. Our implementation in the XSO framework lacks this but provides some technical updates, with the major differences being the modular component structure and the use of vectorization (instead of for-loops) to define functions computing the fluxes acting on arrays of size classes.

Banas (2011) presented a detailed analysis of model output for variable metrics of ecosystem complexity. We recreated only one part of the original analyses, with a simple comparison of model dynamics for a variable number of phytoplankton and zooplankton size classes. The number of state variables can be varied at model setup by supplying a list of initial values with the desired dimensions. We ran the model for the range of 2 to 50 size classes.

3.3.3 Results

Running the model with 40 size classes of phytoplankton and zooplankton recreates the dynamics originally presented by Banas (2011). See Fig. 11 for the time evolution of N, Pi, and Zj over a 10-year run. The size-resolved food web shows oscillatory changes in biomass with periods from days to years, despite the much faster growth rates in the model. There appear to be trade-offs between size classes, driven by the selective grazing interactions between zooplankton and phytoplankton. This, however, does not lead to chaotic behavior, but instead tends towards a stable state after 5 years of model run. Interestingly, the general dynamics and the stable state are highly clustered into some size classes. As Banas (2011) discussed, this “banding” seems to be a direct result of the prey preferences. A general conclusion one can draw is that selective grazing interactions can be a strong factor in structuring plankton communities.

To investigate the effect of the number of resolved size classes on the model output, we conduct comparative model runs varying the number of phytoplankton and zooplankton between 2 and 50. Figure 12 shows the effect on bulk phytoplankton biomass when running the model with a variable number of size classes. A lower number of size classes (2–10) show highly variable outputs. Bulk dynamics seem to stabilize for numbers of size classes above 10. However, there are still deviations between runs in relation to the average phytoplankton biomass when more than 10 size classes are considered. The increased size resolution seems to reduce the perturbations dependent on initial model conditions, confirming the patterns observed by Baird and Suthers (2010).

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f11

Figure 11Nutrient concentration and plankton biomass under steady nutrient forcing obtained with model runs resolving 40 phytoplankton and zooplankton size classes. Size classes are log-spaced in the range of 1 to 20 µm for phytoplankton and 2.16 to 420 µm for zooplankton. (a) Nutrient concentration over time. (b) Phytoplankton biomass by size class over 10 years of model time evolution. (c) Zooplankton biomass over the same period.

Download

https://gmd.copernicus.org/articles/17/1175/2024/gmd-17-1175-2024-f12

Figure 12Comparative runs of our implementation of the ASTroCAT model with varying numbers of size classes of phytoplankton and zooplankton. (a) Mean biomass of phytoplankton in the last year of a 10-year run for a range of 2 to 50 size classes of phytoplankton and zooplankton. Standard deviation is plotted in red. Gray crosses mark runs not otherwise shown, and colored dots correspond to exemplary runs. (b) Exemplary model runs. The sum of phytoplankton biomass is shown over a 10-year run.

Download

4 Discussion

We argue that codes of plankton community models are often built to be run, but not to be shared, reused, and modified, which is in part an issue related to the programming languages and tools used to create them. This is in contrast to current computational tools for data analysis (for example, as developed by the Python or R programming communities) that focus on modularity, usability, and clear documentation in an open-source, collaborative context.

The XSO framework in its current version allows building models quickly and dynamically from components and provides a user interface to set up and run a model that is stored as a fully documented Xarray dataset. The Phydra library provides a set of components, models, and example applications that showcase the usability of the framework and provide a common library for marine ecosystem modeling applications. The first release of the Phydra library, presented here, contains implementations of two published plankton ecosystem models, the EMPOWER model by Anderson et al. (2015) and the ASTroCAT model by Banas (2011).

4.1 Structuring complex marine ecosystem models in a flexible framework

There has been an increasing move towards developing and using frameworks that systematize or simplify at least one specific aspect of model development (e.g., FABM for model coupling; Bruggeman and Bolding2014). However, their usage is quite scattered in the scientific community (Janssen et al.2015). The design choices of a modeling framework have a profound effect on both the flexibility and usability, with an inherent trade-off between these two aspects. In developing the Phydra library, we went through many iterations, with the logical conclusion being the separation of the framework and library aspects.

Our goal in developing the framework was to allow users to build models without restricting the level of complexity, in particular in relation to the dimensionality, number of state variables, and model processes. This was implemented in the framework by providing variable types, which directly correspond to the basic mathematical components of models based on ordinary differential equations (e.g., state variables, parameters, forcing, and partial equations). Every aspect of the model needs to be defined at the level of variable types. Model components can be flexibly constructed from the provided set of variable types and wrap a logical component of the model as users see fit. State variables, forcing, and parameters need to be initialized in one component but can be referenced across the model. The system of differential equations is constructed from the fluxes contained in the model components via the supplied labels at model setup. These design choices make the effort required to construct models proportional to the desired model complexity, and components can be easily modified to more complex formulations. In order to provide a template for utilizing this flexible framework, we present fully implemented models in the Phydra library. We hope that this will foster experimentation and intercomparison of model performance at different levels of complexity.

In addition to flexible model construction, we wanted to provide an interface for iterative modification and prototyping. An ecosystem model tracks chemical compounds and ecosystem components via state variables. These state variables can define completely different components of a model or represent functional groups. In the third model application, we presented such a case by defining an array of variables for phytoplankton and zooplankton via size-based allometric functions. This flexible dimensionality of model components was designed with the current issues in marine ecosystem modeling in mind. The effects of different levels of complexity in the number and definition of phytoplankton functional types (PFTs), for example, is not routinely tested in marine ecosystem models (Franks2009). Phydra provides a framework that allows for easy testing through flexible modification of such model complexity at model setup.

The choice of programming language has an important effect on the resulting framework. In contrast to available tools that allow building models based on differential equations from a set of customizable building blocks through a graphical interface (e.g., Stella, PowerSim, Ecopath) or other frameworks that utilize a custom scripting language (e.g., via YAML files), the Phydra and XSO front end and back end are fully implemented in a single programming language: Python. This might require a higher initial effort for users unfamiliar with Python, but we argue that the effort is worth it given the wealth of functionality provided by the Python scientific ecosystem and the support of the large community of programmers and developers. The XSO model development workflow is similar to writing standard Python codes, with the added benefit of having at hand a set of modular Python objects and attributes that automatically handle model inputs and outputs and that allow computationally constructing and running models.

Since the XSO framework is fully implemented in Python, functional model components have to follow a basic structure but are otherwise flexible. The functions defining forcings and fluxes within components in XSO are not restrictive in their Python syntax and can make use of external Python packages, as long as the value that is finally supplied at model runtime is compatible with the chosen solver back end. Since XSO itself is a wrapper of Xarray-simlab without hiding its underlying functionality, XSO further expands the possibilities for custom applications and further development of the Xarray-simlab framework. The relative complexity of the back-end framework should not dissuade users less interested in technical customization, as the Phydra library provides fully functional pre-configured components and model objects that provide a blueprint for the development of marine ecosystem models using XSO.

The software presented here was specifically designed to support collaborative model development. Scientists working with computational models do not always build the models themselves. Often, scientists use existing models and focus the work on parameterization and analysis of results obtained with model applications in specific locations. This type of use is specifically supported in our software because we equipped the Phydra library with pre-built model objects and components. A user can start working with models without detailed knowledge of the underlying framework and learn the basic workflow before progressing to building custom models using the XSO framework. Additionally, more advanced users can easily share custom components or model objects via the respective Python objects. This particular feature of design also makes our software suitable for teaching.

4.2 Current limitations of XSO and Phydra

The presented software packages are in the early stages of development and as such have limited functionality. This first version of the XSO framework supports mathematical models based on ordinary differential equations. In the first release, the framework functionality and library contents are focused on zero-dimensional physical settings for marine plankton models. The first version of XSO implements two numerical solvers. These are (1) a simple step-wise solver and (2) an adaptive step-size solver optimized for solving a system of ODEs (solve_ivp from the SciPy package). The simple step-wise solver is the only back end that currently supports multi-model parallelism when executing multiple sets of parameters via the batch dimensionality feature. None of the implemented solvers currently support single model parallelism and are thus not optimized for very large models (i.e., more than 200 state variables). There are also limits to the flexibility of the framework, particularly for reusing components between models, since the dimensionality of a flux or state variable is hard-coded in the component and cannot be altered after creating a model object.

4.3 Current usage and future developments

XSO is available via the package installer for Python (pip). Detailed instructions about installation and resolution of dependencies can be found in the online documentation (Post2023b). Since Python and the dependencies of Phydra are constantly being developed, we provide instructions there on how to install a fully compatible virtual environment with the Conda manager separated from a user's standard Python installation (Post2023a). For interactive coding and prototyping of models using Phydra, we recommend using the Jupyter notebook environment that is available via Conda. For more complex and larger model runs on servers or clusters, Python scripts are preferable.

The Xarray-simlab package that provides the basis for the XSO framework is a relatively young project but has found robust usage in, for example, the Fastscape package (Bovy2021), which is being continuously developed and used. Since XSO provides a flexible wrapper around Xarray-simlab and the XSO solver back end is implemented in an adaptable object-oriented manner, further developments can proceed without necessarily impacting already implemented models.

Since the XSO framework is embedded in the larger Python scientific ecosystem, there are many possibilities to provide advanced functionality on top of the basic model development workflow currently supported. Amongst our foremost development goals are developing the solving back end further to support larger models and possibly multidimensional physical settings. The solver back end could be adapted to use highly optimized solvers, such as the Mobius framework (Norling et al.2021). Another important aspect would be simplifying the process of parameter optimization and sensitivity analysis. We are also working on methods for model introspection, such as graphically representing the model structure and exporting the system of equations.

The Phydra library of components and model objects could be expanded beyond the three applications presented here and would allow easy comparability and reproducibility of specific model applications, as demonstrated here.

5 Conclusions

We presented two new Python packages that provide a flexible tool set for plankton community models based on differential equations. Phydra is a library of pre-built models and their individual building blocks (i.e., components), which can be combined or modified to create custom configurations. The XSO package, which is the technical foundation of Phydra, provides a user interface and modeling framework for building and solving computational models based on differential equations. The XSO framework grants users granular control over state variables, parameters, forcing, and mathematical functions, while allowing each model component to remain interchangeable. Additionally, Phydra utilizes the Xarray dataset format for structuring model input and output, including metadata, allowing for easy storage, sharing, and analysis of data. The Phydra library in the initial release contains three model applications of variable ecosystem complexity, from a simple chemostat model to a size-resolved plankton model. These three applications are contained in the Phydra library via their respective model components and as fully assembled model objects. Additionally, all scripts used to create the presented results are available in fully documented Jupyter notebooks.

The Phydra library can be a reference and learning resource for scientists interested in marine ecosystem modeling, a starting point for scientific exploration, and a valuable tool for teaching. The model development effort is proportional to the desired complexity of the model application, so users can quickly implement simple models. Further developing such a fully integrated environment for marine ecosystem modeling will require a diverse community of users and developers. We believe the programming language Python provides strong enough functionalities and a wide enough user base. Hence, Phydra and XSO can contribute to the ongoing efforts of developing more robust, transparent, and reproducible models, moving away from static and inflexible codes to a model development process that is inherently collaborative.

Appendix A

Table A1Coefficients for use in the three-layer light attenuation model for the NPZD model application.

Originally presented in Anderson (1993).

Download Print Version | Download XLSX

Code and data availability

Xarray-simlab-ODE (XSO) and Phydra are fully open-source and available under a BSD-3 license on GitHub. The XSO framework is available via Post (2023b) with the DOI https://doi.org/10.5281/zenodo.8178616, and the Phydra library is available via Post (2023a) with the DOI https://doi.org/10.5281/zenodo.8178694. The XSO framework development version, as well as stable releases of the code, can be accessed and contributed to via https://github.com/ben1post/xarray-simlab-ode (last access: 23 July 2023). The Phydra library is similarly available at https://github.com/ben1post/phydra (last access: 23 July 2023). The data and code for all model runs and figures shown in this paper are publicly available via Jupyter notebooks in the “notebooks” subfolder of the Phydra repository (https://github.com/ben1post/phydra/tree/master/notebooks, last access: 23 July 2023).

Author contributions

BP conceived of and wrote the Phydra and XSO Python packages. BP, EAT, ADB, and AM conceived of the paper structure and model applications presented. BP, EAT, ADB, and AM wrote the paper.

Competing interests

The contact author has declared that none of the authors has any competing interests.

Disclaimer

Publisher's note: Copernicus Publications remains neutral with regard to jurisdictional claims made in the text, published maps, institutional affiliations, or any other geographical representation in this paper. While Copernicus Publications makes every effort to include appropriate place names, the final responsibility lies with the authors.

Acknowledgements

We want to thank the open-source developers that made this work possible. In particular, we want to thank Benoît Bovy for advice on some aspects of the code structure and for developing Xarray-simlab. Esteban Acevedo-Trejos acknowledges the support of the German Research Foundation (DFG) via grants AC 331/1-1 and 268236062, as part of the priority program “DynaTrait” (SPP 1704) and the collaborative research center “Earth-evolution at the dry limit” (CRC-1211), respectively.

Financial support

The publication of this article was funded by the Open Access Fund of the Leibniz Association.

Review statement

This paper was edited by Andrew Yool and reviewed by two anonymous referees.

References

Acevedo-Trejos, E., Brandt, G., Bruggeman, J., and Merico, A.: Mechanisms shaping size structure and functional diversity of phytoplankton communities in the ocean, Sci. Rep., 5, 8918, https://doi.org/10.1038/srep08918, 2015. a

Acevedo-Trejos, E., Brandt, G., Smith, S. L., and Merico, A.: PhytoSFDM version 1.0.0: Phytoplankton Size and Functional Diversity Model, Geosci. Model Dev., 9, 4071–4085, https://doi.org/10.5194/gmd-9-4071-2016, 2016. a

Anderson, T. R.: A spectrally averaged model of light penetration and photosynthesis, Limnology and Oceanography, 38, 1403–1419, https://doi.org/10.4319/lo.1993.38.7.1403, 1993. a, b, c

Anderson, T. R.: Plankton functional type modelling: Running before we can walk?, J. Plankton Res., 27, 1073–1081, https://doi.org/10.1093/plankt/fbi076, 2005. a

Anderson, T. R., Gentleman, W. C., and Yool, A.: EMPOWER-1.0: an Efficient Model of Planktonic ecOsystems WrittEn in R, Geosci. Model Dev., 8, 2231–2262, https://doi.org/10.5194/gmd-8-2231-2015, 2015. a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s

Argent, R. M.: An overview of model integration for environmental applications – components, frameworks and semantics, Environ. Model. Softw., 19, 219–234, https://doi.org/10.1016/S1364-8152(03)00150-6, 2004. a

Baird, M. E. and Suthers, I. M.: Increasing model structural complexity inhibits the growth of initial condition errors, Ecol. Complex., 7, 478–486, https://doi.org/10.1016/j.ecocom.2009.12.001, 2010. a

Banas, N. S.: Adding complex trophic interactions to a size-spectral plankton model: Emergent diversity patterns and limits on predictability, Ecol. Model., 222, 2663–2675, https://doi.org/10.1016/j.ecolmodel.2011.05.018, 2011. a, b, c, d, e, f, g, h, i, j, k

Barton, A. D., Dutkiewicz, S., Flierl, G., Bragg, J., and Follows, M. J.: Patterns of diversity in marine phytoplankton, Science, 327, 1509–1511, https://doi.org/10.1126/science.1184961, 2010. a

Belete, G. F., Voinov, A., and Laniak, G. F.: An overview of the model integration process: From pre-integration assessment to testing, Environ. Modell. Softw., 87, 49–63, https://doi.org/10.1016/j.envsoft.2016.10.013, 2017. a

Bovy, B.: fastscape-lem/fastscape: Release v0.1.0beta3, Zenodo [code], https://doi.org/10.5281/ZENODO.4435110, 2021. a, b

Bovy, B. and Braun, J.: Xarray-simlab: a Python package to build, customize and run computational models interactively, AGUFM, 2018, NS53A–0548, Bibcode: 2018AGUFMNS53A0548B, 2018. a

Bovy, B., McBain, G. D., Gailleton, B., and Lange, R.: benbovy/xarray-simlab: 0.5.0, Zenodo [code], https://doi.org/10.5281/ZENODO.4469813, 2021. a

Bruggeman, J. and Bolding, K.: A general framework for aquatic biogeochemical models, Environ. Modell. Softw., 61, 249–265, https://doi.org/10.1016/j.envsoft.2014.04.002, 2014. a

De Boyer Montégut, C.: Mixed layer depth climatology computed with a density threshold criterion of 0.03kg/m3 from 10 m depth value, SEANOE [data set], https://doi.org/10.17882/91774, 2023. a, b

De Boyer Montégut, C., Madec, G., Fischer, A. S., Lazar, A., and Iudicone, D.: Mixed layer depth over the global ocean: An examination of profile data and a profile-based climatology, J. Geophys. Res.-Oceans, 109, C12, https://doi.org/10.1029/2004JC002378, 2004. a, b

Dormand, J. R. and Prince, P. J.: A family of embedded Runge-Kutta formulae, J. Comput. Appl. Math., 6, 19–26, https://doi.org/10.1016/0771-050X(80)90013-3, 1980. a

Dutkiewicz, S., Follows, M. J., and Bragg, J. G.: Modeling the coupling of ocean ecology and biogeochemistry, Global Biogeochem. Cy., 23, 1–15, https://doi.org/10.1029/2008GB003405, 2009. a

Dutkiewicz, S., Cermeno, P., Jahn, O., Follows, M. J., Hickman, A. E., Taniguchi, D. A. A., and Ward, B. A.: Dimensions of marine phytoplankton diversity, Biogeosciences, 17, 609–634, https://doi.org/10.5194/bg-17-609-2020, 2020. a

Eppley, R. W.: Temperature and phytoplankton growth in the sea, Fish. Bull., 70, 1063–1085, 1972. a

Eppley, R. W., Rogers, J. N., and McCarthy, J. J.: Half‐Saturation Constants for Uptake of Nitrate and Ammonium By Marine Phytoplankton, Limnol. Oceanogr., 14, 912–920, https://doi.org/10.4319/lo.1969.14.6.0912, 1969. a

Evans, G. T. and Parslow, J. S.: A model of annual plankton cycles, Deep-Sea Res. Pt. II, 32, 759, https://doi.org/10.1016/0198-0254(85)92902-4, 1985. a, b, c

Fasham, M. J. R., Ducklow, H. W., and McKelvie, S. M.: A nitrogen-based model of plankton dynamics in the oceanic mixed layer, J. Mar. Res., 48, 591–639, https://doi.org/10.1357/002224090784984678, 1990. a, b, c, d, e

Follows, M. J., Dutkiewicz, S., Grant, S., and Chisholm, S. W.: Emergent biogeography of microbial communities in a model ocean, Science, 315, 1843–1846, https://doi.org/10.1126/science.1138544, 2007. a, b

Franks, P. J. S.: Planktonic ecosystem models: Perplexing parameterizations and a failure to fail, J. Plankton Res., 31, 1299–1306, https://doi.org/10.1093/plankt/fbp069, 2009. a

Garcia, H. E., Weathers, K. W., Paver, C. R., Smolyar, I., Boyer, T. P., Locarnini, R. A., Zweng, M. M., Mishonov, A. V., Baranova, O. K., and Seidov, D.: WORLD OCEAN ATLAS 2018 Volume 4: Dissolved Inorganic Nutrients (phosphate, nitrate and nitrate+ nitrite, silicate), NOAA Atlas NESDIS [data set], 84, https://www.nodc.noaa.gov/OC5/woa18/pubwoa18.htm (last access: May 2022), 2019. a, b, c

Gentleman, W.: A chronology of plankton dynamics in silico: How computer models have been used to study marine ecosystems, Hydrobiologia, 480, 69–85, https://doi.org/10.1023/A:1021289119442, 2002. a

Haefner, J. W.: Modeling biological systems: Principles and applications, Springer Science & Business Media, ISBN 0387250115, https://doi.org/10.1007/0-387-25012-3{_}1, 2005. a

Häfner, D., Jacobsen, R. L., Eden, C., Kristensen, M. R. B., Jochum, M., Nuterman, R., and Vinter, B.: Veros v0.1 – a fast and versatile ocean simulator in pure Python, Geosci. Model Dev., 11, 3299–3312, https://doi.org/10.5194/gmd-11-3299-2018, 2018. a

Hansen, B., Bjornsen, P. K., and Hansen, P. J.: The size ratio between planktonic predators and their prey, Limnol. Oceanogr., 39, 395–403, https://doi.org/10.4319/lo.1994.39.2.0395, 1994. a

Hansen, P. J., Bjørnsen, P. K., and Hansen, B. W.: Zooplankton grazing and growth: Scaling within the 2-2,000-µm body size range, Limnol. Oceanogr., 42, 687–704, https://doi.org/10.4319/lo.1997.42.4.0687, 1997. a

Hoyer, S. and Hamman, J. J.: xarray: N-D labeled Arrays and Datasets in Python, J. Open Res. Softw., 5, 10, https://doi.org/10.5334/jors.148, 2017. a

Hu, F., Bolding, K., Bruggeman, J., Jeppesen, E., Flindt, M. R., van Gerven, L., Janse, J. H., Janssen, A. B. G., Kuiper, J. J., Mooij, W. M., and Trolle, D.: FABM-PCLake – linking aquatic ecology with hydrodynamics, Geosci. Model Dev., 9, 2271–2278, https://doi.org/10.5194/gmd-9-2271-2016, 2016. a

Hut, R., Drost, N., van de Giesen, N., van Werkhoven, B., Abdollahi, B., Aerts, J., Albers, T., Alidoost, F., Andela, B., Camphuijsen, J., Dzigan, Y., van Haren, R., Hutton, E., Kalverla, P., van Meersbergen, M., van den Oord, G., Pelupessy, I., Smeets, S., Verhoeven, S., de Vos, M., and Weel, B.: The eWaterCycle platform for open and FAIR hydrological collaboration, Geosci. Model Dev., 15, 5371–5390, https://doi.org/10.5194/gmd-15-5371-2022, 2022. a

Janssen, A. B., Arhonditsis, G. B., Beusen, A., Bolding, K., Bruce, L., Bruggeman, J., Couture, R. M., Downing, A. S., Alex Elliott, J., Frassl, M. A., Gal, G., Gerla, D. J., Hipsey, M. R., Hu, F., Ives, S. C., Janse, J. H., Jeppesen, E., Jöhnk, K. D., Kneis, D., Kong, X., Kuiper, J. J., Lehmann, M. K., Lemmen, C., Özkundakci, D., Petzoldt, T., Rinke, K., Robson, B. J., Sachse, R., Schep, S. A., Schmid, M., Scholten, H., Teurlincx, S., Trolle, D., Troost, T. A., Van Dam, A. A., Van Gerven, L. P., Weijerman, M., Wells, S. A., and Mooij, W. M.: Exploring, exploiting and evolving diversity of aquatic ecosystem models: a community perspective, Aqua. Ecol., 49, 513–548, https://doi.org/10.1007/s10452-015-9544-1, 2015. a, b

Kluyver, T., Ragan-Kelley, B., Pérez, F., Granger, B., Bussonnier, M., Frederic, J., Kelley, K., Hamrick, J., Grout, J., Corlay, S., Ivanov, P., Avila, D., Abdalla, S., and Willing, C.: Jupyter Notebooks – a publishing format for reproducible computational workflows, vol. 2016, ISBN 9781614996484, https://doi.org/10.3233/978-1-61499-649-1-87, 2016. a

Koralewski, T. E., Westbrook, J. K., Grant, W. E., and Wang, H.-H.: Coupling general physical environmental process models with specific question-driven ecological simulation models, Ecol. Model., 405, 102–105, https://doi.org/10.1016/j.ecolmodel.2019.02.004, 2019. a

Lin, J. W. B.: Why python is the next wave in earth sciences computing, B. Am. Meteorol. Soc., 93, 1823–1824, https://doi.org/10.1175/BAMS-D-12-00148.1, 2012. a

Litchman, E. and Klausmeier, C. A.: Trait-Based Community Ecology of Phytoplankton, Annu. Rev. Ecol. Evol. Syst., 39, 615–639, https://doi.org/10.1146/annurev.ecolsys.39.110707.173549, 2008. a

Locarnini, M., Mishonov, A., Baranova, O., Boyer, T., Zweng, M., Garcia, H., Seidov, D., Weathers, K., Paver, C., and Smolyar, I.: World Ocean Atlas 2018, Volume 1: Temperature [data set], https://archimer.ifremer.fr/doc/00651/76338/ (last access: May 2022), 2019. a

Long, M. C., Moore, J. K., Lindsay, K., Levy, M., Doney, S. C., Luo, J. Y., Krumhardt, K. M., Letscher, R. T., Grover, M., and Sylvester, Z. T.: Simulations With the Marine Biogeochemistry Library (MARBL), J. Adv. Model. Earth Sy., 13, e2021MS002647, https://doi.org/10.1029/2021MS002647, 2021. a

Merico, A., Tyrrell, T., and Cokacar, T.: Is there any relationship between phytoplankton seasonal dynamics and the carbonate system?, J. Marine Syst., 59, 120–142, https://doi.org/10.1016/j.jmarsys.2005.11.004, 2006. a

Monod, J.: The growth of bacterial cultures, Annu. Rev. Microbiol., 3, 371–394, https://doi.org/10.1146/annurev.mi.03.100149.002103, 1949. a

NASA Goddard Space Flight Center: Moderate-resolution Imaging Spectroradiometer (MODIS) Aqua Chlorophyll Data, NASA Ocean Biology Distributed Active Archive Center [data set], https://doi.org/10.5067/AQUA/MODIS/L3M/CHL/2018, 2018. a

Norling, M. D., Jackson-Blake, L. A., Calidonio, J.-L. G., and Sample, J. E.: Rapid development of fast and flexible environmental models: the Mobius framework v1.0, Geosci. Model Dev., 14, 1885–1897, https://doi.org/10.5194/gmd-14-1885-2021, 2021. a

Post, B.: Phydra, Zenodo [code], https://doi.org/10.5281/ZENODO.8178694, 2023a. a, b, c, d

Post, B.: Xarray-simlab-ODE, Zenodo [code], https://doi.org/10.5281/ZENODO.8178616, 2023b. a, b, c

Sarmiento, J. L., Hughes, T., Stouffer, R. J., and Manabe, S.: Simulated response of the ocean carbon cycle to anthropogenic climate warming, Nature, 393, 245–249, https://doi.org/10.1038/30455, 1998. a

Sathyendranath, S., Stuart, V., Nair, A., Oka, K., Nakane, T., Bouman, H., Forget, M. H., Maass, H., and Platt, T.: Carbon-to-chlorophyll ratio and growth rate of phytoplankton in the sea, Mar. Ecol. Prog. Ser., 383, 73–84, https://doi.org/10.3354/meps07998, 2009.  a

Smith, S. L., Merico, A., Wirtz, K. W., and Pahlow, M.: Leaving misleading legacies behind in plankton ecosystem modelling, J. Plankton Res., 36, 613–620, https://doi.org/10.1093/plankt/fbu011, 2014. a

Steenbeek, J., Buszowski, J., Chagaris, D., Christensen, V., Coll, M., Fulton, E. A., Katsanevakis, S., Lewis, K. A., Mazaris, A. D., Macias, D., de Mutsert, K., Oldford, G., Pennino, M. G., Piroddi, C., Romagnoni, G., Serpetti, N., Shin, Y. J., Spence, M. A., and Stelzenmüller, V.: Making spatial-temporal marine ecosystem modelling better – A perspective, Environ. Model. Softw., 145, 105209, https://doi.org/10.1016/j.envsoft.2021.105209, 2021. a

Straile, D.: Gross growth efficiencies of protozoan and metazoan zooplankton and their dependence on food concentration, predator-prey weight ratio, and taxonomic group, Limnol. Oceanogr., 42, 1375–1385, https://doi.org/10.4319/lo.1997.42.6.1375, 1997. a, b

Sverdrup, H. U.: On conditions for the vernal blooming of phytoplankton, J. Cons. Int. Explor. Mer., 18, 287–295, 1953. a

Tang, E. P. Y.: The allometry of algal growth rates, J. Plankton Res., 17, 1325–1335, https://doi.org/10.1093/plankt/17.6.1325, 1995. a

Taylor, A. H., Harbour, D. S., Harris, R. P., Burkill, P. H., and Edwards, E. S.: Seasonal succession in the pelagic ecosystem of the North Atlantic and the utilization of nitrogen, J. Plankton Res., 15, 875–891, https://doi.org/10.1093/plankt/15.8.875, 1993. a

Vaillant, J., Grechi, I., Normand, F., and Boudon, F.: Towards virtual modelling environments for functional-structural plant models based on Jupyter notebooks: Application to the modelling of mango tree growth and development, In Silico Plants, 4, diab040, https://doi.org/10.1093/insilicoplants/diab040, 2022. a

Virtanen, P., Gommers, R., Oliphant, T. E., Haberland, M., Reddy, T., Cournapeau, D., Burovski, E., Peterson, P., Weckesser, W., and Bright, J.: SciPy 1.0: fundamental algorithms for scientific computing in Python, Nat. Meth., 17, 261–272, https://doi.org/10.1038/s41592-019-0686-2, 2020. a

Yool, A., Popova, E. E., and Anderson, T. R.: Medusa-1.0: a new intermediate complexity plankton ecosystem model for the global domain, Geosci. Model Dev., 4, 381–417, https://doi.org/10.5194/gmd-4-381-2011, 2011. a

Download
Short summary
Creating computational models of how phytoplankton grows in the ocean is a technical challenge. We developed a new tool set (Xarray-simlab-ODE) for building such models using the programming language Python. We demonstrate the tool set in a library of plankton models (Phydra). Our goal was to allow scientists to develop models quickly, while also allowing the model structures to be changed easily. This allows us to test many different structures of our models to find the most appropriate one.