dynamics | R Documentation |
This function generates one trajectory for a marine mammal population, starting at a user-specified depletion level InitDepl
.
dynamics(lh.params, InitDepl, ConstantCatch = NA, ConstantF = NA, nyears)
lh.params |
A list containing life history parameters: |
InitDepl |
Starting depletion level |
ConstantCatch |
Total bycatch each year, expressed as a vector of length |
ConstantF |
vector (length = |
nyears |
Number of years to project |
The population model is a single-sex age-structured model in which the number of calves or pups born each year is density dependent, with the extent of density dependence a function of the number of mature adults \tildeN, the fecundity (pregnancy rate) at pre-exploitation equilibrium f_0, the maximum theoretical fecundity rate fmax, the degree of compensation z, and the abundance of individuals aged 1+ N_{y+1}^{1+} relative to carrying capacity K^{1+}. This function can be used alone but is intended to be used with Projections()
to generate multiple simulations. NOTE: Either ConstantCatch
or ConstantF
can be specified, but not both.
A list containing a matrix N
of numbers at age (dimensions nyears
(rows) x nages
(columns)) and one vector TotalPop
(a vector of length nyears
), containing the number of age 1+ individuals in the population.
# Generate a time series of abundance for a bowhead whale dynamics(lh.params = list(S0 = 0.944, S1plus = 0.99, K1plus = 9000, AgeMat = 17,nages = 25, z = 2.39, lambdaMax = 1.04), InitDepl = 0.6, ConstantCatch = NA, ConstantF = rep(0.01, times = 100), nyears = 100)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.