Hydro-thermal-time model with log-logistic distribution of germination time (Onofri et al., 2018)
Hydro-thermal-time model with log-logistic distribution of germination time (Onofri et al., 2018)
This model relates the time-course of the proportion of germinated seeds to the water potential and temperature in the substrate. It is based on a truncated log-logistic distribution of germination time:
where two of the three usual parameters ('d' and 'e') are expressed as functions of water potential (Ψ) and temperature (T). In the function 'HTTEM()', we implemented the following submodels: (1) for the parameter 'd', we implemented a shifted exponential function:
while, (2) for the parameter 'e' we considered that its inverse corresponds to the median Germination Rate within the population (i.e. 1/e=GR50) and modelled this latter parameter as:
The 'HTTEM.fun()' is a generic function, which can be used for plotting or other applications, while the 'HTTEM()' function is meant to be used for model fitting with the 'drmte()' function in the 'drcte()' package.
Description
This model relates the time-course of the proportion of germinated seeds to the water potential and temperature in the substrate. It is based on a truncated log-logistic distribution of germination time:
P(t)=1+exp[b(log(x)−log(e)]d
where two of the three usual parameters ('d' and 'e') are expressed as functions of water potential (Ψ) and temperature (T). In the function 'HTTEM()', we implemented the following submodels: (1) for the parameter 'd', we implemented a shifted exponential function:
d=G[1−exp(σΨbΨ−Ψb−k(T−Tb))]
while, (2) for the parameter 'e' we considered that its inverse corresponds to the median Germination Rate within the population (i.e. 1/e=GR50) and modelled this latter parameter as:
GR50=θHTT−Tb[Ψ−Ψb−k(T−Tb)]
The 'HTTEM.fun()' is a generic function, which can be used for plotting or other applications, while the 'HTTEM()' function is meant to be used for model fitting with the 'drmte()' function in the 'drcte()' package.
Details
The detail of this time-to-event model and the meaning of parameters are described in Onofri et al. (2018). See Table 2, where 'HTTEM()' is abbreviated as HTTE.
HTTEM()HTTEM.fun(time, Psi, Temp, G, Psib, kt, Tb, sigmaPsib, ThetaHT, b)
Arguments
The 'HTTEM' function has no arguments. The 'HTTEM.fun()' has the following arguments:
time: time
Psi: water potential in the substrate
Temp: temperature
G: maximum germination capability of the seed lot
Psib: base water potential
kt: parameter measuring the effect of temperature on base water potential
Tb: base temperature
sigmaPsib: standard deviation for the base water potential within the seed lot
ThetaHT: hydro-thermal-time parameter
b: shape parameter for the cumulative distribution function of germination time
Returns
The 'HTTEM.fun()' function returns the proportion of germinated seeds, for any given values of time and water potential in the substrate. The 'HTTEM()' function returns a list containing the nonlinear function, the parameter names and other items which are internally used by the 'drmte()' function. At the moment, there is no self-starting function and starting parameters for fitting must be provided within the 'drcte' function.