Learn R Programming

DLMtool (version 5.2)

BK: Beddington and Kirkwood life-history MP

Description

Family of management procedures that sets the TAC by approximation of Fmax based on the length at first capture relative to asymptotic length and the von Bertalanffy growth parameter K.

Usage

BK(x, Data, reps = 100, plot = FALSE)

BK_CC(x, Data, reps = 100, plot = FALSE, Fmin = 0.005)

BK_ML(x, Data, reps = 100, plot = FALSE)

Arguments

x

A position in a data-limited methods data object

Data

A data-limited methods data object

reps

The number of stochastic samples of the MP recommendation(s)

plot

Logical. Show the plot?

Fmin

The minimum fishing mortality rate that is derived from the catch-curve (interval censor).

Value

An object of class Rec with the TAC slot populated with a numeric vector of length reps

Functions

  • BK: Assumes that abundance is known, i.e. Data@Abun and Data@CV_abun contain values

  • BK_CC: Abundance is estimated using an age-based catch curve to estimate Z and F, and abundance estimated from recent catches and F.

  • BK_ML: Abundance is estimated using mean length to estimate Z and F, and abundance estimated from recent catches and F.

Required Data

See '>Data for information on the Data object

BK: Abun, LFC, vbK, vbLinf

BK_CC: CAA, Cat, LFC, vbK, vbLinf

BK_ML: CAL, CAL_bins, Cat, LFC, LFS, Mort, vbK, vbLinf

Rendered Equations

See Online Documentation for correctly rendered equations

Details

The TAC is calculated as: $$\textrm{TAC} = A F_{\textrm{max}}$$ where \(A\) is (vulnerable) stock abundance, and \(F_{\textrm{max}}\) is calculated as: $$F_{\textrm{max}} = \frac{0.6K}{0.67-L_c/L_\infty}$$ where \(K\) is the von Bertalanffy growth coefficient, \(L_c\) is the length at first capture, and \(L_\infty\) is the von Bertalanffy asymptotic length

Abundance (A) is either assumed known (BK) or estimated (BK_CC and BK_ML): $$A = \frac{\bar{C}}{\left(1-e^{-F}\right)}$$ where \(\bar{C}\) is the mean catch, and F is estimated. See Functions section below for the estimation of F.

References

Beddington, J.R., Kirkwood, G.P., 2005. The estimation of potential yield and stock status using life history parameters. Philos. Trans. R. Soc. Lond. B Biol. Sci. 360, 163-170.

Examples

Run this code
# NOT RUN {
BK(1, DLMtool::SimulatedData, reps=1000, plot=TRUE)
# }
# NOT RUN {
# }
# NOT RUN {
BK_CC(1, DLMtool::SimulatedData, reps=1000, plot=TRUE)
# }
# NOT RUN {
# }
# NOT RUN {
BK_ML(1, DLMtool::SimulatedData, reps=100, plot=TRUE)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab