R/SIRS.R
SIRS_demographics_ode.Rd
Susceptible-Infected-Recovered-Susceptible Model with Simple Demographics
SIRS_demographics_ode(t, x, params)
t | The timestep over which to calculate derivatives |
---|---|
x | A numeric vector of compartment populations. |
params | A named vector of parameter values. |
A vector of derivatives
##Model Input S_0 <- 989 I_0 <- 1 R_0 <- 0 beta <- 3 chi <- 0.5 tau <- 2 mu <- 1/81 dt <- 1 parameters <- c(beta = beta, tau = tau, mu = mu) inits <- c(S = S_0, I = I_0, R_0 = R_0) SIRS_demographics_ode(1, inits, parameters)#> Error in eval(substitute(expr), data, enclos = parent.frame()): object 'chi' not found