simulatePopulation: Simulates population dynamics for virtual species with...

View source: R/simulatePopulation.R

simulatePopulationR Documentation

Simulates population dynamics for virtual species with different traits.

Description

This function takes as input a dataframe of parameters defining virtual taxa produced by parametersDataframe and fixParametersTypes, a driver or drivers generated with simulateDriver or simulateDriverS, and simulates population dynamics for the given virtual taxa at yearly resolution for the time-length defined by the driver or drivers. Important: note that the variable time runs from left to right, with lower values representing older samples. The model relies on the following set of assumptions:

  • The spatial structure of the population is not important to explain its pollen productivity. This is an operative assumption, to speed-up model execution.

  • The environmental niche of the species follows a Gaussian distribution, characterized by a mean (niche optimum, also niche position) and a standard deviation (niche breadth or tolerance).

  • Different drivers can have a different influence on the species dynamics, and that influence can be defined by the user by tuning the weights of each driver.

  • Environmental suitability, expressed in the range [0, 1], is the result of an additive function of the species niches (normal function defined by the species' mean and standard deviation for each driver), the drivers' values, and the relative influence of each driver (driver weights).

  • Pollen productivity is a function of the individual's biomass and environmental suitability, so under a hypothetical constant individual's biomass, its pollen production depends linearly on environmental suitability values.

  • Effective fecundity is limited by environmental suitability. Low environmental suitability values limit recruitment, acting as an environmental filter. Therefore, even though the fecundity of the individuals is fixed by the fecundity parameter, the overall population fecundity is limited by environmental suitability.

Usage

simulatePopulation(
  parameters=NULL,
  species="all",
  driver.A=NULL,
  driver.B=NULL,
  drivers=NULL,
  burnin=TRUE
  )

Arguments

parameters

dataframe with parameters.

species

if "all" or "ALL", all species in "parameters" are simulated It also accepts a vector of numbers representing the rows of the selected species, or a vector of names of the selected species.

driver.A

numeric vector with driver values. Typically produced by simulateDriver.

driver.B

numeric vector with driver values. Typically produced by simulateDriver. Must have same length as driver.A.

drivers

dataframe with drivers produced by simulateDriverS. It should have the columns:

  • time integer.

  • driver character, values are A and B

  • autocorrelation.length numeric, values are 200, 600, and 1800.

  • value numeric, value of the driver for the given time.

burnin

boolean, generates a warming-up period for the population model of a length of five times the maximum age of the virtual taxa.

Details

The model starts with a population of 100 individuals with random ages, in the range [1, maximum age], taken from a uniform distribution (all ages are equiprobable). For each environmental suitability value, including the burn-in period, the model performs the following operations:

  • Aging: adds one year to the age of the individuals.

  • Mortality due to senescence: individuals reaching the maximum age are removed from the simulation.

  • Local extinction and immigration: If the number of individuals drops to zero, the population is replaced by a "seed bank" of #' 100 individuals with age zero, and the simulation jumps to step 7.. This is intended to simulate the arrival of seeds from nearby regions, and will only lead to population growth if environmental suitability is higher than zero.

  • Plant growth: Applies a plant growth equation to compute the biomass of every individual.

  • Carrying capacity: If maximum population biomass is reached, individuals are iteratively selected for removal according to a mortality risk curve computed by the equation P_{m} = 1 - sqrt(a/A), were Pm is the probability of mortality, a is the age of the given individual, and A is the maximum age reached by the virtual taxa. This curve gives removal preference to younger individuals, matching observed patterns in natural populations.

  • Pollen productivity: In each time step the model computes the pollen productivity (in relative values) of the population using the equation P_{t} = ∑ x_{it} \times max(S_{t}, B), where t is time (a given simulation time step), P is the pollen productivity of the population at a given time, x_i represents the biomass of every adult individual, S is the environmental suitability at the given time, B is the contribution of biomass to pollen productivity regardless of environmental suitability (pollen.control parameter in the simulation, 0 by default). If B equals 1, P is equal to the total biomass sum of the adult population, regardless of the environmental suitability. If B equals 0, pollen productivity depends entirely on environmental suitability values.

  • Reproduction: Generates as many seeds as reproductive individuals are available multiplied by the maximum fecundity and the environmental suitability of the given time.

The model returns a table with climatic suitability, pollen production, and population size (reproductive individuals only) per simulation year. Figure 10 shows the results of the population model when applied to the example virtual species.

Value

A list of dataframes, each one of them with the results of one simulation. The dataset simulation exemplifies the output of this function. Each dataframe in the output list has the columns:

  • Time integer, ages in years. Negative ages indicate the burn-in period.

  • Pollen numeric, pollen counts

  • Population.mature numeric, number of mature individuals.

  • Population.immatre numeric, number of immature individuals.

  • Population.viable.seeds numeric, number of viable seeds generated each year.

  • Suitability numeric, environmental suitability computed from the driver by the normal function/s defining the taxon niche.

  • Biomass.total numeric, overall biomass of the population.

  • Biomass.mature numeric, sum of biomass of mature individuals.

  • Biomass.immature numeric, sum of biomass of immature individuals.

  • Mortality.mature numeric, number of mature individuals dead each year.

  • Mortality.immature numeric, same as above for immature individuals.

  • Driver.A numeric, values of driver A.

  • Driver.B numeric, values of driver B, if available, and NA otherwise.

  • Period qualitative, with value "Burn-in" for burn-in period, and "Simulation" otherwise.

Author(s)

Blas M. Benito <blasbenito@gmail.com>

See Also

parametersDataframe, fixParametersTypes, plotSimulation

Examples


#getting data
data(parameters)
data(driverA)

#simulating population dynamics
# of first taxon in parameters
# for first 500 values of driverA
sim.output <- simulatePopulation(
 parameters=parameters[1,],
 driver.A=driverA[1:500]
 )

#checking output
str(sim.output)


virtualPollen documentation built on March 18, 2022, 6:16 p.m.