infect_fun {IxPopDyMod} | R Documentation |
Probability that a feeding tick becomes engorged infected or uninfected
Description
Probability that a feeding tick becomes engorged infected or uninfected
Usage
infect_fun(x, from_infected, to_infected, host_rc, pref)
Arguments
x |
Predictor 1 in transitions table. Numeric vector indicating host density for each of the host species. Length should be equal to the number of host species. |
from_infected |
Parameter |
to_infected |
Parameter |
host_rc |
Parameters named |
pref |
Parameters named |
Details
Since density dependent mortality is subtracted later, in this function we assume that all feeding ticks feed successfully and become engorged.
Value
Numeric vector of length 1
Examples
infect_fun(10, 0, 0, .3, 1)
infect_fun(10, 0, 1, .3, 1)
infect_fun(10, 1, 1, .3, 1)