q10_bidabe {ChillModels} | R Documentation |
Bidabe Model
Description
Quantifies the chill accumulation by means of converting temperatures to temperature coeficients (Q10).
Usage
q10_bidabe(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-unit for each temperature (TRUE is default). |
Details
The model is based on temperature coeficients (Q10). The Q10 coeficient is variable for each specie. The model contains dinamic variables. This model is been aplied in the warm climates. Was based on an exponential function that decreases according to the increase in temperature.
Value
The function returns values for each temperature of vector (Total = FALSE), or returns the accumulation (Total = TRUE).
References
BIDABE, B. 1967. Action de la temperature sur l' evolution des bourgeons de pommier et comparaison de methodes de controle de l' epoque de floraison. Annu. Physiol. Veg.
Examples
x <- rnorm(500, 10, 3)
q10_bidabe(x)
q10_bidabe(x, FALSE)