🧠 Modeling Long-Term Disease Dynamics: The SIR Model with Vital Dynamics

The Susceptible–Infectious–Recovered (SIR) model augmented with Vital Dynamics is a foundational epidemiological framework specifically designed to analyze disease spread over temporal scales sufficiently long that demographic events—namely births and natural deaths—cannot be ignored. This inclusion transforms the analysis from acute outbreak prediction (epidemic) to steady-state prevalence assessment (endemic).


🧩 Compartmental Structure and Flow Explanation

The model organizes the population, N, into three core health states—Susceptible (S), Infectious (I), and Recovered (R)—while incorporating mechanisms for population renewal and attrition:

  • Susceptible (S): Individuals vulnerable to infection. They gain members via births (Ī› or B) and lose members through infection (βSI/N) or natural death (μS).
  • Infectious (I): Individuals actively spreading the disease. They gain members from successful infection of susceptibles and lose members through recovery (γI) or natural death (μI).
  • Recovered (R): Individuals who have gained permanent immunity. They gain members from recovery and lose members through natural death (μR).

In the simplest endemic setting, the birth rate Ī› and natural death rate μ are often assumed to satisfy Ī› = μN, producing a constant steady-state population. When pathogen-induced mortality is present, this equality does not hold and N varies dynamically.

To summarize the demographic balance explicitly:

N(t) = S(t) + I(t) + R(t),
dN/dt = Ī› āˆ’ μN (in absence of disease-induced death).


šŸ“Š Mathematical Formulation (ODEs)

Assuming a mass-action incidence rate and constant per-capita natural birth (Ī›) and death (μ) rates, the deterministic system describing changes in S(t), I(t), and R(t) is:

dS/dt = Ī› āˆ’ βSI/N āˆ’ μS
dI/dt = βSI/N āˆ’ (γ + μ)I
dR/dt = γI āˆ’ μR

Where:

• N = S + I + R (constant if Ī› = μN).
• β = transmission rate.
• γ = recovery rate.
• Ī› = recruitment/birth rate.
• μ = natural death rate.

The total removal rate from the infectious class is therefore γ + μ.


āš›ļø Parameter Definitions and Ranges

ParameterDefinitionTypical Range (Day⁻¹)Context
βTransmission rate coefficient.0.2 – 1.0Varies with Rā‚€ and contact behavior.
γRecovery rate.0.14 – 0.5Infectious period ā‰ˆ 2–7 days.
μNatural mortality rate.1/27000 – 1/1825Long-term demographic processes.
Ī›Recruitment/Birth rate.ā‰ˆ μNEntry into susceptible class.
Rā‚€Basic Reproduction Number.1.5 – 4.0Given by β / (γ + μ).

šŸŽÆ Applicability and Limitations

Applicability

  1. Endemic State Prediction:
    Persistence occurs when Rā‚€ > 1. If Rā‚€ ≤ 1, infections decay to zero.
  2. Equilibrium Analysis:
    The endemic equilibrium satisfies:
    I* = (Ī›/μ)(1 āˆ’ 1/Rā‚€) āˆ’ R*,
    S* = N/Rā‚€,
    with R* determined by demographic balance.
  3. Recurrent Outbreaks:
    Continuous replenishment of susceptibles (Ī›) sustains repeated epidemic waves.
  4. Herd Immunity Threshold:
    H = 1 āˆ’ 1/Rā‚€,
    representing the critical immune fraction necessary for elimination.

Limitations and Assumptions

  1. Homogeneous Mixing: Uniform mixing neglects age structure, spatial structure, and heterogeneity.
  2. Permanent Immunity: Immunity is assumed lifelong; waning immunity requires R → S transition.
  3. Damped Oscillations: Deterministic dynamics produce decaying oscillations unless stochasticity or seasonal forcing is added.

šŸ“š Reference Papers

  1. Kermack, W. O., & McKendrick, A. G. A contribution to the mathematical theory of epidemics.
  2. Hethcote, H. W. The mathematics of infectious diseases.
  3. Brauer, F., Castillo-Chavez, C. Mathematical Models in Population Biology and Epidemiology.
  4. Anderson, R. M., & May, R. M. Infectious Diseases of Humans: Dynamics and Control.
  5. Diekmann, O., Heesterbeek, J. A. P., & Metz, J. A. J. On the definition and computation of the basic reproduction ratio Rā‚€.

Leave a Comment