Universal Thermal Climate Index (UTCI) in Python - pythermalcomfort

Поделиться
HTML-код
  • Опубликовано: 18 окт 2024
  • How to calculate the Universal Thermal Climate Index (UTCI) in Python using the pythermalcomfort package.
    Please cite us if you use this package: Tartarini, F., Schiavon, S., 2020. pythermalcomfort: A Python package for thermal comfort research. SoftwareX 12, 100578. doi.org/10.101...
    ✅ Subscribe for more videos like this one
    🔔 Click on the bell icon to be notified when I release a new video
    👍 Please like my video!
    ⚠️ Join my channel to get access to perks: / @federicotartarini
    🙏 Support my channel on Patreon at / federicotartarini
    ☕ Support my channel by buying me a coffee - www.buymeacoff...
    🎥 Playlists you may find useful:
    ➜ Beamer LaTeX course:
    • LaTeX Beamer
    ➜ Full LaTeX course:
    • LaTeX
    ➜ PyCharm course:
    • PyCharm
    ➜ Building a documentation website with Docusaurus:
    • Docusaurus
    🎥 Videos you may find useful:
    ➜ Build and deploy a documentation website using Docusaurus 2: • Build and deploy a doc...
    ➜ Add a glossary to your document containing terms and acronyms: • Add a glossary to your...
    ➜ Write a paper using the Elsevier template: • How to Get Started and...
    ➜ Overleaf and GitHub integration: • Overleaf and GitHub in...
    ➜ Review a document in Overleaf: • Review a document in O...
    ➜ Export citations from Mendeley into LaTeX: • Export citations from ...
    ➜ Pandas DataFrame to LaTeX table: • Pandas DataFrame to La...
    ➜ How to use git and GitHub with PyCharm: • How to use git and Git...
    ➜ Use Grammarly in Overleaf ✍️: • Use Grammarly in Overl...
    ➜ TeXiFy - PyCharm IntelliJ LaTeX plug-in: • TeXiFy - PyCharm Intel...
    ➜ Nomenclature in LaTeX document: • Nomenclature in LaTeX ...
    ➜ Why you should start using LaTeX now!!: • 10 Reasons Why You Sho...
    ✅ Let's connect:
    🌍 My website - federicotartar...
    💻 GitHub - github.com/Fed...
    Twitter - / federicotartar1
    LinkedIn - / federico-tartarini
    👨‍💻 Source code -- Download the source code here:
    github.com/Cen...
    🔣 Keywords:
    #utci #pythermalcomfort #python #ThermalComfort

Комментарии • 4

  • @joannito
    @joannito Год назад

    thank you

  • @eduardogasconalvarez617
    @eduardogasconalvarez617 4 года назад

    Thank you for the tutorial! I wanted to ask: why are the limits for both wind speed and radiant temperature different from the UTCI calculator available in utci.org? I would like to introduce low values of wind speed and/or high values of radiant temperature - to account for solar radiation - and keep getting the "applicability limits" error.

    • @FedericoTartarini
      @FedericoTartarini  4 года назад

      Could you please share more info (for example which input you used) with me and perhaps open a new issue on GitHub: github.com/CenterForTheBuiltEnvironment/pythermalcomfort/issues
      The link to the UTCI website utci.org is broken and I cannot access it. However, in the pythermalcomfort the only limits that are currently set for the UTCI model are the following.
      if params["standard"] == "utci":
      for key, value in params.items():
      if key == "v":
      if value > 17:
      warnings.warn(
      "UTCI wind speed applicability limits between 0.5 and 17 m/s",
      UserWarning,
      )
      elif value < 0.5:
      warnings.warn(
      "UTCI wind speed applicability limits between 0.5 and 17 m/s",
      UserWarning,
      )
      In other words, if you enter a value of air speed lower than 0.5 m/s or higher than 17 m/s you get a warming. This, however, should be just a warning and not an error. I got these values from the UTCI code.