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.2.0.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

massaction-0.2.0-py3-none-any.whl (8.6 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for massaction-0.2.0.tar.gz
Algorithm Hash digest
SHA256 1f61ec083faa9d741002b3a0e5edf954703b2a342af3cb1630f4c103b30ab963
MD5 4bc37e408c99108a982858d5d450cfd4
BLAKE2b-256 dac8ebbcb2dec8d30dfcb0f5e5900c074c46dc80fa90e5080bedd06be92c7886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: massaction-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 8.6 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 98274a09a3328fed9eddf998a43bb4351f3ad03614126d2bdc8acd8e5d65015e
MD5 3c415ba7e16a2ea7fb8b14d4968b8102
BLAKE2b-256 418996a146b283ee3d044e5cbf8129c839a393374f39276d00cc0761a6155c5a

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