SimPy
![]() | This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
![]() | |
Original author(s) | Klaus G. Müller, Tony Vignaux |
---|---|
Developer(s) | Ontje Lünsdorf, Stefan Scherfke |
Initial release | September 17, 2002 |
Stable release | 4.0.1
/ April 15, 2020 |
Repository | |
Written in | Python |
Operating system | Cross-platform |
Type | Discrete event simulation |
License | MIT |
Website | simpy |
SimPy is a process-based discrete-event simulation framework based on standard Python. SimPy is released as open source software under the MIT License. The first version was released in December 2002.
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). 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 to carry out that. However, SimPy is overkill for simulations with a fixed step size where your processes don't interact with each other or with shared resources — use a simple while
loop in this case.
Processes in SimPy are simple Python generator functions and are 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). From version 3.1, it will also provide monitoring capabilities to aid in gathering statistics about resources and processes.
Simpy 3.0 requires Python 3. [1], while Simpy 4.0 requires Python 3.6+. SimPy distribution contains tutorials,[2] documentation, and examples.
Example
The following is a SimPy simulation [3] 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
- ^ "SimPy History & Change Log — SimPy 4.0.2.dev1+g2973dbe documentation".
- ^ Zinoviev, Dmitry (February 2018). "Discrete Event Simulation. It's Easy with SimPy!". PragPub (104): 1–16.
- ^ Scherfke, Stefan (July 25, 2014). "Discrete-event simulation with SimPy" (PDF). p. 5. Retrieved August 10, 2016.