Skip to main content

Event discrete, process based simulation for Python.

Project description

SimPy is a process-based discrete-event simulation framework based on standard Python. 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. Also, SimPy is not really required for simulations with a fixed step size and where your processes don’t interact with each other or with shared resources.

The documentation contains a tutorial, several guides explaining key concepts, a number of examples and the API reference.

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 mailing list.

There is an introductory talk that explains SimPy’s concepts and provides some examples: watch the video or get the slides.

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 >= 3.8, both CPython and PyPy3 are known to work.

You can install SimPy easily via pip:

$ python -m pip install simpy

You can also download and install SimPy manually:

$ cd where/you/put/simpy/
$ python -m build
$ python -m pip install dist/simpy-*.whl

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

$ python -m tox

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 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 and comparable libraries

Re-implementations of SimPy and libraries similar to SimPy are available in the following languages:

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

Uploaded Source

Built Distribution

simpy-4.1.1-py3-none-any.whl (27.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: simpy-4.1.1.tar.gz
  • Upload date:
  • Size: 409.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for simpy-4.1.1.tar.gz
Algorithm Hash digest
SHA256 06d0750a7884b11e0e8e20ce0bc7c6d4ed5f1743d456695340d13fdff95001a6
MD5 6b9e19f97b358c68705a22f7f5de1eab
BLAKE2b-256 a866860505ec021a16f9d8cf4b8c4d60ee07bb427649b643312303698c93b551

See more details on using hashes here.

File details

Details for the file simpy-4.1.1-py3-none-any.whl.

File metadata

  • Download URL: simpy-4.1.1-py3-none-any.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for simpy-4.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7c5ae380240fd2238671160e4830956f8055830a8317edf5c05e495b3823cd88
MD5 9a4fc48d2094190647327a3c5643f3c0
BLAKE2b-256 4872920ed1224c94a8a5a69e6c1275ac7fe4eb911ba8feffddf469f1629d47f3

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