-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathinitial_effort.Rd
57 lines (51 loc) · 1.9 KB
/
initial_effort.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/setFishing.R
\name{initial_effort}
\alias{initial_effort}
\alias{initial_effort<-}
\alias{validEffortVector}
\title{Initial fishing effort}
\usage{
initial_effort(params)
initial_effort(params) <- value
validEffortVector(effort, params)
}
\arguments{
\item{params}{A MizerParams object}
\item{value}{A vector or scalar with the initial fishing effort, see Details
below.}
\item{effort}{A vector or scalar with the initial fishing effort, see Details
below.}
}
\value{
Effort vector
}
\description{
The fishing effort is a named vector, specifying for each fishing gear the
effort invested into fishing with that gear. The effort value for each gear
is multiplied by the catchability and the selectivity to determine the
fishing mortality imposed by that gear, see \code{\link[=setFishing]{setFishing()}} for more details.
The initial effort you have set can be overruled when running a simulation
by providing an \code{effort} argument to \code{\link[=project]{project()}} which allows you to
specify a time-varying effort.
}
\details{
A valid effort vector is a named vector with one effort value for each gear.
However you can also supply the effort value in different ways:
\itemize{
\item a scalar, which is then replicated for each gear
\item an unnamed vector, which is then assumed to be in the same order as the
gears in the params object
\item a named vector in which the gear names have a different order than in the
params object. This is then sorted correctly.
\item a named vector which only supplies values for some of the gears.
The effort for the other gears is then set to zero.
}
These conversions are done by the function \code{validEffortVector()}.
An \code{effort} argument will lead to an error if it is either
\itemize{
\item unnamed and of the wrong length
\item named but where some names do not match any of the gears
\item not numeric
}
}