Empirical_daily_temperature_curve {chillR}R Documentation

Empirical daily temperature curve

Description

This function derives an empirical daily temperature curve from observed hourly temperature data. The mean temperature during each hour of the day is expressed as a function of the daily minimum and maximum temperature. This is done separately for each month of the year. The output is a data.frame that can then be used with the Empirical_hourly_temperatures function to generate hourly temperatures from data on daily minimum (Tmin) and maximum (Tmax) temperatures.

Usage

Empirical_daily_temperature_curve(Thourly)

Arguments

Thourly

data.frame containing hourly temperatures. Must contain columns Year (year of observation), Month (month of observation), Day (day of observation), Hour (hour of observation) and Temp (Observed temperature). If multiple observations within an hour are available, these are averaged.

Value

data.frame containing three columns: Month (month for which coefficient applies), Hour (hour for which coefficient applies) and Prediction_coefficient (the coefficient used for empirical temperature prediction). Coefficients indicate, by what fraction of the daily temperature range the temperature during the specified hour is above the daily minimum temperature.

Author(s)

Eike Luedeling

Examples

 
Empirical_daily_temperature_curve(Winters_hours_gaps)


[Package chillR version 0.75 Index]