Metadata-Version: 2.1
Name: jos3
Version: 0.0.5
Summary: Joint-thermoregulation system, JOS-3
Home-page: https://github.com/TanabeLab/JOS-3
Author: Yoshito Takahashi
Author-email: takahashiyoshito64@gmail.com
License: MIT
Description: # JOS-3
        
        JOS-3 is a model to simulate a human thermoregulation.
        
        Its python package name is "jos3".
        
        The model has been derived from 65MN https://doi.org/10.1016/S0378-7788(02)00014-2 and JOS-2 https://doi.org/10.1016/j.buildenv.2013.04.013 model.
        
        Please cite us if you use this package : Y. Takahashi, A. Nomoto, S. Yoda, R. Hisayama, M. Ogata, Y. Ozeki, S. Tanabe,Thermoregulation Model JOS-3 with New Open Source Code, Energy & Buildings (2020), doi: https://doi.org/10.1016/j.enbuild.2020.110575
        
        # Requirement
         
        * python 3
        * numpy
        
        # Installation
        
        ```bash
        pip install jos3
        
        or
        
        pip install git+https://github.com/TanabeLab/JOS-3.git
        ```
        
        # Usage
        
        ```python
        
        import pandas as pd
        import jos3
        
        model = jos3.JOS3(height=1.7, weight=60, age=30)  # Builds a model
        
        # Set the first condition
        model.To = 28  # Operative temperature [oC]
        model.RH = 40  # Relative humidity [%]
        model.Va = 0.2  # Air velocity [m/s]
        model.PAR = 1.2  # Physical activity ratio [-]
        model.simulate(60)  # Exposre time = 60 [min]
        
        # Set the next condition
        model.To = 20  # Changes only operative temperature
        model.simulate(60)  # Additional exposre time = 60 [min]
        
        df = pd.DataFrame(model.dict_results())  # Make pandas.DataFrame
        df.TskMean.plot()  # Show the graph of mean skin temp.
        ```
        
        ![result](https://raw.githubusercontent.com/TanabeLab/JOS-3/master/example/ex_result.png)
        
        # Author
        
        * Yoshito Takahashi
        * Master's level graduate [Tanabe Laboratory, Waseda University](https://www.tanabe.arch.waseda.ac.jp/en/)
        * takahashiyoshito64@gmail.com
        
        # License
        jos3 is under [MIT license](https://en.wikipedia.org/wiki/MIT_License).
        
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
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 :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
