Skip to content

Commit

Permalink
Including Brode 2012 article in the reference and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
profesorpaiche committed Feb 7, 2024
1 parent 3f4c9b4 commit 9887307
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
16 changes: 16 additions & 0 deletions docs/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2098,3 +2098,19 @@ @article{thom_1958
abstract = {Abstract The general properties of the gamma distribution, which has several applications in meteorology, are discussed. A short review of the general properties of good statistical estimators is given. This is applied to the gamma distribution to show that the maximum likelihood estimators are jointly sufficient. A new, simple approximation of the likelihood solutions is given, and the efficiency of the fitting procedure is computed.},
chapter = {Monthly Weather Review},
}

@article{brode_utci_2012,
author = {Bröde, Peter and Fiala, Dusan and Błażejczyk, Krzysztof and Holmér, Ingvar and Jendritzky, Gerd and Kampmann, Bernhard and Tinz, Birger and Havenith, George},
title = {Deriving the operational procedure for the Universal Thermal Climate Index (UTCI)},
journal = {International Journal of Biometeorology},
year = {2012},
month = {May},
day = {01},
volume = {56},
number = {3},
pages = {481-494},
abstract = {The Universal Thermal Climate Index (UTCI) aimed for a one-dimensional quantity adequately reflecting the human physiological reaction to the multi-dimensionally defined actual outdoor thermal environment. The human reaction was simulated by the UTCI-Fiala multi-node model of human thermoregulation, which was integrated with an adaptive clothing model. Following the concept of an equivalent temperature, UTCI for a given combination of wind speed, radiation, humidity and air temperature was defined as the air temperature of the reference environment, which according to the model produces an equivalent dynamic physiological response. Operationalising this concept involved (1) the definition of a reference environment with 50{\%} relative humidity (but vapour pressure capped at 20 hPa), with calm air and radiant temperature equalling air temperature and (2) the development of a one-dimensional representation of the multivariate model output at different exposure times. The latter was achieved by principal component analyses showing that the linear combination of 7 parameters of thermophysiological strain (core, mean and facial skin temperatures, sweat production, skin wettedness, skin blood flow, shivering) after 30 and 120 min exposure time accounted for two-thirds of the total variation in the multi-dimensional dynamic physiological response. The operational procedure was completed by a scale categorising UTCI equivalent temperature values in terms of thermal stress, and by providing simplified routines for fast but sufficiently accurate calculation, which included look-up tables of pre-calculated UTCI values for a grid of all relevant combinations of climate parameters and polynomial regression equations predicting UTCI over the same grid. The analyses of the sensitivity of UTCI to humidity, radiation and wind speed showed plausible reactions in the heat as well as in the cold, and indicate that UTCI may in this regard be universally useable in the major areas of research and application in human biometeorology.},
issn = {1432-1254},
doi = {10.1007/s00484-011-0454-1},
url = {https://doi.org/10.1007/s00484-011-0454-1}
}
7 changes: 4 additions & 3 deletions xclim/indices/_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -1820,8 +1820,9 @@ def universal_thermal_climate_index(
their validity ranges : -50°C < tas < 50°C, -30°C < tas - mrt < 30°C
and 0.5 m/s < sfcWind < 17.0 m/s.
wind_cap_min: bool
If True, low wind velocities are capped to a minimum of 0.5 m/s. This ensures
UTCI calculation for low winds. Default value False.
If True, wind velocities are capped to a minimum of 0.5 m/s following
:cite:t:`brode_utci_2012` usage guidalines. This ensures UTCI calculation
for low winds. Default value False.
Returns
-------
Expand All @@ -1841,7 +1842,7 @@ def universal_thermal_climate_index(
References
----------
:cite:cts:`brode_utci_2009,blazejczyk_introduction_2013`
:cite:cts:`brode_utci_2009,brode_utci_2012,blazejczyk_introduction_2013`
"""
e_sat = saturation_vapor_pressure(tas=tas, method="its90")
tas = convert_units_to(tas, "degC")
Expand Down

0 comments on commit 9887307

Please sign in to comment.