Unit conversions for E+
Project description
epconversions
Unit conversions for E+
Free software: Mozilla Public License 2.0 (MPL 2.0)
Documentation: https://epconversions.readthedocs.io.
Energyplus has a bunch of conversion factors at the top of the Energy+.idd file. It looks like this:
! Default IP conversions (no \ip-units necessary) ! $/(m3/s) => $/(ft3/min) 0.000472000059660808 ! $/(W/K) => $/(Btu/h-F) 0.52667614683731 ! $/kW => $/(kBtuh/h) 0.293083235638921 ! $/m2 => $/ft2 0.0928939733269818 ! $/m3 => $/ft3 0.0283127014102352 ! (kg/s)/W => (lbm/sec)/(Btu/hr) 0.646078115385742 ! 1/K => 1/F 0.555555555555556 ! 1/m => 1/ft 0.3048 ! A/K => A/F 0.555555555555556 ! C => F 1.8 (plus 32) ! cm => in 0.3937 ! cm2 => inch2 0.15500031000062 ! deltaC => deltaF 1.8 ! deltaC/hr => deltaF/hr 1.8 ! deltaJ/kg => deltaBtu/lb 0.0004299 ! g/GJ => lb/MWh 0.00793664091373665 ! g/kg => grains/lb 7
Note the cm in the middle of that text snippet. It shows the conversion form cm to in and the multipier to use to convert
Features
The library epconversions has functions that will do these conversions:
from epconversions import epconversions print(epconversions.convert2ip(100, 'cm')) >> (39.37, 'in')
Can I convert to SI units ? Yes.:
epconversions.convert2si(100, 'in') >> (254.00050800101602, 'cm')
What if I want only converted value. I don’t want the unit string:
epconversions.convert2si(100, 'in', unitstr=False) >> 254.00050800101602
Nice !!
Why does it convert cm to in. Would it convert to m:
epconversions.convert2si(100, 'in', 'm') >> (2.5399999999999987, 'm') # for clarity epconversions.convert2si(100, 'in', siunit='m') (2.5399999999999987, 'm')
What are all the units it can convert in to ?:
epconversions.getsiunits('in') >> {'cm', 'm'}
How do I know what it converts it to by default?:
epconversions.defaultsiunit('in') >> 'cm' epconversions.defaultsiunit('ft') >> 'm'
What are all the units it can convert?:
epconversions.allsiunits() >> ['$/(m3/s)', '$/(W/K)', <snip> 'A/K', 'C', 'cm', 'cm2', 'deltaC', 'deltaC/hr', 'deltaJ/kg', 'g/GJ', 'g/kg', 'g/MJ', <snip> 'W', 'W/((m3/s)-Pa)', 'W/(m3/s)', 'W/K', 'W/m', 'W/m2', <snip> 'years'] # around 128 now # also try out ``allipunits()``
Thats all for now
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
2024-05-10
fixed issue #16
- Problem:
convert2ip and convert2si do not convert strings to floats
- Solution:
strings are converted to floats if possible
0.1.0 (2023-10-28)
First release on PyPI.
Project details
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
File details
Details for the file epconversions-0.2.1.tar.gz
.
File metadata
- Download URL: epconversions-0.2.1.tar.gz
- Upload date:
- Size: 27.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03905576179974f61d17fec6ed78e08afb2d7d74261c7b66ff903e8394ee58ff |
|
MD5 | fdf687f0fab8a82a6be4a443cdf88ef1 |
|
BLAKE2b-256 | b09a421261ae4c7532c1c5394ec15803734c58e69a575dcb7690cb37e94b5544 |
File details
Details for the file epconversions-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: epconversions-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3435cb680705a6283aa6ef4c4b6c697f40d3a8f69a1ebea39113ba0624bca53 |
|
MD5 | 7bc91105215ce3bdde3e9085f49fa19d |
|
BLAKE2b-256 | 34a9c44e9d6d355c0010591ee0aea5cdb0037f8e2be5502c27990306ffa5c6aa |