Learn R Programming

mizer (version 2.5.3)

getReproductionLevel: 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)

Value

A named vector with the reproduction level for each species.

Arguments

params

A MizerParams object

Examples

Run this code
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))

Run the code above in your browser using DataLab