SimPy

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
SimPy, a free discrete-event simulation package based on Python
Original authorsKlaus G. Müller, Tony Vignaux
DevelopersOntje Lünsdorf, Stefan Scherfke
Initial releaseSeptember 17, 2002; 23 years ago (2002-09-17)
Stable release
4.1.1 / November 12, 2023; 2 years ago (2023-11-12)
Repository
  • {{URL|example.com|optional display text}}Lua error in Module:EditAtWikidata at line 29: attempt to index field 'wikibase' (a nil value).
Written inPython
Engine
    Lua error in Module:EditAtWikidata at line 29: attempt to index field 'wikibase' (a nil value).
    Operating systemCross-platform
    TypeDiscrete event simulation
    LicenseMIT
    Websitesimpy.readthedocs.org

    Lua error in mw.title.lua at line 392: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal'). SimPy stands for “Simulation in Python”, is a process-based discrete-event simulation framework based on standard Python.[1] It enables users to model active components such as customers, vehicles, or agents as simple Python generator functions. SimPy is released as open source software under the MIT License. The first version was released in December 2002.[2]

    Overview

    [edit | edit source]

    Its event dispatcher is based on Python's generators and can be used for asynchronous networking or to implement multi-agent systems (with both, simulated and real communication). 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 lacks features to support them. However, for simulations with a fixed step size where processes don't interact with each other or with shared resources, a simple while loop is sufficient.[3]

    Additionally, SimPy provides different types of shared resources to simulate congestion points that have limited capacity, such as servers, checkout counters, and tunnels. In version 3.1 and above, SimPy offers monitoring capabilities to assist in collecting statistics about processes and resources.

    SimPy 3.0 requires Python 3.,[4] while SimPy 4.0 requires Python 3.6+. SimPy distribution contains tutorials,[5] documentation, and examples.

    Example

    [edit | edit source]

    The following is a SimPy simulation[6] showing 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
    

    References

    [edit | edit source]
    1. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    2. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    3. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    4. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    5. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    6. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).