BASE
In this exercise, we will investigate successional models with disturbance. In the exercise about coexistence between two populations, we have simulated disturbance by using an extinction rate. Let's start with that model, and assess what happens to coexistence when the disturbance is amplified.
Let's first remember the model we used in the Metapopulation coexistence exercise. We were studying two species, one being the best competitor (which was able to colonize patches already occupied by the other species), and one that was only able to colonize empty patches. The variation in the patch occupancy is given by:
(df1)/dt=i1f1(1−f1)−pef1 (df2)/dt=i2f2(1−f1−f2)−i1f1f2−pef2
Where:
A necessary condition for the persistence of species 2 was:
e/i(1)>i(1)/i(2)
Let's remember the parameters that can be changed:
option | parameter | effect |
---|---|---|
data set | R object | stores the simulation results |
Maximum time | t(max) | number of model iterations to be run |
columns | n(col) | number of columns in the habitat |
rows | n(rows) | number of rows in the habitat |
Best Competitor | Parameters for the best competitor | |
initial occupancy | fi1 | proportion of initial patch occupancy by species 1 |
colonization coef. | i1 | colonization coefficient for sp1 |
Inferior Competitor | Parameters for the inferior competitor | |
initial occupancy | fi2 | proportion of initial patch occupancy by species 2 |
colonization coef. | i2 | colonization coefficient for sp2 |
Both Species | Parameters shared by both species | |
prob. extinction | pe | extinction probability |
Habitat Destruction | D | proportion of patches not available |
Show simulation frames | anima=TRUE | should every step be graphically animated? |
Let's simulate an increase in the extinction probability, by keeping the following parameters fixed:
tmax=100; ncol=100; nrow=100; fi1=0.1; fi2=0.1; i1=0.4; i2=0.8; D=0; anima=FALSE
Now use the following extinction probabilities to simulate an increase in disturbance:
- pe = 0.1
- pe = 0.2
- pe = 0.25
- pe = 0.3
- pe = 0.4
- pe = 0.5