Learn R Programming

mizer (version 1.0.1)

getRDI: Get density independent recruitment

Description

Calculates the density independent recruitment (total egg production) \(R_{p.i}\) before density dependence, by species. Used by the project method for performing simulations.

Usage

getRDI(object, n, n_pp, e_spawning, ...)

# S4 method for MizerParams,matrix,numeric,matrix getRDI(object, n, n_pp, e_spawning, sex_ratio = 0.5)

# S4 method for MizerParams,matrix,numeric,missing getRDI(object, n, n_pp, sex_ratio = 0.5)

Arguments

object

A MizerParams object.

n

A matrix of species abundance (species x size).

n_pp

A vector of the background abundance by size.

e_spawning

The energy available for spawning (optional). A matrix of size no. species x no. size bins. If not supplied, is calculated internally using the getESpawning method.

...

Other arguments (currently unused).

sex_ratio

Proportion of the population that is female. Default value is 0.5.

Value

A numeric vector the length of the number of species

See Also

project

Examples

Run this code
# NOT RUN {
data(NS_species_params_gears)
data(inter)
params <- MizerParams(NS_species_params_gears, inter)
# Project with constant fishing effort for all gears for 20 time steps
sim <- project(params, t_max = 20, effort = 0.5)
# Get the recruitment at a particular time step
getRDI(params,sim@n[21,,],sim@n_pp[21,])
# }

Run the code above in your browser using DataLab