powered by
Gompertz growth model written as analytical solution of the differential equation system.
grow_gompertz(time, parms)
vector of dependent variable (y)
y
vector of time steps (independent variable).
named parameter vector of the Gompertz growth model with:
y0 initial value of abundance,
y0
mumax maximum growth rate (1/time),
mumax
K maximum abundance (carrying capacity).
K
The equation used here is: $$y = K * exp(log(y0 / K) * exp(-mumax * time))$$
Tsoularis, A. (2001) Analysis of Logistic Growth Models. Res. Lett. Inf. Math. Sci, (2001) 2, 23-46.
Other growth models: grow_baranyi(), grow_exponential(), grow_gompertz2(), grow_huang(), grow_logistic(), grow_richards(), growthmodel, ode_genlogistic(), ode_twostep()
grow_baranyi()
grow_exponential()
grow_gompertz2()
grow_huang()
grow_logistic()
grow_richards()
growthmodel
ode_genlogistic()
ode_twostep()
time <- seq(0, 30, length=200) y <- grow_gompertz(time, c(y0=1, mumax=.2, K=10))[,"y"] plot(time, y, type="l", ylim=c(0, 20))
Run the code above in your browser using DataLab