Learn R Programming

ChillModels (version 1.0.2)

pcu_model: Positive Chill Units - PCU

Description

Quantifies the chill accumulation by means of converting temperatures to positive chill-units - Modified Utah Model.

Usage

pcu_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-unit for each temperature (TRUE is default).

Value

The function returns values the chill-units for each temperature of vector.

Details

The PCU Model is the modified Utah Model. When the temperature is above 15.9<U+00B0>C, the chill-unit is 0. This modification was made because when the Utah model is applied in warm conditions, accumulation becomes negative.

References

Richardson, E. A. et al. 1974. "A Model for Estimating the Completation of Rest for 'Redhaven' and 'Elberta' Peach Trees". Research Reports & Notes.

Linsley-Noakes, G. C. et al. 1995. "Estimating daily positive Utah Chill units using daily minimum and maximum temperatures".

Examples

Run this code
# NOT RUN {
x <- rnorm(500, 15, 4)
pcu_model(x)
pcu_model(x, FALSE)

# }

Run the code above in your browser using DataLab