-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathinitialN-set.Rd
38 lines (35 loc) · 1.12 KB
/
initialN-set.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/setInitialValues.R
\name{initialN<-}
\alias{initialN<-}
\alias{initialN}
\title{Initial values for fish spectra}
\usage{
initialN(params) <- value
initialN(object)
}
\arguments{
\item{params}{A MizerParams object}
\item{value}{A matrix with dimensions species x size holding the initial
number densities for the fish spectra.}
\item{object}{An object of class MizerParams or MizerSim}
}
\value{
A matrix with dimensions species x size holding the initial number
densities for the fish spectra.
}
\description{
Values used as starting values for simulations with \code{project()}.
}
\examples{
# Doubling abundance of Cod in the initial state of the North Sea model
params <- NS_params
initialN(params)["Cod", ] <- 2 * initialN(params)["Cod", ]
# Calculating the corresponding initial biomass
biomass <- initialN(params)["Cod", ] * dw(NS_params) * w(NS_params)
# Of course this initial state will no longer be a steady state
params <- steady(params)
}
\seealso{
\code{\link[=initialNResource]{initialNResource()}}, \code{\link[=initialNOther]{initialNOther()}}
}