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

Tree life history stages and transitions

Tree life history stage (also referred to as tree type), along with species, is the basic way to classify trees. When you set up behaviors for a run, you tell each behavior which trees to act on by species and type. There is support for seven tree life history stages in the model:

  • Seed.
  • Seedling. Seedlings are defined as trees less than the height set in the parameter Max Seedling Height (meters) (normally 1.35 meters, thus seedlings have no DBH). Their primary size measurement is the diameter at 10 cm height (diam10).
  • Sapling. Saplings are defined as having a DBH greater than 0 and less than the Minimum adult DBH defined in the tree parameters. Seedlings and saplings are sometimes referred to collectively as "juveniles".
  • Adult. Adults are defined as having a DBH equal to or greater than the Minimum adult DBH defined in the tree parameters.
  • Stump. Stumps are saplings or adults that have been cut by the Harvest behavior.
  • Snag. Snags are standing dead trees. They can be produced when saplings and adults die due to normal tree mortality or a disturbance event, such as disease. Only adult trees become snags. See below for more on how trees become snags.
  • Woody debris. Woody debris comes from fallen snags. Currently, no behavior uses woody debris and this is a placeholder stage only. It is not created at this time.

Tree life history stage transitioning - growth

Seed to seedling. Seeds are modeled only as aggregates, not individuals. Seeds become individual seedlings when they are processed by an establishment behavior.

Seedling to sapling. When a seedling reaches the maximum seedling height set for its species, it becomes a sapling. The diam10 value is converted to a DBH value, which is then used to calculate the rest of the sapling's new dimensions. Since height is re-calculated with a different equation and input parameters, there may be a discontinuity in height values right around the seedling/sapling transition point. If a species uses different allometric relationships for its saplings and adults, another discontinuity may occur at the time of this transition as well. For more on the allometric relationships and how they are calculated, see the Allometry topic. (The automatic updating of these allometric relationships during the growth phase can be overridden. For more, see the Growth behaviors topic.)

Sapling to adult. When a sapling's DBH reaches the minimum adult DBH for its species, it becomes an adult.

Tree life history stage transitioning - death

Death also produces tree life history stage transitions. Behaviors can request to a tree population that a tree be killed. How the tree population responds to this request depends on the type of tree, the reason for death, and the type of run.

Mortality reasons

The reasons why a tree is killed are:

  • Natural mortality
  • Harvest
  • Insects
  • Fire
  • Disease

Check the documentation for your chosen disturbance behaviors and mortality behaviors for more information on which codes will apply to your run.

There are life history stages for dead trees, but a run may not be set up to handle them. The tree population takes this into account. It examines the run to see if any behaviors directly deal with stumps and snags. If either is the case, the run is classified as "stump aware" and/or "snag aware".

Here's what happens to a tree to be killed in different situations:

  • If a tree is a seedling, it is deleted from memory no matter why it died.
  • If a tree is a sapling or adult killed in a harvest, and the run is "stump aware", the tree is converted to a stump.
  • Saplings killed for any other reason, or by harvest in a run that is not "stump aware", are deleted from memory.
  • If the tree is an adult killed by harvest and the run is not "stump aware", it is deleted from memory.
  • If the tree is an adult killed for any reason other than harvest, and the run is "snag aware", the tree is converted to a snag.
  • If the tree is an adult killed for any reason other than harvest, and the run is NOT "snag aware", the tree is removed from memory.
  • If the tree is already a snag, it is removed from memory.

Stumps exist only for the timestep in which they were created, and then disappear.

You can include information on dead trees in output files. For the purposes of output, dead trees are those which have been removed from memory and are no longer interacting with the model in any way. In this case, a snag is considered alive, although a tree that produced a snag will show up in output mortality records in the timestep in which it died to become a snag. Then the snag would show up again when it was finally removed from the model.