Skip to main content

Numerical solution of mass-action laws

Project description

PyPI version CI Status code coverage

massaction

A python package for the numerical solution of mass-action laws with constraints for the description of chemical reactions.

Installation

The easiest way to install massaction is from PyPi using pip.

pip install massaction

Usage

The major perk of massaction is the simple syntax in which one can set up the description of a chemical equilibrium. For instance, the mass-action law for the oxyhydrogen reaction may be set up in just a few lines of Python code:

from massaction.model import ChemModel

mymodel = ChemModel(3) # set up a model with 3 chemical species
h2o, h2, o2 = mymodel.get_all_species() # give names to the species objects

# first set up the reaction equation, then define constraints to ensure atom balance
reaction = h2 + o2 >> 2*h2o
ln_equilibrium_constant = 20. # arbitrary units
constraint_hydrogen = 2*h2 + 2*h2o == 1.0 # arbitrary units
constraint_oxygen = h2o + 2*o2 == 10.0 # arbitrary units

# now solve the system of equations to obtain an array with the natural logarithm of the concentrations
ln_concentrations = mymodel.solve( [reaction], [ln_equilibrium_constant], [constraint_hydrogen, constraint_oxygen] )

The resulting array ln_concentrations is array([ -0.69314718, -22.94443898, 1.55814462]), which contains the entries $\ln\left(c(\mathrm{H_2O})\right)$, $\ln\left(c(\mathrm{H_2})\right)$, and $\ln\left(c(\mathrm{O_2})\right)$, respectively.

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

massaction-0.1.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

massaction-0.1.0-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file massaction-0.1.0.tar.gz.

File metadata

  • Download URL: massaction-0.1.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for massaction-0.1.0.tar.gz
Algorithm Hash digest
SHA256 909dd779645a929fda55340be904118096bf3291b3cd48005e29b4f11e12759e
MD5 5f3bfef69b35d8371c54e5797c5bbc81
BLAKE2b-256 ee3216788eb4c5ff0e754d3e27030ade83c9412f63043f78757dfea2e57d0799

See more details on using hashes here.

File details

Details for the file massaction-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: massaction-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for massaction-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bf681b0acd5f6c91fdd93ad06f79d2dbcc08937f9379dbdf11ca058f4afddf37
MD5 39198426d00008601c00fb7806a65da0
BLAKE2b-256 967f6c48a300e2a422245c813e2e6f05cb50a98971ff9bc262abd88460558305

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page