SORTIE-ND
Software for spatially-explicit simulation of forest dynamics

Density Dependent Infestation

This behavior simulates an outbreak of a pest or pathogen in the plot. It chooses and marks affected trees, allowing other behaviors to make use of this information. The number of affected trees is a function of time since infestation began. The infestation has no spatial pattern.

This behavior only chooses trees for infestation. It does not kill them or alter their dynamics in any way. Other behaviors may take advantage of the infestation status of trees.

Parameters for this behavior

Parameter nameDescription
Infestation "a"The value of "a" in the equation for determining the proportion of infested trees.
Infestation "bx"The value of "bx" in the equation for determining the proportion of infested trees.
Infestation "by"The value of "by" in the equation for determining the proportion of infested trees.
Infestation Cohort DBH ThresholdThe minimum DBH for a tree to be in the larger cohort for infestation. Use 0 if you don't want to divide the trees into cohorts.
Infestation Max RateThe "max" value in the equation for determining the proportion of infested trees, as a value between 0 and 1.
Infestation Min DBHThe minimum DBH at which a tree can become infested.
First Year of Infestation Relative to StartThe year that an infestation starts, relative to the beginning of the run (it is year 0 before the first timestep begins). A negative value means the infestation started before the run did.
Last Year of Infestation (-1 if no end)The timestep that an insect infestation ends. If -1, this indicates that the infestation should not be ended but allowed run its course throughout the run.
Proportion of Conditionally Susceptible Trees (0-1)The proportion of the trees in the plot that are to be classed as conditionally susceptible, as a value between 0 and 1.
Proportion of Resistant Trees (0-1)The proportion of the trees in the plot that are to be classed as resistant, as a value between 0 and 1.

How it works

Trees fall into three categories: resistant, conditionally susceptible, and susceptible. Trees classed as resistant are never infected. Trees classed as conditionally susceptible and susceptible are treated the same by this behavior but may be treated differently by others. The proportion of trees that are resistant and conditionally susceptible are entered in the Proportion of Resistant Trees (0-1) and Proportion of Conditionally Susceptible Trees (0-1) parameters, respectively, as a value between 0 and 1. Trees are randomly assigned to these categories according to these proportions and retain their categorization for life. This assignment is recorded in a tree data member called "Resistance Status".

The proportion of trees of a particular species infested as a function of time is as follows:

BBD infestation equation

where:

  • P is the proportion of the eligible tree population infested.
  • a is the Infestation "a" parameter.
  • max is the Insect Infestation Max Rate parameter, as a value between 0 and 1. This is the maximum infestation rate that will occur regardless of how long the infestation lasts.
  • T is the time, in years, since the start of the infestation.

"b" is calculated as follows:

b = bx * BA + by

where:

  • bx is the Infestation "bx" parameter
  • by is the Infestation "by" parameter
  • BA is the proportion of tree basal area in the plot of individuals with DBH above the minimum infestible DBH

BA is the basal area of trees in to which this species applies (above the minimum infestible DBH) divided by total plot basal area. Both resistant and non-resistant trees count towards the basal area of the behavior trees. For total plot basal area, all saplings and adults count.

The proportion of trees infested at time T does not depend on additions to or subtractions from the pool of eligible trees. Each timestep, the number of infested trees of each species is counted and additional trees are randomly selected for new infestation until approximately the right number are infested. If for some reason there are more trees infested than there should be at that time, no additional trees are infested.

Susceptible individuals can be split into two size cohorts, with the cutoff DBH set as the Infestation Cohort DBH Threshold parameter. All the individuals above this DBH are infected before any below the cutoff are. (Note that when the value of Infestation Max Rate is less than one, it is possible that no individuals below the DBH cutoff will ever be infected.)

When selecting trees for infestation, the location of the trees is not considered. It is assumed that all trees have an equal chance of becoming infested no matter where they are in the plot. This behavior uses a tree data member called "Years Infested" to track which trees are infested and how long they have been so.

You choose when an infestation begins with the First Year of Infestation Relative to Start parameter. The first year is relative to the start of the run (year 0 is just before the start of timestep 1; at the end of timestep 1, the current year is equal to the number of years per timestep). The infestation start year can be negative, indicating that the infestation is already in progress at the start of the run. In this case, the behavior will calculate the current proportion of infested trees according to the equation above and choose the appropriate number from the initial conditions trees. They will be randomly assigned an infestation time corresponding to the distribution of times expected after that many years of infestation.

Once started, an infestation only ends if you have set a value in the Last Year of Infestation parameter. If it ends, it never restarts. Otherwise, infestation never ends even if all trees in the infestible pool die. Any new trees of infestible species that enter the plot will be eligible for infestation.

How to apply it

Apply this behavior to saplings and/or adults of any species. All species to which this behavior applies are treated as a common pool for determining things like proportion of basal area.