Tground: Estimates ground temperature from ambient temperature and solar radiation.
Description
Estimates ground temperature from ambient temperature and solar radiation.
Usage
Tground(Ta = 20, SE = 100)
Arguments
Ta
Air temperature (degrees Celsius). Default is 20.
SE
Solar energy (radiation in W per m2). Default is 100.
Value
Returns a vector of one, with an estimate of ground temperature.
Details
If ground temperature is not measured, but air temperature and solar energy are provided, ground temperature can be estimated from empirical relationships. Ground temperature is used in obtain incoming longwave radiation from the ground.
References
Bartlett et al. 2006. A decade of ground-air temperature tracking at emigrant pass observatory, Utah. Journal of Climate. 19: 3722-3731.
# NOT RUN {# Example:Ta<-25SE<-200Tground(Ta, SE)
# For detailed examples and explanations, see:# https://github.com/gtatters/Thermimage/blob/master/HeatTransferCalculations.md# }