Skip to contents

Fits a function that returns mortality rate based on daily rainfall

Usage

fit_rainfall_thack()

Arguments

x

daily rainfall in mm

Value

mortality rate

Details

A mortality rate function to pass on to the Endosymbiont model. Fits a curve using the Thackray definition of rainfall-induced mortality in aphids (Thackray et al. 2004, modified for green peach aphid by Maling et al. 2010): $$ \text{{Rainfall Mortality}} = 0.026 \cdot \text{{Rainfall}} - 0.33 $$

Where mortality increases linearly as daily rainfall increases from 15 mm and is capped at a maximum of 0.5.

References

Thackray, D.J., Diggle, A.J., Berlandier, F.A., Jones, R.A.C., Forecasting aphid outbreaks and epidemics of Cucumber mosaic virus in lupin crops in a Mediterranean-type environment. Virus Research, 100, 67-82 (2004)

Maling, T., Diggle, A.J., Thackray, D.J., Siddique, K.H.M., Jones, R.A.C. An epidemiological model for externally acquired vector-borne viruses applied to Beet western yellows virus in Brassica napus crops in a Mediterranean-type environment. Crop and Pasture Science, 61, 132-144 (2010)

Examples

my_func <- EndoSim:::fit_rainfall_thack()
plot(seq(0, 50, by = 0.1), my_func(seq(0, 50, by = 0.1)), type = "l")