sirChainmod {epimdr2}R Documentation

Gradient-function for the chain-SIR model

Description

Gradient-function for the chain-SIR model

Usage

sirChainmod(t, logx, parameters)

Arguments

t

Implicit argument for time

logx

A vector with values for the log-states

parameters

A vector with parameter values for the chain-SIR system

Value

A list of gradients

Examples

require(deSolve)
times  = seq(0, 10, by=1/52)
paras  = c(mu = 1/75, N = 1, beta =  625, gamma = 365/14, u=5)
xstart2 = log(c(S=.06, I=c(0.001, rep(0.0001, paras["u"]-1)), R = 0.0001))
out = as.data.frame(ode(xstart2, times, sirChainmod, paras))

[Package epimdr2 version 1.0-9 Index]