Discrete event simulation in using synchronous Python.
Project description
DESimpy
A synchronous discrete event simulation (DES) framework in Python (DESimpy).
Overview
DESimPy provides the core components of DES.
Processes in DESimPy are defined by methods owned by Python objects inherited from the Event
abstract base class. These processes can be used to model system-level or component level changes in a modelled system. Such systems might include customers or patients flowing through services, vehicles in traffic, or agents competing in games.
DESimPy implements time-to-event simulation where the next event in a schedule is processed next regardless of the amount of time in the simulated present to that event. This constrasts with "time sweeping" in which a step size is used to increment foreward in time. It is possible to combine time-to-event with time sweeping (see Palmer & Tian 2021), however this package does not provide any explicit support for that.
Installation
pip install desimpy
Quickstart
Here is a small example to show the basic logic. This example is the simple clock process presented in the SimPy documentation.
from desimpy.des import EventScheduler
def clock(env, name, tick) -> None:
"""Clock simulation process."""
def action() -> None:
"""Schedule next tick of the clock."""
print(name, env.current_time)
env.timeout(tick, action)
env.timeout(0, action=action)
env = EventScheduler()
clock(env, "fast", 0.5)
clock(env, "slow", 1)
env.run_until_max_time(2, logging=False)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file desimpy-0.46.2.tar.gz
.
File metadata
- Download URL: desimpy-0.46.2.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.19.3 CPython/3.12.3 Linux/6.8.0-47-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4dc921f33f7e936f4344e48fc05c26cfa107ed8394003993a2d5fbb64dfdac8 |
|
MD5 | 75cd7312c14346385e503ca48f828b46 |
|
BLAKE2b-256 | 4e983225791d2700a48dbbcb2fab9abf2ac7abd8fd65e7945d8012276b536cc8 |
File details
Details for the file desimpy-0.46.2-py3-none-any.whl
.
File metadata
- Download URL: desimpy-0.46.2-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.19.3 CPython/3.12.3 Linux/6.8.0-47-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3104a02f0b4c8db2fa864e2a1de4051d45bb0d45869f70f3893aec10565149f6 |
|
MD5 | 05926d67b0b7ce0110843b69a5dfe1fe |
|
BLAKE2b-256 | 9f49781fd159895b6e3484f65ef2fdd39db3354b2225a3b70e1c246b68d9aada |