Epidemiology: The SIR model

From JSXGraph Wiki
Revision as of 17:43, 21 January 2009 by A WASSERMANN (talk | contribs)

Simulation of differential equations with turtle graphics using JSXGraph.

SIR model without vital dynamics

A single epidemic outbreak is usually far more rapid than the vital dynamics of a population, thus, if the aim is to study the immediate consequences of a single epidemic, one may neglect the birth-death processes. In this case the SIR system described above can be expressed by the following set of differential equations:

[math]\displaystyle{ \frac{dS}{dt} = - \beta I S }[/math]
[math]\displaystyle{ \frac{dR}{dt} = \gamma I }[/math]
[math]\displaystyle{ \frac{dI}{dt} = -(dS+dR) }[/math]

The lines in the JSXGraph-simulation below have the following meaning:

* Blue: Rate of susceptible population
* Red: Rate of infected population
* Green: Rate of recovered population (which means: immune, isolated or dead)


2468101214161820222426280.20.40.60.81−0.2−0.4−0.6−0.8−1
s = 0.03
initially infected population rate
β = 0.50
β: infection rate
γ = 0.30
γ: recovery rate