BedNets.Rmd
Every bed net model has six configurable functions, each one dispatched and configured by a different object. These get called at two different points:
VectorControl
dispatches on
class(model$vector_control) == "dynamic"
BedNet
dispatches on
class(model$bednets) == "dynamic"
DistributeBedNets
dispatches on
class(model$bednets$distribute)
is there to model mass
distribution of ITNs that should sharply increase bednet
ownership
OwnBedNets
dispatches on
class(model$bednets$own)
is a model that can account for
background net replacement and loss
UseBedNets
dispatches on
class(model$bednets$use)
is a model for bed net
usage
BedNetEffects
dispatches on
class(model$bednets$effects)
is a function that modifies
search weights
VectorControlEffectSizes
dispatches on
class(model$bednets) == "dynamic"
BedNetCoverage
dispatches on
class(model$bednets$coverage[[s]])
for the
sth
vector species
BedNetEffectSizes
dispatches on
class(model$bednets$effect_size[[s]])
for the
sth
species
To set all this up, we call a function with a name that calls a setup function and as set of options to set it up, passed as a list:
setup_bednet = function(pars,
dist_name = `none`, distribute = list(),
own_name = `none`, own = list(),
use_name = `none`, use = list(),
effects_name = `none`, effects = list(),
coverage_name = `none`, coverage = list(),
es_name = `none`, effect_sizes =list()
)
In the simplest models, we can simply set coverage
mod <- xds_setup(MYZname = "SI")
mod <- setup_bednets(mod,
coverage_name = "func", coverage_opts = cov_opts,
effectsizes_name = "lemenach")