srrFecBH: Stock-recruitment relationship using fecundity (Beverton-Holt...

Description Usage Arguments Value References Examples

View source: R/srrFecBH.R

Description

srrFecBH describes stock-recruitment relationship as the number of recruits resulting from a given number of eggs produced by the population.

Usage

1
srrFecBH(srrFecBH_a, srrFecBH_b, neggs)

Arguments

srrFecBH_a

long-term mean survival parameter

srrFecBH_b

carrying capacity parameter

neggs

number of eggs spawned

Value

Number of recruited individuals

References

Beverton, R. J., Holt, S. J., 1957. On the dynamics of exploited fish populations

Examples

1
2
3
4
5
6
7
8
n <- 100
neggs <- seq(0,1e8,,n)
srrFecBH_a = 0.2
srrFecBH_b = 1e7/srrFecBH_a
Nrecr <- srrFecBH(srrFecBH_a, srrFecBH_b, neggs)
plot(neggs, Nrecr, t="l", ylim=c(0, srrFecBH_b*srrFecBH_a))
abline(0, srrFecBH_a, col=8, lty=2)
abline(h=srrFecBH_b*srrFecBH_a, lty=2, col=8)

marchtaylor/fishdynr documentation built on May 21, 2019, 11:27 a.m.