
Returns the rate at which a predator of species
getEncounter(
params,
n = initialN(params),
n_pp = initialNResource(params),
n_other = initialNOther(params),
t = 0,
...
)
A named two dimensional array (predator species x predator size) with the encounter rates.
A MizerParams object
A matrix of species abundances (species x size).
A vector of the resource abundance by size
A list of abundances for other dynamical components of the ecosystem
The time for which to do the calculation (Not used by standard mizer rate functions but useful for extensions with time-dependent parameters.)
Unused
The encounter rate setSearchVolume()
function. The predation kernel
setPredKernel()
function. The
species interaction matrix setInteraction()
and the resource interaction vector interaction_resource
column in params@species_params
.
By default getEncounter()
calls mizerEncounter()
. However you can
replace this with your own alternative encounter function. If
your function is called "myEncounter"
then you register it in a MizerParams
object params
with
params <- setRateFunction(params, "Encounter", "myEncounter")
Your function will then be called instead of mizerEncounter()
, with the
same arguments.
The encounter rate is multiplied by getFeedingLevel()
. This is used by the project()
function for performing
simulations.
The function returns values also for sizes outside the size-range of the species. These values should not be used, as they are meaningless.
If your model contains additional components that you added with
setComponent()
and for which you specified an encounter_fun
function then
the encounters of these components will be included in the returned value.
Other rate functions:
getEGrowth()
,
getERepro()
,
getEReproAndGrowth()
,
getFMort()
,
getFMortGear()
,
getFeedingLevel()
,
getMort()
,
getPredMort()
,
getPredRate()
,
getRDD()
,
getRDI()
,
getRates()
,
getResourceMort()
encounter <- getEncounter(NS_params)
str(encounter)
Run the code above in your browser using DataLab