diurnal_temp_variation_sinesqrt {TrenchR}R Documentation

Hourly Temperature Variation using Sine and Square Root Functions

Description

The function estimates temperature for a specified hour using sine and square root functions (Cesaraccio et al. 2001).

Usage

diurnal_temp_variation_sinesqrt(t, t_r, t_s, T_max, T_min, T_minp)

Arguments

t

numeric hour or hours for temperature estimate.

t_r, t_s

numeric sunrise and sunset hours (0-23).

T_max, T_min

numeric maximum and minimum temperatures of current day (C).

T_minp

numeric minimum temperature of following day (C).

Value

numeric temperature (C) at a specified hour.

References

Cesaraccio C, Spano D, Duce P, Snyder RL (2001). “An improved model for determining degree-day values from daily temperature data.” International Journal of Biometeorology, 45, 161-169. doi: 10.1007/s004840100104.

See Also

Other microclimate functions: air_temp_profile_neutral(), air_temp_profile_segment(), air_temp_profile(), degree_days(), direct_solar_radiation(), diurnal_radiation_variation(), diurnal_temp_variation_sineexp(), diurnal_temp_variation_sine(), monthly_solar_radiation(), partition_solar_radiation(), proportion_diffuse_solar_radiation(), solar_radiation(), surface_roughness(), wind_speed_profile_neutral(), wind_speed_profile_segment()

Examples

  diurnal_temp_variation_sinesqrt(t      = 8, 
                                  t_r    = 6, 
                                  t_s    = 18, 
                                  T_max  = 30, 
                                  T_min  = 10, 
                                  T_minp = 12)


[Package TrenchR version 1.1.1 Index]