Description Usage Arguments Value Note See Also
View source: R/ReproductionKernel.R
Integral projection models (Ellner et al., 2016) have the general structure of:
n(z1,t+1) = \integral{ (P(z1,z) + R(z1,z))*n(z,t) dz}
Here we define 'R' as 'ReproductionKernel' to b explicit, where it is the product size-dependent reproduction probability, Spawning
, Size-dependent hatchlings per spawn, Fecundity
, hatchling growth-transition CDF, HatchlingGrowth
, and size-dependent survival, Survival
.
ReproductionKernel(z1,z,bt,pars,date) = sex_ratio * Spawning(z,pars,date) * Fecundity(z,pars,date)*HatchlingGrowth(z1,bt,pars,date)*Survival(z_hatch,pars,date)
1 | ReproductionKernel(z1, z, bt, pars, date)
|
z1 |
Size at the end of the timestep, the size being transitioned to [float] |
z |
Size at the beginning of the timestep [float] |
bt |
Population biomass at the beginning of the timestep [float] |
pars |
Data.frame containing the date-indexed parameters[data.frame] |
date |
Ordinal day to reference proper 'pars' date-indexed parameters [integer] |
Size-dependent reproduction kernel
This function is provided as a standard to pass to SimulateModel
for the 'reproductionComponent' argument
Other Kernel Components:
GrowthSurvivalKernel()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.