View source: R/growth_models.R
gompertzm_fun | R Documentation |
Simulate growth according to the Gompertz modified growth model
gompertzm_fun(LOG10N0, LOG10Nmax, mumax, lag, t)
LOG10N0 |
(numeric) log 10 initial biomass density |
LOG10Nmax |
(numeric) log 10 maximum biomass density |
mumax |
(numeric) maximum specific growth rate |
lag |
(numeric) lag phase in time units |
t |
(numeric) discrete time points |
(numeric) vector of modeled log10 biomass corresponding to input time points
# simulate growth according to the Gompertz modified growth model # for a growth period of 100 hours biomass <- gompertzm_fun( LOG10N0 = -1, LOG10Nmax = 1, mumax = 0.1, lag = 10, t = 0:100) # plot time versus biomass plot(0:100, biomass)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.