Learn R Programming

ChillModels (version 1.0.2)

dynamic_model: 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).

Value

The function returns values the chill for each temperature of vector (Total = FALSE), or returns the chill accumulation (Total = TRUE).

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.

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

Run this code
# NOT RUN {
x <- rnorm(500, 10, 5)
dynamic_model(x)
dynamic_model(x, FALSE)

# }

Run the code above in your browser using DataLab