getReproductionLevel: Get reproduction level

View source: R/setBevertonHolt.R

getReproductionLevelR Documentation

Get reproduction level

Description

[Experimental] The reproduction level is the ratio between the density-dependent reproduction rate and the maximal reproduction rate.

Usage

getReproductionLevel(params)

Arguments

params

A MizerParams object

Value

A named vector with the reproduction level for each species.

Examples

getReproductionLevel(NS_params)

# The reproduction level can be changed without changing the steady state:
params <- setBevertonHolt(NS_params, reproduction_level = 0.9)
getReproductionLevel(params)

# The result is the ratio of RDD and R_max
identical(getRDD(params) / species_params(params)$R_max,
          getReproductionLevel(params))

mizer documentation built on April 26, 2023, 5:12 p.m.