Joint-thermoregulation system, JOS-3
Project description
JOS-3
JOS-3 is a model to simulate a human thermoregulation.
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
Note
Please also check pythermalcomfort : F. Tartarini, S. Schiavon, pythermalcomfort: A Python package for thermal comfort research, SoftwareX (2020), doi: https://doi.org/10.1016/j.softx.2020.100578 .
Requirement
- python3
- numpy
Installation
pip install jos3
If you have not installed numpy in your environment, do the following.
pip install numpy
Usage
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]
# Show the results
import pandas as pd
df = pd.DataFrame(model.dict_results()) # Make pandas.DataFrame
df.TskMean.plot() # Show the graph of mean skin temp.
# Exporting the results as csv
model.to_csv(folder="C:/Users/takahashi/Desktop")
# Show the documentaion of the output parameters
print(jos3.show_outparam_docs())
# Check basal metabolic rate [W/m2] using Getters
model.BMR
Author
- Yoshito Takahashi
- Finished master's degree at Tanabe Laboratory, Waseda University
- takahashiyoshito64@gmail.com
License
jos3 is under MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jos3-0.4.0.tar.gz.
File metadata
- Download URL: jos3-0.4.0.tar.gz
- Upload date:
- Size: 27.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b0d610537e529782e446f9c222cf7cbcd9a1636f7c1c54e7d00746266d632be
|
|
| MD5 |
68c36ee242f014f4dee475229d70194c
|
|
| BLAKE2b-256 |
2cf99950378db01f8c0031c20cf621b9d11d34c199888480c12048689f9322db
|
File details
Details for the file jos3-0.4.0-py3-none-any.whl.
File metadata
- Download URL: jos3-0.4.0-py3-none-any.whl
- Upload date:
- Size: 27.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
542b28bba045ef8c59ad920462ed06fe9d9aebca43f2fc162232b2fa955ac327
|
|
| MD5 |
78902fe69acf83e0eefc75cd4e3ba286
|
|
| BLAKE2b-256 |
f7213d4921a192269be280f9726520126cd9268ca0d758c2c6b9aef1c5f3afd3
|