wbgt.Bernard | R Documentation |
Calculation of wet bulb globe temperature from air temperature and dew point temperature. This corresponds to the implementation for indoors or shadow conditions.
wbgt.Bernard(tas, dewp, tolerance = 1e-04, noNAs = TRUE, swap = FALSE)
tas |
vector of air temperature in degC. |
dewp |
vector of dew point temperature in degC. |
tolerance |
(optional): tolerance value for the iteration. Default: 1e-4. |
noNAs |
logical, should NAs be introduced when dewp>tas? If TRUE specify how to deal in those cases (swap argument) |
swap |
logical, should |
Based on Lemke and Kjellstrom 2012, using the formulation from Bernard et al. 1999.
A list of:
$data: wet bulb globe temperature in degC.
$Tpwb: phychrometric wet bulb temperature (Tpwb) in degC.
A.Casanueva, P. Noti, J. Bhend (21.02.2017).
## Not run: # load the meteorological variables for example data in Salamanca: data("data_obs") wbgt.indoors <- wbgt.Bernard(tas=data_obs$tasmean, dewp=data_obs$dewp) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.