A Python package for chemical engineering
Project description
Chemics
Chemics is a Python package for chemistry and chemical engineering applications. It is open-source and contributions from the scientific community are encouraged.
Installation
If you don't have Python installed on your computer, the Anaconda or Miniconda distribution of Python is recommended for scientific computing. After setting up Python, the Chemics package can be downloaded and installed using the pip package manager.
$ pip install chemics
Usage
The example below imports the Chemics package and uses the Gas
class to calculate the density and viscosity of nitrogen gas at a temperature of 773 K and pressure of 101,325 Pa.
import chemics as cm
gas = cm.Gas("N2", 773)
rho = gas.density()
mu = gas.viscosity()
print("Nitrogen gas properties at 773 K and 101,325 Pa")
print(f"density {rho:.4f} kg/m³")
print(f"viscosity {mu:.2f} μP")
This prints the following:
Nitrogen gas properties at 773 K and 101,325 Pa
density 0.4416 kg/m³
viscosity 363.82 μP
This example uses the ChemicalEquation
class to get properties of the reactants and products from a given chemical equation.
import chemics as cm
ce = cm.ChemicalEquation("2 HCl + 2 Na -> 2 NaCl + H2")
ce.is_balanced()
# This returns True for balanced equation
ce.rct_properties
# This returns a dataframe of the reactant properties
# HCl Na
# moles 2 2
# species HCl Na
# molwt 36.458 22.99
# mass 72.916 45.98
# molfrac 0.5 0.5
# massfrac 0.613275 0.386725
More examples are available in the documentation.
Documentation
Documentation for the Chemics package is available at chemics.readthedocs.io.
Contributing
See the CONTRIBUTING.md document for guidelines on contributing to the Chemics package.
License
Chemics is available under the MIT License - see the LICENSE file for more information.
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
File details
Details for the file chemics-24.1.tar.gz
.
File metadata
- Download URL: chemics-24.1.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 470828a662f2481190f38dc3eb83a1eb88968871433a98023a1dc891dd547d22 |
|
MD5 | 1212541bda73667abcda770e9f831572 |
|
BLAKE2b-256 | 98ee73ff813a3002b2a4836fcf0fb8063b48502310bac603c25de3bf63cccbfd |
File details
Details for the file chemics-24.1-py2.py3-none-any.whl
.
File metadata
- Download URL: chemics-24.1-py2.py3-none-any.whl
- Upload date:
- Size: 1.7 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1461050d256ad97d754e768573350c71db1b5a700448dafae234e57aa830139 |
|
MD5 | 945cb077cd93ec71ca9e0e193d216434 |
|
BLAKE2b-256 | f549a5bae8d6f0d458c9b2338fd44426435466159524d99ec54438f5352047f0 |