No project description provided
Project description
arrow
“... even if the previous millisecond is closer to us than the birth of the universe, it is equally out of reach.” ― Jean-Christophe Valtat, Luminous Chaos
concept
This library implements a generalized version of the Gillespie Algorithm, a stochastic approach to numerically solving discrete systems. Each iteration, the algorithm will calculate the propensities for each reaction given a rate and the counts of the reactants present in the current state of the system, then selects one reaction to occur and the interval of time between the previous reaction and the current reaction. Iterating this produces a trajectory (or history
) of the state vector over the course of the simulation.
installation
Add the following to your requirements.txt
, or pip install stochastic-arrow
:
stochastic-arrow==0.0.1
usage
The arrow
library presents a single class as an interface, StochasticSystem
, which operates on a set of reactions (encoded as a numpy
matrix) and associated reaction rates:
from arrow import StochasticSystem
import numpy as np
# Each row is a reaction and each column is a molecular species (or other entity).
# The top reaction here means that the first and second elements combine to create the third,
# while the fourth is unaffected.
reactions = np.array([
[-1, -1, 1, 0],
[-2, 0, 0, 1],
[1, 1, -1, 0]])
# Each reaction has an associated rate for how probable that reaction is.
rates = np.array([3, 1, 1])
# Once we have a matrix of reactions and their associated rates, we can construct the system.
system = StochasticSystem(reactions, rates)
Now that the system has been instantiated, we can invoke it with any initial state vector and then run it for a given time interval:
# This gives the initial state of the system (counts of each molecular species, for instance)
state = np.array([1000, 1000, 0, 0])
# We also specify how long we want the simulation to run. Here we set it to one second
duration = 1
# Once we have an initial state and duration, we can run the simulation for the given duration.
# `evolve` returns the history of the state vector for each time step, and the history of time
# steps as they will be in uneven increments throughout the simulation.
history, steps = system.evolve(state, duration)
testing
arrow
uses pytest: https://docs.pytest.org/en/latest/ so you can test simply by saying:
> pytest
Also, we have a test that generates plots of various systems which can be run like so:
> python arrow/test/test_arrow.py
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 stochastic-arrow-0.0.4.tar.gz
.
File metadata
- Download URL: stochastic-arrow-0.0.4.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a63ec9325b55fc267f7b293ea8e72bc2d33e2debce1cfa1b4166e26b2444d29 |
|
MD5 | dd44b4a0f499ce3efa7506c24b32ab3d |
|
BLAKE2b-256 | b75b2ca6b8a8837151d2eee9edf8d9cc824e310d1e57cb57a00020a22833e10e |
File details
Details for the file stochastic_arrow-0.0.4-py2-none-any.whl
.
File metadata
- Download URL: stochastic_arrow-0.0.4-py2-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adc61ab9f915ebac72a3b139d3f1c5bd96da51d3581c6783a0dc0733041ae696 |
|
MD5 | efa15f18ca3fd03f7ec8f83ca716e9e8 |
|
BLAKE2b-256 | ac5366993e73bc509213e1bf53343aa735b9864d791f3efbbd0992b99c13e0ef |