getReproductionLevel {mizer} | R Documentation |
Get reproduction level
Description
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))
[Package mizer version 2.5.1 Index]