Skip to main content

Event discrete, process based simulation for Python.

Project description

SimPy

SimPy is a process-based discrete-event simulation framework based on standard Python. Its event dispatcher is based on Python’s generators and can also be used for asynchronous networking or to implement multi-agent systems (with both, simulated and real communication).

Processes in SimPy are defined by Python generator functions and can, for example, be used to model active components like customers, vehicles or agents. SimPy also provides various types of shared resources to model limited capacity congestion points (like servers, checkout counters and tunnels).

Simulations can be performed “as fast as possible”, in real time (wall clock time) or by manually stepping through the events.

Though it is theoretically possible to do continuous simulations with SimPy, it has no features that help you with that. On the other hand, SimPy is overkill for simulations with a fixed step size where your processes don’t interact with each other or with shared resources.

The SimPy distribution contains tutorials, in-depth documentation, and a large number of examples.

SimPy is released under the MIT License. Simulation model developers are encouraged to share their SimPy modeling techniques with the SimPy community. Please post a message to the SimPy-Users mailing list.

A Simple Example

One of SimPy’s main goals is to be easy to use. Here is an example for a simple SimPy simulation: a clock process that prints the current simulation time at each step:

>>> import simpy
>>>
>>> def clock(env, name, tick):
...     while True:
...         print(name, env.now)
...         yield env.timeout(tick)
...
>>> env = simpy.Environment()
>>> env.process(clock(env, 'fast', 0.5))
<Process(clock) object at 0x...>
>>> env.process(clock(env, 'slow', 1))
<Process(clock) object at 0x...>
>>> env.run(until=2)
fast 0
slow 0
fast 0.5
slow 1
fast 1.0
fast 1.5

Installation

SimPy requires Python 2.7, 3.2, PyPy 2.0 or above.

You can install SimPy easily via pip:

$ pip install -U simpy

You can also download and install SimPy manually:

$ cd where/you/put/simpy/
$ python setup.py install

To run SimPy’s test suite on your installation, execute:

$ python -c "import simpy; simpy.test()"

Of course, you can keep working with SimPy 2:

$ pip install "simpy>=2.3,<3"

Getting started

If you’ve never used SimPy before, the SimPy tutorial is a good starting point for you. You can also try out some of the Examples shipped with SimPy.

Documentation and Help

You can find a tutorial, examples, topical guides and an API reference, as well as some information about SimPy and its history in our online documentation. For more help, contact the SimPy-Users mailing list. SimPy users are pretty helpful. You can, of course, also dig through the source code.

If you find any bugs, please post them on our issue tracker.

Enjoy simulation programming in SimPy!

Ports

An almost feature-complete reimplementation of SimPy in C# was written by Andreas Beham and is available at github.com/abeham/SimSharp

Changelog for SimPy

3.0.5 – 2014-05-14

  • [CHANGE] Move interruption and all of the safety checks into a new event (pull request #30)

  • [FIX] FilterStore.get() now behaves correctly (issue #49).

  • [FIX] Documentation improvements.

3.0.4 – 2014-04-07

  • [NEW] Verified, that SimPy works on Python 3.4.

  • [NEW] Guide to SimPy events

  • [CHANGE] The result dictionary for condition events (AllOF / & and AnyOf / |) now is an OrderedDict sorted in the same way as the original events list.

  • [CHANGE] Condition events now also except processed events.

  • [FIX] Resource.request() directly after Resource.release() no longer successful. The process now has to wait as supposed to.

  • [FIX] Event.fail() now accept all exceptions derived from BaseException instead of only Exception.

3.0.3 – 2014-03-06

  • [NEW] Guide to SimPy basics.

  • [NEW] Guide to SimPy Environments.

  • [FIX] Timing problems with real time simulation on Windows (issue #46).

  • [FIX] Installation problems on Windows due to Unicode errors (issue #41).

  • [FIX] Minor documentation issues.

3.0.2 – 2013-10-24

  • [FIX] The default capacity for Container and FilterStore is now also inf.

3.0.1 – 2013-10-24

  • [FIX] Documentation and default parameters of Store didn’t match. Its default capacity is now inf.

3.0 – 2013-10-11

SimPy 3 has been completely rewritten from scratch. Our main goals were to simplify the API and code base as well as making SimPy more flexible and extensible. Some of the most important changes are:

  • Stronger focus on events. Processes yield event instances and are suspended until the event is triggered. An example for an event is a timeout (formerly known as hold), but even processes are now events, too (you can wait until a process terminates).

  • Events can be combined with & (and) and | (or) to create condition events.

  • Process can now be defined by any generator function. You don’t have to subclass Process anymore.

  • No more global simulation state. Every simulation stores its state in an environment which is comparable to the old Simulation class.

  • Improved resource system with newly added resource types.

  • Removed plotting and GUI capabilities. Pyside and matplotlib are much better with this.

  • Greatly improved test suite. Its cleaner, and the tests are shorter and more numerous.

  • Completely overhauled documentation.

There is a guide for porting from SimPy 2 to SimPy 3. If you want to stick to SimPy 2 for a while, change your requirements to 'SimPy>=2.3,<3'.

All in all, SimPy has become a framework for asynchronous programming based on coroutines. It brings more than ten years of experience and scientific know-how in the field of event-discrete simulation to the world of asynchronous programming and should thus be a solid foundation for everything based on an event loop.

You can find information about older versions on the history page

Authors

SimPy was originally created by Klaus G. Müller and Tony Vignaux in 2002.

In 2008, Ontje Lünsdorf and Stefan Scherfke started to contribute to SimPy and became active maintainers in 2011.

In 2011, Karen Turner came on board to generally help with all the bits and pieces that may get forgotten :-)

We’d also like to thank:

  • Johannes Koomer for a fix for Store._put.

  • Steven Kennedy for a lot of documentation and example fixes

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

simpy-3.0.5.tar.gz (1.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simpy-3.0.5-py2.py3-none-any.whl (44.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file simpy-3.0.5.tar.gz.

File metadata

  • Download URL: simpy-3.0.5.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for simpy-3.0.5.tar.gz
Algorithm Hash digest
SHA256 719aac4247e2b214a191a0cdc09e10a2da459922af45f06341850ab7f4798447
MD5 19262488f1b0e6b77556820dd2b42d67
BLAKE2b-256 777ab6bf040435159c9aa25e487625b590fd09309113d8787115282bb82ac791

See more details on using hashes here.

File details

Details for the file simpy-3.0.5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for simpy-3.0.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1dbe9542970ae391617a0b3adba381e7bfe9ee4bcb07ab9df425e079fec6e754
MD5 c867e6cdc956f9335eb2b29b662c1bae
BLAKE2b-256 1560b04c421535ce157bbf35fd658166cfc11ded8f157741e2286b21bc4427f0

See more details on using hashes here.

Supported by

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