📉 The Closed Population SIR Model: Dynamics of a Single Epidemic Wave 📉


🏗️ Conceptual Overview

Within mathematical epidemiology, the Closed Population SIR Model is the canonical framework for analyzing acute, short-term epidemic outbreaks. The defining assumption is that the epidemic unfolds on a time scale that is short relative to host demographic processes. As a result, births, natural deaths, and migration are neglected, and the total population size remains constant.

This assumption enables precise analytical insight into two fundamental epidemic quantities:
• the epidemic peak, when the number of infectious individuals is maximized, and
• the final epidemic size, representing the total fraction of the population that becomes infected during a single outbreak.

Such a model is particularly appropriate for closed or semi-closed settings such as schools, ships, prisons, military barracks, or isolated communities.


🏗️ Compartmental Structure and Flow

The population is partitioned into three mutually exclusive compartments, with total population size N fixed:

  1. Susceptible (S)
    Individuals who have not been infected and possess no immunity.
  2. Infected (I)
    Individuals who are currently infected and capable of transmitting the pathogen.
  3. Recovered (R)
    Individuals who have cleared the infection and acquired permanent immunity.

Flow Structure

The disease progresses unidirectionally according to:

Susceptible → Infected → Recovered

New infections occur via mass-action contact between susceptible and infected individuals, while recovery removes individuals permanently from the infectious pool.


🧮 Mathematical Formulation

The Closed Population SIR model is governed by the following system of nonlinear ordinary differential equations:

Susceptible Population

dS(t) / dt
= − ( β · S(t) · I(t) ) / N

Infected Population

dI(t) / dt
= ( β · S(t) · I(t) ) / N − γ · I(t)

Recovered Population

dR(t) / dt
= γ · I(t)

Because the population is closed, the conservation law holds for all t:

S(t) + I(t) + R(t) = N

Here, β controls the rate of transmission through effective contacts, while γ governs the rate of recovery.


🌤️ Climatic Variable Integration: Environmental Forcing

In many viral respiratory infections, transmission efficiency is influenced by environmental conditions such as absolute humidity or temperature. To account for this, the transmission parameter β can be modeled as a time-varying function of a climatic variable W:

β(W)
= β₀ · exp( − α · W(t) )

In this formulation, environmental pressure modulates the speed of epidemic spread, transforming the system into a non-autonomous SIR model. Seasonal or meteorological variation can therefore accelerate or decelerate epidemic progression without altering the underlying compartmental structure.


📋 Table 1. Parameter Definitions

ParameterDefinition
SNumber of susceptible individuals
INumber of infected individuals
RNumber of recovered individuals
NTotal population size
βTransmission rate coefficient
γRecovery rate
β₀Baseline transmission rate
αEnvironmental sensitivity coefficient
W(t)Time-varying environmental variable

📊 Table 2. Typical Parameter Ranges

ParameterTypical RangeInterpretation
β0.2 – 1.5 day⁻¹Contact-driven transmission intensity
γ0.07 – 0.5 day⁻¹Infectious period of 2–14 days
R₀β / γ > 1Condition for outbreak initiation
NFixedClosed population size
α0.05 – 0.5Sensitivity to climate forcing

🎯 Applicability and Limitations

Applicability

• Single-wave epidemic outbreaks
• Estimation of epidemic peak and final size
• Analysis of short-term interventions such as temporary distancing
• Closed or well-defined populations

Key Assumptions and Weaknesses

• No births, deaths, or migration during the epidemic
• Homogeneous mixing of the population
• Permanent immunity following recovery
• Inability to represent endemic persistence or recurrent waves

Despite these simplifications, the Closed Population SIR model remains the theoretical backbone of epidemic modeling and the reference point for more complex extensions.


📚 References

  1. Kermack, W. O., & McKendrick, A. G. (1927). A contribution to the mathematical theory of epidemics. Proceedings of the Royal Society of London. Series A.
  2. Hethcote, H. W. (2000). The mathematics of infectious diseases. SIAM Review.
  3. Anderson, R. M., & May, R. M. (1991). Infectious Diseases of Humans: Dynamics and Control. Oxford University Press.
  4. Brauer, F., & Castillo-Chavez, C. (2012). Mathematical Models in Population Biology and Epidemiology. Springer.

🔥 Analogy for Clarity

The Closed Population SIR model is like a single match dropped into a finite pile of wood. The susceptible individuals are the unburned logs, the infected individuals are the flames, and the recovered individuals are the ash. Because no new logs are added, the fire inevitably burns out once the fuel is exhausted, producing a single, well-defined epidemic wave.

Leave a Comment