MYZ-macdonald.Rmd
The macdonald
module was included in
ramp.xds
for historical reasons:
Macdonald’s model for mosquito infection dynamics is a special case.
What I am calling Macdonald’s Model comes from three
publications in 1952-1953. In 1952, George Macdonald published The analysis of the
sporozoite rate1. Later that year, in The analysis of
equilibrium in malaria2, Macdonald presented a formula for the
basic reproduction rate of malaria parasites, now often called
(pronounced R-naught). Macdonald gives credit to his colleague Armitage
for the mathematics. Armitage’s paper, A note on the
epidemiology of malaria3 would appear in 1953, but it was not
presented as a system of differential equations.
The module called macdonald
was included in
ramp.library
as an example of a module
that was not extensible. The model was formulated as a system
of delay diferential equations, and the formulation of the
non-autonomous model (e.g. with forcing due to weather
or vector control) requires some mathematics. This is, perhaps, why
compartment models are so commonly used. A fully extensible delay
differential equation model that extends Macdonald’s model is the
generalized, non-autonomous Ross-Macdonald module GeRM.
In the following, we present a version of Macdonald’s model. Next, we
present an extension of Macdonald’s model that is extensible, published
by Joan Aron and Robert M. May in 1982. Finally, we present
macdonald
as an autonomous spatial version of
Macdonald’s model.
If Macdonald’s analysis were presented as a mathematical model, it would almost certainly look something like the following. Consider a simple system of differential equations the sporozoite rate has three parameters and one term:
the human blood feeding rate,
the extrinsic incubation period,
the mosquito death rate, ; or the probability of surviving one day, , so
the fraction of bites on humans that infect a mosquito,
Let
denote the fraction of mosquitoes that are infected. The dynamics are
given by:
Let
denote the fraction of mosquitoes that are infectious. The model is a
delay differential equation. Let
denote the value of
at time
If the parameters and terms are constant, then:
The model has a steady state for the fraction infected:
The fraction infectious, also called the sporozoite rate, is
Macdonald used
so his formula was:
To generate the formula for Macdonald introduces another variable and three additional parameters:
the ratio of mosquitoes to humans,
the rate infections clear,
the fraction of infectious bites that infect a human,
The fraction of infected and infectious humans, is given by the equation:
and the model assumes that The formula for in this system is: In this form, the model is difficult to use or extend.
The mosquito module in ramp.xds
called
macdonald
is based on a model first published in 1982 by
Joan Aron and Robert May4. It includes state variables for total
mosquito density
,
infected mosquito density
,
and infectious mosquito density
.
In this model, the blood feeding rate is split into an overall blood
feeding rate,
,
and the human fraction,
such that
The Aron & May’s equations are:
macdonald
The module called macdonald
has been extended beyond the
Aron & May formulation to include spatial dynamics and parity. To
formulate the spatial model, a spatial domain is sub-divided into a set
of patches. Variable and parameter names do not change, but they can now
represent vectors of length
To formulate the demographic matrix, denoted
that describes mosquito mortality, emigration, and other loss from the
system. We let
denote the emigration rate and $\cal K$
the mosquito dispersal matrix. We also introduce a parameter,
to model the fraction of mosquitoes that are lost to emigration from
each patch. $$\Omega = \mbox{diag}
\left(g\right) + \left(\mbox{diag} \left(1-\mu\right) - \cal K\right)
\cdot \mbox{diag} \left(\sigma\right)
$$
We note that the module SI
provides a reasonably simple
approximating model that has no delay, but in computing
it includes mortality and dispersal that would have occurred during the
EIP:
The implementation of SI
is similar in spirit to the simple model presented in Smith &
McKenzie (2004)5. in that mortality and dispersal over the
EIP is accounted for, but the time lag is not. While transient dynamics
of the ODE model will not equal the DDE model, they have the same
equilibrium values, and so for numerical work requiring finding
equilibrium points, the faster ODE model can be safely substituted.
There are two logical ways to begin solving the non-trivial equilibrium. The first assumes is known, which implies good knowledge of mosquito ecology. The second assumes is known, which implies knowledge of the biting rate on the human population. We show both below.
The analysis of the sporozoite rate. Macdonald G (1952). Trop Dis Bull 49(6):569-86.↩︎
The analysis of equilibrium in malaria. Macdonald G (1952). Trop Dis Bull 49(9):813-29.↩︎
A note on the epidemiology of malaria. Armitage P (1953). Trop Dis Bull 50(10):890-2↩︎
The population dynamics of malaria. In The Population Dynamics of Infectious Diseases: Theory and Applications, R. M. Anderson, ed. (Springer US), pp. 139–179. online↩︎
Smith, D.L., Ellis McKenzie, F. Statics and dynamics of malaria infection in Anopheles mosquitoes. Malar J 3, 13 (2004). online↩︎