dynamic_model {ChillModels} | R Documentation |
Dynamic Model
Description
Quantifies the chill accumulation with dynamic equation (two-steps).
Usage
dynamic_model(x, total = TRUE)
Arguments
x |
Vector containing temperature values (Celsius-degree). |
total |
TRUE Shows the total value of accumulation, FALSE shows the value of chill for each temperature (TRUE is default). |
Details
The model is based on dynamic accumulation, by means of the relationship between temperatures. The dynamic model assumes that the accumulated chill-units are not annulled by high temperatures.
Value
The function returns values the chill for each temperature of vector (Total = FALSE), or returns the chill accumulation (Total = TRUE).
Note
Code adapted from the function Dynamic_Model
, of the chillR Package
References
FISHMAN, Svetlana, EREZ, A. & COUVILLON, G. A. (1987). The Temperature Dependence of Dormancy Breaking in Plants: Computer Simulation of Processes Studied Under Controlled Temperatures. J. Theor. Biol.
LUEDELING, Eike (2018). chillR: Statistical Methods for Phenology Analysis in Temperate Fruit Trees. R package version 0.70.12. https://CRAN.R-project.org/package=chillR
Examples
x <- rnorm(500, 10, 5)
dynamic_model(x)
dynamic_model(x, FALSE)