Introduction#
The main benefits of using PyGOM are probably most evident when it is applied to compartmental models. This class of model is used to represent systems involving the transport of material (continuous or discrete) between different categories. These are commonly employed in epidemiology, in which humans (or animals) may flow between different disease states, but are also found in chemistry, tracking the formation of molecules, or in economics, where money may move from one sector to another.
To outline the key features of a compartmental model, we build on a simple Susceptible-Infected-Recovered (SIR) epidemic model with examples of increasing complexity.
Note
For those unfamiliar with the SIR model, an outline can be found in the common models section.
Transitions between states#
In the simplest SIR compartmental model, individuals move from one state to another through 2 types of transition:
Infection, which turns a Susceptible individual into an Infected one
Recovery, which turns an Infected individual into a Recovered one
To fully specify the dynamics of the system, we must supplement these events with the rate at which they occur.
In this case, infections occur at a rate
We can graphically represent compartmental models using boxes (nodes) to indicate the states and arrows (directed edges) to show the transfer of individuals. The arrows are then annotated with the rate at which the transitions occur and it is implied that a transition event leads to the transfer of one individual.
Transitions in to and out of the system#
It is not complicated to extend the compartmental model framework to transitions which are not between states.
This could appear in the SIR model through births and deaths, for example.
Here, we allow individuals to be born in a susceptible state at a rate,
To indicate these graphically, birth and death processes lack an origin or a destination state respectively:
Note
We may actually be interested in tracking the total number of deaths, in which case we would define a new compartment, say
Definition#
Gathering these features together, we have the foundations of what a compartmental model is. The fundamental unit we shall call the Event and this consists of:
The rate at which it occurs
Constituent Transitions which are triggered when the event occurs. Each Transition is then defined by:
i) Type (between states or birth/death)
ii) Magnitude of the state change
Note
This is why the classes Event
and Transition
are the building blocks of a PyGOM model, as outlined in the Defining a system of differential equations section.
For example, the compartmental model above consists of 6 events:
The infection event which has a rate,
, and involves 3 transitions:Transition from
with magnitude 1Birth rate into
with magnitude 1Birth rate into
, with magnitude
The recovery event which has a rate,
, and involves 1 transition:Transition from
with magnitude 1
Events 3 to 6 are one birth and three death events