-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathgetYield.Rd
68 lines (65 loc) · 2.59 KB
/
getYield.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
58
59
60
61
62
63
64
65
66
67
68
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/summary_methods.R
\name{getYield}
\alias{getYield}
\title{Calculate the rate at which biomass of each species is fished}
\usage{
getYield(object)
}
\arguments{
\item{object}{An object of class \code{MizerParams} or \code{MizerSim}.}
}
\value{
If called with a MizerParams object, a vector with the yield rate in
grams per year for each species in the model. If called with a MizerSim
object, an array (time x species) containing the yield rate at each time
step for all species.
}
\description{
This yield rate is given in grams per year. It is calculated at each time
step saved in the MizerSim object.
}
\details{
The yield rate \eqn{y_i(t)} for species \eqn{i} at time \eqn{t} is defined as
\deqn{y_i(t)=\int\mu_{f.i}(w, t)N_i(w, t)w dw}
where \eqn{\mu_{f.i}(w, t)} is the fishing mortality of an individual of
species \eqn{i} and weight \eqn{w} at time \eqn{t} and \eqn{N_i(w, t)} is the
abundance density of such individuals. The factor of \eqn{w} converts the
abundance density into a biomass density and the integral aggregates the
contribution from all sizes.
The total catch in a time period from \eqn{t_1} to \eqn{t_2} is the integral
of the yield rate over that period:
\deqn{C = \int_{t_1}^{t2}y_i(t)dt}
In practice, as the yield rate is only available
at the saved times, one can only approximate this integral by averaging over
the available yield rates during the time period and multiplying by the time
period. The less the yield changes between the saved values, the more
accurate this approximation is. So the approximation can be improved by
saving simulation results at smaller intervals, using the \code{t_save} argument
to \code{\link[=project]{project()}}. But this is only a concern if abundances change quickly
during the time period of interest.
}
\examples{
yield <- getYield(NS_sim)
yield[c("1972", "2010"), c("Herring", "Cod")]
# Running simulation for another year, saving intermediate time steps
params <- setInitialValues(getParams(NS_sim), NS_sim)
sim <- project(params, t_save = 0.1, t_max = 1,
t_start = 2010, progress_bar = FALSE)
# The yield rate for Herring decreases during the year
getYield(sim)[, "Herring"]
# We get the total catch in the year by averaging over the year
sum(getYield(sim)[1:10, "Herring"] / 10)
}
\seealso{
\code{\link[=getYieldGear]{getYieldGear()}}
Other summary functions:
\code{\link{getBiomass}()},
\code{\link{getDiet}()},
\code{\link{getGrowthCurves}()},
\code{\link{getN}()},
\code{\link{getSSB}()},
\code{\link{getYieldGear}()}
}
\concept{summary functions}
\concept{summary_function}