Giter Site home page Giter Site logo

simpy's Introduction

DEPRECATION WARNING: Official SimPy is hosted on GitLab.

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

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

__ http://docs.python.org/3/glossary.html#term-generator __ https://groups.google.com/forum/#!forum/python-simpy __ https://www.youtube.com/watch?v=Bk91DoAEcjY __ http://stefan.sofa-rockers.org/downloads/simpy-ep14.pdf

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:

.. code-block:: python

>>> 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 <http://pypi.python.org/pypi/pip>_:

.. code-block:: bash

$ pip install -U simpy

You can also download and install SimPy manually:

.. code-block:: bash

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

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

.. code-block:: bash

$ py.test --pyargs simpy

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.

__ https://simpy.readthedocs.org/en/latest/simpy_intro/index.html __ https://simpy.readthedocs.org/en/latest/examples/index.html

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__.

__ https://simpy.readthedocs.org/en/latest/simpy_intro/index.html __ https://simpy.readthedocs.org/en/latest/examples/index.html __ https://simpy.readthedocs.org/en/latest/topical_guides/index.html __ https://simpy.readthedocs.org/en/latest/api_reference/index.html __ https://simpy.readthedocs.org/en/latest/about/index.html __ https://simpy.readthedocs.org/ __ mailto:[email protected] __ https://bitbucket.org/simpy/simpy/src __ https://gitlab.com/team-simpy/simpy __ https://bitbucket.org/simpy/simpy/issues?status=new&status=open

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__

__ http://github.com/abeham/SimSharp

simpy's People

Contributors

sscherfke avatar thecom avatar jpgrayson avatar cristiklein avatar dependabot[bot] avatar ericlafevers avatar vaidyasm avatar arisliang avatar mattgrogan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.