SEIRS_ode: Susceptible-Exposed-Infected-Recovered-Susceptible Model

View source: R/SEIRS.R

SEIRS_odeR Documentation

Susceptible-Exposed-Infected-Recovered-Susceptible Model

Description

Susceptible-Exposed-Infected-Recovered-Susceptible Model

Usage

SEIRS_ode(t, x, params)

Arguments

t

The timestep over which to calculate derivatives

x

A numeric vector of compartment populations.

params

A named vector of parameter values.

Value

A vector of derivatives

Examples

##Model Input
S_0 <- 989
E_0 <- 10
I_0 <- 1
R_0 <- 0
beta <- 3
gamma <-  1/2
tau <- 2
chi <- 0.5

parameters <- c(beta = beta, gamma = gamma,
                chi = chi, tau = tau)
inits <- c(S = S_0, E = E_0, I = I_0, R_0 = R_0)

SEIRS_ode(1, inits, parameters)

idmodelr documentation built on Sept. 2, 2022, 5:06 p.m.