Metadata-Version: 1.2
Name: pythermalcomfort
Version: 1.2.2
Summary: Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adaptive) and convert physical variables. Please cite us if you use this package: Tartarini, F., Schiavon, S., 2020. pythermalcomfort: A Python package for thermal comfort research. SoftwareX 12, 100578. https://doi.org/10.1016/j.softx.2020.100578
Home-page: https://github.com/CenterForTheBuiltEnvironment/pythermalcomfort
Author: Federico Tartarini
Author-email: cbecomforttool@gmail.com
License: MIT
Project-URL: Documentation, https://pythermalcomfort.readthedocs.io/
Project-URL: Changelog, https://pythermalcomfort.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/CenterForTheBuiltEnvironment/pythermalcomfort/issues
Description: ========
        Overview
        ========
        
        
        
        Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adaptive) and convert physical variables.
        
        Please cite us if you use this package: `Tartarini, F., Schiavon, S., 2020. pythermalcomfort: A Python package for thermal comfort research. SoftwareX 12, 100578. https://doi.org/10.1016/j.softx.2020.100578 <https://www.sciencedirect.com/science/article/pii/S2352711020302910>`_
        
        * Free software: MIT license
        
        Installation
        ============
        
        ::
        
            pip install pythermalcomfort
        
        You can also install the in-development version with::
        
            pip install https://github.com/CenterForTheBuiltEnvironment/pythermalcomfort/archive/master.zip
        
        
        Documentation
        =============
        
        
        https://pythermalcomfort.readthedocs.io/
        
        
        Examples and Tutorials
        ======================
        
        `Examples`_ files on how to use some of the functions
        
        .. _Examples: https://github.com/CenterForTheBuiltEnvironment/pythermalcomfort/tree/master/examples
        
        YouTube `tutorials`_ playlist
        
        .. _tutorials: https://www.youtube.com/playlist?list=PLY91jl6VVD7zMaJjRVrVkaBtI56U7ztQC
        
        
        Contributing
        ============
        
        Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. Click `here`_  to learn more on how to contribute to the project.
        
        .. _here: https://pythermalcomfort.readthedocs.io/en/latest/contributing.html
        
        
        
        Changelog
        =========
        
        1.2.2 (2020-08-21)
        ------------------
        
        * Changed default diameter in t_mrt
        * Improved documentation
        
        
        1.2.0 (2020-07-29)
        ------------------
        
        * Significantly improved calculation speed using numba. Wrapped set and pmv functions
        
        1.0.6 (2020-07-24)
        ------------------
        
        * Minor speed improvement changed math.pow with **
        * Added validation PMV validation table from ISO 7730
        
        1.0.4 (2020-07-20)
        ------------------
        
        * Improved speed calculation of the Cooling Effect
        * Bisection has been replaced with Brentq function from scipy
        
        1.0.3 (2020-07-01)
        ------------------
        
        * Annotated variables in the SET code.
        
        1.0.2 (2020-06-11)
        ------------------
        
        * Fixed an error in the bisection equation used to calculated Cooling Effect.
        
        
        1.0.0 (2020-06-09)
        ------------------
        
        * Major stable release.
        
        0.7.0 (2020-06-09)
        ------------------
        
        * Added equation to calculate the dynamic clothing insulation
        
        0.6.3 (2020-04-11)
        ------------------
        
        * Fixed error in calculation adaptive ASHRAE
        * Added some examples
        
        0.6.3 (2020-03-17)
        ------------------
        
        * Renamed function to_calc to t_o
        * Fixed error calculation of relative air velocity
        * renamed input parameter ta to tdb
        * Added function to calculate mean radiant temperature from black globe temperature
        * Added function to calculate solar gain on people
        * Added functions to calculate vapour pressure, wet-bulb temperature, dew point temperature, and psychrometric data from dry bulb temperature and RH
        * Added authors
        * Added dictionaries with reference clo and met values
        * Added function to calculate enthalpy
        
        0.5.2 (2020-03-11)
        ------------------
        
        * Added function to calculate the running mean outdoor temperature
        
        0.5.1 (2020-03-06)
        ------------------
        
        * There was an error in version 0.4.2 in the calculation of PMV and PPD with elevated air speed, i.e. vr > 0.2 which has been fixed in this version
        * Added function to calculate the cooling effect in accordance with ASHRAE
        
        0.4.1 (2020-02-17)
        ------------------
        
        * Removed compatibility with python 2.7 and 3.5
        
        0.4.0 (2020-02-17)
        ------------------
        
        * Created adaptive_EN, v_relative, t_clo, vertical_tmp_gradient, ankle_draft functions and wrote tests.
        * Added possibility to decide with measuring system to use SI or IP.
        
        0.3.0 (2020-02-13)
        ------------------
        
        * Created set_tmp, adaptive_ashrae, UTCI functions and wrote tests.
        * Added warning to let the user know if inputs entered do not comply with Standards applicability limits.
        
        0.1.0 (2020-02-11)
        ------------------
        
        * Created pmv, pmv_ppd functions and wrote tests.
        * Documented code.
        
        0.0.0 (2020-02-11)
        ------------------
        
        * First release on PyPI.
        
Keywords: thermal comfort,pmv,ppd,building design,compliance,thermal environment,buit environment
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Python: >=3.6.*
