Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2018-04-02 | 2.0 kB | |
PYroMat-2.0.6.tar.gz | 2018-04-02 | 344.2 kB | |
PYroMat-2.0.6.zip | 2018-04-02 | 499.9 kB | |
PYroMat-2.0.6-py2.py3-none-any.whl | 2018-04-02 | 513.3 kB | |
Totals: 4 Items | 1.4 MB | 0 |
PYroMat
Thermodynamic tools for Python
By Chris Martin crm28@psu.edu
PYroMat is a flexible platform for conveniently working with thermodynamic data. The expanding collection of substances includes data for the properties people need most, exposed in an intuitively designed object interface Come read more.
Installation from the Python Package Index
If you have pip installed, you can install PYroMat with a single command.
$ pip install pyromat
If you are upgrading, you can always use
$ pip install pyromat --upgrade
Manual Installation
If you want to install from the GitHub distribution, navigate into the root distribution directory. Execute the command as an administrator
$ python setup.py install
See the introduction of the documentation for more information!
Configuration
See pyro/defaults.py for a heavily commented example of a PYro configuration.
See the configuration chapter of the documentation for detailed descriptions of each parameter.
Getting started
>>> import pyromat as pm
>>> O2 = pm.get('ig.O2')
>>> h = O2.h(492,1.01) # enthalpy at 492K, 1.01bar
>>> pm.info('O2') # where did these data come from?
>>> dir(O2) # what other methods are available?
>>> pm.info() # what other species are available? (lots)
Happy calculating!
License
Copyright (c) 2018 Christopher R. Martin
PYroMat is released under the GNU General Public License v3.0.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.