SIS_demographics_ode: Susceptible-Infected-Susceptible Model with Simple...

View source: R/SIS.R

SIS_demographics_odeR Documentation

Susceptible-Infected-Susceptible Model with Simple Demographics

Description

Susceptible-Infected-Susceptible Model with Simple Demographics

Usage

SIS_demographics_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 <- 999
I_0 <- 1
beta <- 3
chi <- 2
mu <- 1/81
dt <- 1
parameters <- c(beta = beta, mu = mu)
inits <- c(S = S_0, I = I_0)

SIS_demographics_ode(1, inits, parameters)

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