The classical logistic-growth model (Kot 2001) assumes that the growth of a population decreases with increasing population size and is given by the following equation,
dNdt=rN×(1−NK) where N is the number (density) of indviduals at time t, K is the carrying capacity of the population, r is the intrinsic growth rate of the population.
This model consists of two reactions, birth and death, whose propensity functions are defined as:
where b is the per capita birth rate and d is the per capita death rate.
Assuming b=2, d=1, K=1000 and X(0)=(500), we can define the following parameters:
library(GillespieSSA2)
<- "Pearl-Verhulst Logistic Growth model"
sim_name <- c(b = 2, d = 1, K = 1000)
params <- 10
final_time <- c(N = 500) initial_state
The reactions (each consisting of a propensity function and a state change vector) can be defined as:
<- list(
reactions reaction("b * N", c(N = +1)),
reaction("(d + (b - d) * N / K) * N", c(N = -1))
)
Run simulations with the Exact method
set.seed(1)
<- ssa(
out initial_state = initial_state,
reactions = reactions,
params = params,
final_time = final_time,
method = ssa_exact(),
sim_name = sim_name
) plot_ssa(out)
Run simulations with the Explict tau-leap method
set.seed(1)
<- ssa(
out initial_state = initial_state,
reactions = reactions,
params = params,
final_time = final_time,
method = ssa_etl(tau = .03),
sim_name = sim_name
) plot_ssa(out)
Run simulations with the Binomial tau-leap method
set.seed(1)
<- ssa(
out initial_state = initial_state,
reactions = reactions,
params = params,
final_time = final_time,
method = ssa_btl(mean_firings = 5),
sim_name = sim_name
) plot_ssa(out)