PYroMat


NamePYroMat JSON
Version 2.2.5 PyPI version JSON
download
home_pagehttp://pyromat.org
SummaryThermodynamic properties in Python.
upload_time2024-09-21 16:38:29
maintainerNone
docs_urlNone
authorChris Martin
requires_pythonNone
licenseGNU General Public License v3 (GPLv3)
keywords thermodynamic properties
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PYroMat

Thermodynamic tools for Python

Originally authored by [Chris Martin](https://sites.psu.edu/cmartin) [crm28@psu.edu](mailto:crm28@psu.edu)  
Co-authored by [Joe Ranalli](https://github.com/jranalli)

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.](http://www.pyromat.org)


[![DOI](https://zenodo.org/badge/70937616.svg)](https://zenodo.org/badge/latestdoi/70937616)

## 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
```
Some of you will want to specify the version of python being used (e.g. on many flavors of Linux)
```
$ python3 -m pip install pyromat
```

## Getting started
```python
>>> import pyromat as pm
>>> O2 = pm.get('ig.O2')
>>> h = O2.h(492,1.01)  # enthalpy at 492K, 1.01bar
>>> pm.info('ig.O2')     # where did these data come from?
>>> pm.config['unit_pressure'] = 'psi'  # Don't like working in bar?
>>> help(pm.search)		# How do I look for more substances?
```

To get up and running quickly, see the [Introductory Tutorial](http://www.pyromat.org/doc_intro.html).  For detailed documentaiton, see the [PYroMat User and Developer Handbook](http://www.pyromat.org/pdf/handbook.pdf).

## Contributing

As an open source project, PYroMat appreciates the participation and engagement of community members.   

**If you think you've found a bug,** please first search in [Issues](https://github.com/chmarti1/PYroMat/issues). If you can't find your bug, feel free to open a new issue where we will discuss how to resolve the problem.

**If you have an idea for a new feature,** we'd love to hear from you!  Many of PYroMat's features came from user requests.  Please feel free to open an new [Discussion](https://github.com/chmarti1/PYroMat/discussions) or open a new [Issue](https://github.com/chmarti1/PYroMat/issues).  You can even [Email Me](mailto:crm28@psu.edu) - I always enjoy hearing from users.

If you wish to contribute by resolving an open issue, please fork the respository as described in the [Github Guide](https://guides.github.com/activities/hello-world/). Please see the full documentation in the [handbook](http://www.pyromat.org/pdf/handbook.pdf) for details of the code structure.  Even if your code isn't pulled verbatim, a number of issues have been resolved from user-inspired solutions.

**To run development tests** found in the `src/test` directory, you can install with the "development" option, which requires the `pytest` package.  
```bash
python -m pip install pyromat[dev]
```
Please be aware:
- PYroMat DOES NOT COME WITH A WARRANTY.  Tests help make the code better, and we work hard to make the code as reliable as we can, but users should always skeptically evaluate these models to ensure they are suitable for their application.  I've never met the test suite yet that catches all errors.
- The behavior and design of the testing suite is not documented.  Unlike the rest of PYroMat, it is subject to change without notice.
- Users coding their own models will need to construct their own validation data from original sources.


## License
Copyright (c) 2015-2024 Christopher R. Martin

PYroMat is released under the GNU [General Public License v3.0](http://www.gnu.org/licenses/gpl-3.0.en.html).

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.


            

Raw data

            {
    "_id": null,
    "home_page": "http://pyromat.org",
    "name": "PYroMat",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "thermodynamic properties",
    "author": "Chris Martin",
    "author_email": "crm28@psu.edu",
    "download_url": "https://files.pythonhosted.org/packages/3d/f0/8b4d646c78784aa1142f39bd7e3b8a715702f1a760d481d3df8d34021141/pyromat-2.2.5.tar.gz",
    "platform": null,
    "description": "# PYroMat\n\nThermodynamic tools for Python\n\nOriginally authored by [Chris Martin](https://sites.psu.edu/cmartin) [crm28@psu.edu](mailto:crm28@psu.edu)  \nCo-authored by [Joe Ranalli](https://github.com/jranalli)\n\nPYroMat 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.](http://www.pyromat.org)\n\n\n[![DOI](https://zenodo.org/badge/70937616.svg)](https://zenodo.org/badge/latestdoi/70937616)\n\n## Installation from the Python Package Index\nIf you have pip installed, you can install PYroMat with a single command.\n```\n$ pip install pyromat \n```\nIf you are upgrading, you can always use\n```\n$ pip install pyromat --upgrade\n```\nSome of you will want to specify the version of python being used (e.g. on many flavors of Linux)\n```\n$ python3 -m pip install pyromat\n```\n\n## Getting started\n```python\n>>> import pyromat as pm\n>>> O2 = pm.get('ig.O2')\n>>> h = O2.h(492,1.01)  # enthalpy at 492K, 1.01bar\n>>> pm.info('ig.O2')     # where did these data come from?\n>>> pm.config['unit_pressure'] = 'psi'  # Don't like working in bar?\n>>> help(pm.search)\t\t# How do I look for more substances?\n```\n\nTo get up and running quickly, see the [Introductory Tutorial](http://www.pyromat.org/doc_intro.html).  For detailed documentaiton, see the [PYroMat User and Developer Handbook](http://www.pyromat.org/pdf/handbook.pdf).\n\n## Contributing\n\nAs an open source project, PYroMat appreciates the participation and engagement of community members.   \n\n**If you think you've found a bug,** please first search in [Issues](https://github.com/chmarti1/PYroMat/issues). If you can't find your bug, feel free to open a new issue where we will discuss how to resolve the problem.\n\n**If you have an idea for a new feature,** we'd love to hear from you!  Many of PYroMat's features came from user requests.  Please feel free to open an new [Discussion](https://github.com/chmarti1/PYroMat/discussions) or open a new [Issue](https://github.com/chmarti1/PYroMat/issues).  You can even [Email Me](mailto:crm28@psu.edu) - I always enjoy hearing from users.\n\nIf you wish to contribute by resolving an open issue, please fork the respository as described in the [Github Guide](https://guides.github.com/activities/hello-world/). Please see the full documentation in the [handbook](http://www.pyromat.org/pdf/handbook.pdf) for details of the code structure.  Even if your code isn't pulled verbatim, a number of issues have been resolved from user-inspired solutions.\n\n**To run development tests** found in the `src/test` directory, you can install with the \"development\" option, which requires the `pytest` package.  \n```bash\npython -m pip install pyromat[dev]\n```\nPlease be aware:\n- PYroMat DOES NOT COME WITH A WARRANTY.  Tests help make the code better, and we work hard to make the code as reliable as we can, but users should always skeptically evaluate these models to ensure they are suitable for their application.  I've never met the test suite yet that catches all errors.\n- The behavior and design of the testing suite is not documented.  Unlike the rest of PYroMat, it is subject to change without notice.\n- Users coding their own models will need to construct their own validation data from original sources.\n\n\n## License\nCopyright (c) 2015-2024 Christopher R. Martin\n\nPYroMat is released under the GNU [General Public License v3.0](http://www.gnu.org/licenses/gpl-3.0.en.html).\n\nThis 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.\n\nThis 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.\n\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3 (GPLv3)",
    "summary": "Thermodynamic properties in Python.",
    "version": "2.2.5",
    "project_urls": {
        "Homepage": "http://pyromat.org"
    },
    "split_keywords": [
        "thermodynamic",
        "properties"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cbf87f077e5ef1950ff23a0d7682b8f9dcbd24b03ac2d99be49f074415e238c",
                "md5": "58d50f13562f976bb0f4cb1b29ec5810",
                "sha256": "30ba33c48019fcadd7a61b3865ec0313fda3c9b58103ff4cc4086b544677c6b1"
            },
            "downloads": -1,
            "filename": "PYroMat-2.2.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "58d50f13562f976bb0f4cb1b29ec5810",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 1029624,
            "upload_time": "2024-09-21T16:38:27",
            "upload_time_iso_8601": "2024-09-21T16:38:27.702967Z",
            "url": "https://files.pythonhosted.org/packages/5c/bf/87f077e5ef1950ff23a0d7682b8f9dcbd24b03ac2d99be49f074415e238c/PYroMat-2.2.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3df08b4d646c78784aa1142f39bd7e3b8a715702f1a760d481d3df8d34021141",
                "md5": "249ba986811942b761899ebb650fb6d3",
                "sha256": "407e7a58fd942c0fac2aef8b3643cd2064dd340e33062115520a6e7a029971a0"
            },
            "downloads": -1,
            "filename": "pyromat-2.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "249ba986811942b761899ebb650fb6d3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 527122,
            "upload_time": "2024-09-21T16:38:29",
            "upload_time_iso_8601": "2024-09-21T16:38:29.916071Z",
            "url": "https://files.pythonhosted.org/packages/3d/f0/8b4d646c78784aa1142f39bd7e3b8a715702f1a760d481d3df8d34021141/pyromat-2.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-21 16:38:29",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyromat"
}
        
Elapsed time: 0.88837s