50% off: Unlimited data and AI learning.
The Learning Leader's Guide to AI Literacy

mizer (version 2.5.3)

initialN<-: Initial values for fish spectra

Description

Values used as starting values for simulations with project().

Usage

initialN(params) <- value

initialN(object)

Value

A matrix with dimensions species x size holding the initial number densities for the fish spectra.

Arguments

params

A MizerParams object

value

A matrix with dimensions species x size holding the initial number densities for the fish spectra.

object

An object of class MizerParams or MizerSim

See Also

initialNResource(), initialNOther()

Examples

Run this code
# Doubling abundance of Cod in the initial state of the North Sea model
params <- NS_params
initialN(params)["Cod", ] <- 2 * initialN(params)["Cod", ]
# Calculating the corresponding initial biomass
biomass <- initialN(params)["Cod", ] * dw(NS_params) * w(NS_params)
# Of course this initial state will no longer be a steady state
params <- steady(params)

Run the code above in your browser using DataLab