gompertzm_fun: Modified Gompertz growth model

View source: R/growth_models.R

gompertzm_funR Documentation

Modified Gompertz growth model

Description

Simulate growth according to the Gompertz modified growth model

Usage

gompertzm_fun(LOG10N0, LOG10Nmax, mumax, lag, t)

Arguments

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

Value

(numeric) vector of modeled log10 biomass corresponding to input time points

Examples


# 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)


m-jahn/R-tools documentation built on Feb. 5, 2023, 1:05 p.m.