buffer.hcr | R Documentation |
A Harvest Control Rule (HCR) that extends the traditional hockeystick shape by allowing for increasing output when stock status rises above a buffer set around the target.
buffer.hcr(
stk,
ind,
target,
metric = "depletion",
lim = 0.1,
bufflow = 0.3,
buffupp = 0.5,
sloperatio = 0.2,
initac = NULL,
dupp = NULL,
dlow = NULL,
all = TRUE,
...,
args,
tracking
)
lim |
Point at which the HCR response moves from linear to quadratic in terms of reducing HCR multiplier, numeric. |
bufflow |
Lower point of "buffer zone" where HCR response is fixed at 1. |
buffupp |
Upper point of "buffer zone" where HCR response is fixed at 1. |
sloperatio |
fractional difference so the response of the HCR in this case would be as follows: if(muI > Ilim & muI <= buffl) HCRmult <- (0.5*(1+(muI-Ilim)/(buffl-Ilim))) if(muI > buffl & muI < buffh) HCRmult <- 1 if(muI >= buffh) HCRmult <- 1+sloperatiogr(muI-buffh) if(muI <= Ilim) HCRmult <- (muI/Ilim)^2/2 |
Original design by R. Hillary (CSIRO). Implemented by I. Mosqueira (WMR).
Hillary, R. 2020. Management Strategy Evaluation of the Broadbill Swordfish ETBF harvest strategies. Working document.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.