Jump to content

SimPy: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Fixed one part so that it fits the tone/style of wikipedia.
m fixed some wording and added correct links. moved some information up.
Line 21: Line 21:
| website = {{URL|simpy.readthedocs.org}}
| website = {{URL|simpy.readthedocs.org}}
}}
}}
'''SimPy''' is a process-based [[List of discrete event simulation software|discrete-event]] [[simulation]] framework based on standard [[Python (programming language)|Python]]. SimPy is released as [[Open-source software|open source]] software under the [[MIT License]]. The first version was released in December 2002.
'''SimPy''' is a process-based [[discrete-event simulation]] framework based on standard [[Python (programming language)|Python]]. 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|open source]] software under the [[MIT License]]. The first version was released in December 2002.


Its event dispatcher is based on Python's [https://docs.python.org/3/glossary.html#term-generator 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 <code>while</code> loop in this case.
Its event dispatcher is based on Python's [[Generator (computer programming)|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 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 <code>while</code> loop in this case.


SimPy is a Python library used for discrete-event simulation, which enables users to model active components such as customers, vehicles, or agents as simple Python generator functions. 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 also offers monitoring capabilities to assist in collecting statistics about processes and resources.
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. <ref>{{Cite web |title=SimPy History & Change Log — SimPy 4.0.2.dev1+g2973dbe documentation |url=https://simpy.readthedocs.io/en/latest/about/history.html}}</ref>, while Simpy 4.0 requires Python 3.6+. SimPy distribution contains tutorials,<ref>{{cite journal |last1=Zinoviev |first1=Dmitry |date=February 2018 |title=Discrete Event Simulation. It's Easy with SimPy! |journal=PragPub |issue=104 |pages=1–16}}</ref> documentation, and examples.
Simpy 3.0 requires Python 3. <ref>{{Cite web |title=SimPy History & Change Log — SimPy 4.0.2.dev1+g2973dbe documentation |url=https://simpy.readthedocs.io/en/latest/about/history.html}}</ref>, while Simpy 4.0 requires Python 3.6+. SimPy distribution contains tutorials,<ref>{{cite journal |last1=Zinoviev |first1=Dmitry |date=February 2018 |title=Discrete Event Simulation. It's Easy with SimPy! |journal=PragPub |issue=104 |pages=1–16}}</ref> documentation, and examples.

Revision as of 19:14, 27 April 2023

SimPy, a free discrete-event simulation package based on Python
Original author(s)Klaus G. Müller, Tony Vignaux
Developer(s)Ontje Lünsdorf, Stefan Scherfke
Initial releaseSeptember 17, 2002 (2002-09-17)
Stable release
4.0.1 / April 15, 2020; 5 years ago (2020-04-15)
Repository
Written inPython
Operating systemCross-platform
TypeDiscrete event simulation
LicenseMIT
Websitesimpy.readthedocs.org

SimPy is a process-based discrete-event simulation framework based on standard Python. 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.

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

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

  1. ^ "SimPy History & Change Log — SimPy 4.0.2.dev1+g2973dbe documentation".
  2. ^ Zinoviev, Dmitry (February 2018). "Discrete Event Simulation. It's Easy with SimPy!". PragPub (104): 1–16.
  3. ^ Scherfke, Stefan (July 25, 2014). "Discrete-event simulation with SimPy" (PDF). p. 5. Retrieved August 10, 2016.