double_triangle: Compute the degree day from temperature data.

View source: R/double_triangle.R

double_triangleR Documentation

Compute the degree day from temperature data.

Description

double_triangle Computes the degree days from temperature data, using interpolation from min and max temperature.

Usage

double_triangle(min_temp, max_temp, min_temp_lag, t_L, t_U)

Arguments

min_temp

Minimum daily temperature

max_temp

Maximum daily temperature

min_temp_lag

The next day's minimum daily temperature

t_L

Lower bound on the temperature

t_U

Upper bound on the temperature

Value

Degree day from the list of numbers.

Source

http://biomet.ucdavis.edu/DegreeDays/DegDay.htm

See Also

For the equations to compute the degree day: http://ipm.ucanr.edu/WEATHER/dddt_tbl.html. Because this is done over a 12 day period, we have an extra minimum temperature to compute

Examples


double_triangle(10,15,12,11,16)

jmzobitz/degreeDay documentation built on Feb. 1, 2025, 5:34 p.m.