We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Here are the differences we have identified:
Wind Chill Index (WCI)
Wind Chill Temperature (TWC)
wci = (10.45 + 10 * v**0.5 - v) * (33 - tdb)
The result is calculated in W/m² and considers the heat loss from a cylindrical flask.
twc = 13.12 + 0.6215 * ta - 11.37 * (v^0.16) + 0.3965 * ta * (v^0.16)
The result is given in °C, representing the localized cooling effect on skin due to wind.
@FedericoTartarini and Marcel to review Should we make modifications to the corresponding function file calcTWC.R in the R package?
The text was updated successfully, but these errors were encountered:
I believe that these two parameters sound similar, but are actually different concepts. py seems to refer to AHSRAE, while R to ISO
Sorry, something went wrong.
FedericoTartarini
No branches or pull requests
Describe the bug
Here are the differences we have identified:
Wind Chill Index (WCI)
in PythonWind Chill Temperature (TWC)
in RWind Chill Index (WCI)
in PythonIn Python, the function is link:
The result is calculated in W/m² and considers the heat loss from a cylindrical flask.
Wind Chill Temperature (TWC)
in RIn R, the function is link:
The result is given in °C, representing the localized cooling effect on skin due to wind.
@FedericoTartarini and Marcel to review
Should we make modifications to the corresponding function file calcTWC.R in the R package?
The text was updated successfully, but these errors were encountered: