Classic epidemic models of disease transmission are described in Compartmental models in epidemiology. Here we discuss the behavior when such models are simulated on a lattice. Lattice models, which were first explored in the context of cellular automata, act as good first approximations of more complex spatial configurations, although they do not reflect the heterogeneity of space (e.g. population density differences, urban geography and topographical differentiations).[1] Lattice-based epidemic models can also be implemented as fixed agent-based models.[2]
Introduction
The mathematical modelling of epidemics was originally implemented in terms of differential equations, which effectively assumed that the various states of individuals were uniformly distributed throughout space. To take into account correlations and clustering, lattice-based models have been introduced. Grassberger
[3]
considered synchronous (cellular automaton) versions of models, and showed how the epidemic growth goes through a critical behavior such that transmission remains local when infection rates are below critical values, and spread throughout the system when they are above a critical value. Cardy and Grassberger
[4] argued that this growth is similar to the growth of percolation clusters, which are governed by the "dynamical percolation" universality class (finished clusters are in the same class as static percolation, while growing clusters have additional dynamic exponents). In asynchronous models, the individuals are considered one at a time, as in kinetic Monte Carlo or as a "Stochastic Lattice Gas."[citation needed]
SIR model
In the "SIR" model, there are three states:
Susceptible (S) -- has not yet been infected, and has no immunity
Infected (I)-- currently "sick" and contagious to Susceptible neighbors
Removed (R), where the removal from further participation in the process is assumed to be permanent, due to immunization or death
It is to be distinguished from the "SIS" model, where sites recover without immunization, and are thus not "removed".
The asynchronous simulation of the model on a lattice is carried out as follows:
Pick a site. If it is I, then generate a random number x in (0,1).
If x < c then let I go to R.
Otherwise, pick one nearest neighbor randomly. If the neighboring site is S, then let it become I.
Repeat as long as there are S sites available.
Making a list of I sites makes this run quickly.
The net rate of infecting one neighbor over the rate of removal is λ = (1-c)/c.
For the synchronous model, all sites are updated simultaneously (using two copies of the lattice) as in a cellular automaton.
I → S with unit rate;
S → I with rate λnI/z where nI is the number of nearest neighbor I sites, and z is the total number of nearest neighbors (equivalently, each I attempts to infect one neighboring site with rate λ)
(Note: S → I with rate λn in some definitions, implying that lambda has one-fourth the values given here).
The simulation of the asynchronous model on a lattice is carried out as follows, with c = 1 / (1 + λ):
Pick a site. If it is I, then generate a random number x in (0,1).
If x < c then let I go to S.
Otherwise, pick one nearest neighbor randomly. If the neighboring site is S, then let it become I.
Repeat
Note that the synchronous version is related to the directed percolation model.
^Grassberger, Peter (1983). "On the critical behavior of the general epidemic process and dynamical percolation". Mathematical Biosciences. 63 (2): 157–172. doi:10.1016/0025-5564(82)90036-0.
^Alves, T. F. A.; Alves, G. A.; Macedo-Filho, A. (2019-01-10). "Asynchronous SIR model on Two-Dimensional Random Delaunay Lattices". arXiv:1901.03029 [cond-mat.stat-mech].