This is a behavioral state model which allows for time varying EIP and survival probability. Mosquitoes transition between blood feeding (B) and oviposition (Q) depending on the success (or not) of those biological activities. It complies with the mosquito component interface, and may be simulated deterministically or stochastically.
setup_mosquito_BQ(
model,
stochastic,
eip,
pB,
pQ,
psiQ,
Psi_bb,
Psi_bq,
Psi_qb,
Psi_qq,
nu = 25,
M,
Y
)no return value
an object from make_MicroMoB
should the model update deterministically or stochastically?
the Extrinsic Incubation Period (may be time varying see time_varying_parameter)
daily survival probability during blood feeding (may be time and patch varying see time_patch_varying_parameter)
daily survival probability during oviposition (may be time and patch varying see time_patch_varying_parameter)
oviposition success probability (may be time and patch varying see time_patch_varying_parameter)
movement matrix from blood feeding haunts to blood feeding haunts (columns must sum to 1, p rows and columns)
movement matrix from blood feeding haunts to aquatic habitats (columns must sum to 1, l rows and p columns)
movement matrix from aquatic habitats to blood feeding haunts (columns must sum to 1, p rows and l columns)
movement matrix from aquatic habitats to aquatic habitats (columns must sum to 1, l rows and columns)
number of eggs laid per oviposition
number of susceptible mosquitoes (vector of length p + l)
number of incubating mosquitoes (matrix with p + l rows and maxEIP + 1 columns)