-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetComponent.Rd
55 lines (47 loc) · 1.58 KB
/
setComponent.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/extension.R
\name{setComponent}
\alias{setComponent}
\alias{removeComponent}
\title{Add a dynamical ecosystem component}
\usage{
setComponent(
params,
component,
initial_value,
dynamics_fun,
encounter_fun,
mort_fun,
component_params
)
removeComponent(params, component)
}
\arguments{
\item{params}{A MizerParams object}
\item{component}{Name of the component}
\item{initial_value}{Initial value of the component}
\item{dynamics_fun}{Name of function to calculate value at the next time step}
\item{encounter_fun}{Name of function to calculate contribution to encounter
rate. Optional.}
\item{mort_fun}{Name of function to calculate contribution to the
mortality rate. Optional.}
\item{component_params}{Object holding the parameters needed by the component
functions. This could for example be a named list of parameters. Optional.}
}
\value{
The updated MizerParams object
}
\description{
By default, mizer models any number of size-resolved consumer species
and a single size-resolved resource spectrum. Your model may require
additional components, like for example detritus or carrion or multiple
resources or .... This function allows you to set up such components.
}
\details{
The component can be a number, a vector, an array, a list, or any other
data structure you like.
If you set a component with a new name, the new component will be added
to the existing components. If you set a component with an existing name,
that component will be overwritten. You can remove a component with
\code{removeComponent()}.
}