Utah_Model function

Calculation of cumulative chill according to the Utah Model

Calculation of cumulative chill according to the Utah Model

This function calculates winter chill for temperate trees according to the Utah Model.

Utah_Model(HourTemp, summ = TRUE)

Arguments

  • HourTemp: Vector of hourly temperatures.
  • summ: Boolean parameter indicating whether calculated metrics should be provided as cumulative values over the entire record (TRUE) or as the actual accumulation for each hour (FALSE).

Returns

Vector of length length(HourTemp) containing the cumulative Utah Chill Units over the entire duration of HourTemp.

Details

Units of the Utah Model are calculated as suggested by Richardson et al. (1974) (different weights for different temperature ranges, and negation of chilling by warm temperatures).

Note

After doing extensive model comparisons, and reviewing a lot of relevant literature, I do not recommend using the Utah Model, especially in warm climates! The Dynamic Model (Chill Portions), though far from perfect, seems much more reliable.

Examples

weather<-fix_weather(KA_weather[which(KA_weather$Year>2006),]) stack<-stack_hourly_temps(weather,latitude=50.4) Utah_Model(stack$hourtemps$Temp)

References

Utah Model reference:

Richardson EA, Seeley SD, Walker DR (1974) A model for estimating the completion of rest for Redhaven and Elberta peach trees. HortScience 9(4), 331-332

Author(s)

Eike Luedeling

  • Maintainer: Eike Luedeling
  • License: GPL-3
  • Last published: 2024-11-14

Useful links