SIRAdditiveNoise {EpiDynamics} | R Documentation |
SIR model with constant additive noise (P 6.1).
Description
Solves a SIR model with constant additive noise added to the transmission rate.
Usage
SIRAdditiveNoise(pars = NULL, init = NULL, time = NULL, step = 1, ...)
Arguments
pars |
|
init |
|
time |
time sequence for which output is wanted; the first value of times must be the initial time. |
step |
step size to set the integration step and to scale the noise term. |
... |
further arguments passed to ode function. |
Details
This is the R version of program 6.1 from page 194 of "Modeling Infectious Disease in humans and animals" by Keeling & Rohani.
Value
list
. The first element, *$model
, is the model function. The second, third and fourth elements are the vectors *$pars
, *$init
and *$time
, containing the pars
, init
and time
arguments of the function. The fifth element *$results
is a data.frame
with up to as many rows as elements in time. First column contains the time. Second and third columns contain the number of susceptibles and recovered.
References
Keeling, Matt J., and Pejman Rohani. Modeling infectious diseases in humans and animals. Princeton University Press, 2008.
See Also
ode.
Examples
# Parameters and initial conditions.
parameters <- c(beta = 1, gamma = 1 / 10, mu = 1 / (50 * 365),
noise = 10, N = 1e6)
initials <- c(X = 1e5, Y = 500)
# Solve and plot.
sir.additive.noise <- SIRAdditiveNoise(pars = parameters, init = initials,
time = 0:(2 * 365), step = 1)
PlotMods(sir.additive.noise)