Loads default pathogen parameters for a specific disease

loadPathogen(disease = "rust")

Arguments

disease

a disease name, among "rust" (default), "mildew", "sigatoka" and "no pathogen"

Value

a list of pathogen parameters on a susceptible host for a pathogen genotype not adapted to resistance

Details

Available diseases:

  • "no pathogen"

  • "rust" (genus Puccinia, e.g. stripe rust, stem rust and leaf rust of wheat and barley)

  • "mildew" (Plasmopara viticola, downy mildew of grapevine)

  • "sigatoka" (Pseudocercospora fijiensis, black sigatoka of banana) Note that when disease = "mildew" a price reduction between 0% and 5% is applied to the market value according to disease severity.

See also

Examples

basic_patho_params <- loadPathogen()
basic_patho_params
#> $name
#> [1] "rust"
#> 
#> $survival_prob
#> [1] 1e-04
#> 
#> $repro_sex_prob
#> [1] 0
#> 
#> $infection_rate
#> [1] 0.4
#> 
#> $propagule_prod_rate
#> [1] 3.125
#> 
#> $latent_period_mean
#> [1] 10
#> 
#> $latent_period_var
#> [1] 9
#> 
#> $infectious_period_mean
#> [1] 24
#> 
#> $infectious_period_var
#> [1] 105
#> 
#> $sigmoid_kappa
#> [1] 5.333
#> 
#> $sigmoid_sigma
#> [1] 3
#> 
#> $sigmoid_plateau
#> [1] 1
#> 
#> $sex_propagule_viability_limit
#> [1] 1
#> 
#> $sex_propagule_release_mean
#> [1] 1
#> 
#> $clonal_propagule_gradual_release
#> [1] 0
#>