Skip to main content

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.

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)

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

stochastic-arrow-0.0.1.tar.gz (2.9 kB view details)

Uploaded Source

Built Distribution

stochastic_arrow-0.0.1-py2-none-any.whl (4.1 kB view details)

Uploaded Python 2

File details

Details for the file stochastic-arrow-0.0.1.tar.gz.

File metadata

  • Download URL: stochastic-arrow-0.0.1.tar.gz
  • Upload date:
  • Size: 2.9 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

Hashes for stochastic-arrow-0.0.1.tar.gz
Algorithm Hash digest
SHA256 41d84a34b3783199b333f3ad4ff2de81eeb5fd5eeb6883b111376e972a135895
MD5 71733d187e3cca9ce4f049504b887199
BLAKE2b-256 d3966a38ec9281260c4b6bb078982b4a4b60dd0f0a911dc38509ca381cbede8d

See more details on using hashes here.

File details

Details for the file stochastic_arrow-0.0.1-py2-none-any.whl.

File metadata

  • Download URL: stochastic_arrow-0.0.1-py2-none-any.whl
  • Upload date:
  • Size: 4.1 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

Hashes for stochastic_arrow-0.0.1-py2-none-any.whl
Algorithm Hash digest
SHA256 f5e6c2cb7e752e6877c7a55acbca8e864ae3ad5e3c999f0affe065a643b0e5f7
MD5 abc8a9a6f5344b8fe9f978c0ccbf6c53
BLAKE2b-256 865d4b3a43fea1b3df97a559d949c9a8c9ec20c2366e0a9872516e8ae5e0c803

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