Skip to contents

This implements differential equation model for aquatic mosquito ecology. The equations have been modified slightly from a version published by Smith DL, et al. (2013).

Variables:

  • L: the density of mosquito larvae in each habitat

Input:

  • η or eta: egg deposition rate (from F_eggs)

Parameters:

  • ψ or psi: maturation rate

  • ξ or xi: delayed maturation parameter in response to mean crowding

  • ϕ or phi: density-independent death rate

  • θ or theta: the slope of the mortality rate in response to mean crowding

Dynamics:

dL/dt=η(ψeξL+ϕ+θL)L

Output:

  • The function F_emerge computes the net emergence rate (α):

α=ψeξLL

Regulation:

In this model, population is regulated in two ways. First, per-capita mortality increases with mean crowding; per-capita mortality is ϕ+θL. Second, maturation is delayed in response to mean crowding ψeξL. Depending on the values of ξ, productivity in some habitats might not be a monotonically increasing function of egg laying.

The model by Smith DL, et al. (2013) did not include delayed maturation; that model is recovered by setting ξ=0.

Usage

# S3 method for class 'basicL'
dLdt(t, y, pars, s)

Arguments

t

current simulation time

y

state vector

pars

an xds object

s

the species index

Value

a numeric vector

References

Smith DL, Perkins TA, Tusting LS, Scott TW, Lindsay SW (2013). “Mosquito population regulation and larval source management in heterogeneous environments.” PLoS ONE, 8(8), e71247. doi:10.1371/journal.pone.0071247 .

See also