Skip to content
Snippets Groups Projects
M1_noDD_noDemoStoch.Rd 1.58 KiB
Newer Older
thierrychambert's avatar
thierrychambert committed
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/models.R
\name{M1_noDD_noDemoStoch}
\alias{M1_noDD_noDemoStoch}
\title{Demographic model without Density-Dependence and without Demographic Stochasticity
In addition to natural survivals and fecundities, this demographic model includes
a specific harvest / fatality parameter.
NOTE : This is a POST-BREEDING demographic model.}
\usage{
M1_noDD_noDemoStoch(
  N1,
  s,
  f,
  h,
  DD_params,
  use_ref_vr = FALSE,
  s_corr_factor = NULL,
  f_corr_factor = NULL
)
thierrychambert's avatar
thierrychambert committed
}
\arguments{
\item{N1}{a vector of population sizes for each age class at time t1}

\item{s}{a vector of survival probabilities for each age class}

\item{f}{a vector of fecundity values for each age class}

\item{h}{a number. The harvest or fatality rate}

\item{DD_params}{density-dependence parameters. Not used in this model.}

\item{use_ref_vr}{Not used in this model, as there is no demographic stochasticity.}

\item{s_corr_factor}{Not used in this model, as there is no demographic stochasticity.}

\item{f_corr_factor}{Not used in this model, as there is no demographic stochasticity.}
thierrychambert's avatar
thierrychambert committed
}
\value{
a vector of population sizes for each age class at time t2
}
\description{
Demographic model without Density-Dependence and without Demographic Stochasticity
In addition to natural survivals and fecundities, this demographic model includes
a specific harvest / fatality parameter.
NOTE : This is a POST-BREEDING demographic model.
}
\examples{
s <- c(0.5, 0.7, 0.8, 0.95)
f <- c(0, 0, 0.05, 0.55)
N1 <- c(50, 60, 75, 100)
h <- 0.05
M1_noDD_noDemoStoch(N1, s, f, h)

}