forestgap: Forest gap model

Description Usage Arguments Format Details Author(s) References See Also Examples

Description

Dynamic model for forest pattern after recurring wind disturbance with two cell states: empty ("0") and vegetated ("+").

Usage

1
ca(l, forestgap, parms = p)

Arguments

alpha

A numerical value. Reproduction rate per year.

delta

A numerical value. Death rate depending on local gap density.

d

A numerical value. intrinsic death rate.

Format

An object of class ca_model of length 6.

Details

This model can use either an explicit height for trees, in which case states can be anywhere in a range [Smin...Smax] (Solé et al., 1995), or use only two states, vegetated (non-gap) and empty (gap) (Kubo et al., 1996). Here we focus on the version that uses only two states: gap (0) and non-gap (+). Without spatial spreading of disturbance (all cells are independent), a cell transitions from empty to vegetated with a birth probability b and from vegetated to empty with death probability d.

However, gap expansion occurs in nature as trees having empty (non-vegetated) surroundings are more likely to fall due to disturbance (e.g. wind blows). Let p(0) be the proportion of neighbouring sites that are gaps. We can implement this expansion effect by modifying the death rate into d + delta p(0). Since 0 <= p(0) <= 1, delta represents the maximal added death rate due to gap expansion (i.e. the spatial component intensity).

In their simulations, the authors (Kubo et al. 1996) use a 100x100 torus-type lattice (with random initial covers?).

The authors consider two cases: one in which the recovery of trees is proportional to the global density of vegetated sites, and one where the recovery is proportional to the local density of vegetation. We use only the first case as it the only one producing bistability.

The birth rate b is replaced with alpha rho+ where rho+ represents the global density of non-gap sites and alpha is a positive constant. This can produce alternative stable states over a range of delta values within 0.15-0.2(alpha is fixed to 0.20 and d to 0.01).

The state transition probabilities thus become:

b = alpha rho+

and

d = d_0 + delta p_0

Author(s)

Kubo, T., Y. Iwasa and N. Furumoto.

References

Kubo, T. et al. (1996) Forest spatial dynamics with gap expansion: total gap area and gap size distribution. J. Theor. Biol. 180, 229–246

Kizaki, S. and Katori, M. (1999) Analysis of canopy-gap structures of forests by Ising–Gibbs states – Equilibrium and scaling property of real forests. J. Phys. Soc. Jpn 68, 2553–2560

Katori, M. (1998) Forest dynamics with canopy gap expansion and stochastic Ising model. Fractals 6, 81–86

Solé, R.V. and Manrubia, S.C. (1995) Self-similarity in rain forests: evidence for a critical state. Phys. Rev. E. 51, 6250–6253

Solé, R.V. and Manrubia, S.C. (1995) Are rainforests self-organized in a critical state? J. Theor. Biol. 173, 31–40

See Also

Other models: grazing, life, livestock, musselbed, predprey

Examples

1
2
3
4
5
6
l <- init_landscape(c("+","0"), c(0.6,0.4), width = 100) # create initial landscape
p <- list(alpha = 0.2, delta = 0.17, d = 0.01)   # set parameters
r <- ca(l, model = forestgap, parms = p, t_max = 100)    # run simulation

r
plot(r)

fdschneider/caspr documentation built on May 16, 2019, 12:12 p.m.