Delta Cycle
Project description
Delta Cycle
DeltaCycle is a Python library for discrete event simulation (DES).
Processes are described by async def coroutine functions,
and concurrency is implemented using async / await statements.
In DES, the simulation is subdivided into sequential slots. Each slot is assigned a monotonically increasing integer value, called "time". Multiple events may happen during each time slot. Those events will trigger tasks that execute in zero time, which may schedule additional events for present or future time slots. The term "delta cycle" refers to a zero-delay subdivision of a time slot.
DeltaCycle implements a fixed-priority task scheduling algorithm. This allows fine-grain control over the task execution order from simultaneous events.
Read the docs! (WIP)
Features
Example
The following code simulates two clocks running concurrently. The fast clock prints the current time every time step. The slow clock prints the current time every two time steps.
>>> from deltacycle import create_task, now, run, sleep
>>> async def clock(name: str, period: int):
... while True:
... print(f"{now()}: {name}")
... await sleep(period)
>>> async def main():
... create_task(clock("fast", 1))
... create_task(clock("slow", 2))
>>> run(main(), until=7)
0: fast
0: slow
1: fast
2: slow
2: fast
3: fast
4: slow
4: fast
5: fast
6: slow
6: fast
Installing
DeltaCycle is available on PyPI:
$ pip install deltacycle
It supports Python 3.12+
Developing
DeltaCycle's repository is on GitHub:
$ git clone https://github.com/cjdrake/deltacycle.git
It is 100% Python, and has no runtime dependencies.
Development dependencies are listed in requirements-dev.txt.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file deltacycle-0.6.0.tar.gz.
File metadata
- Download URL: deltacycle-0.6.0.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3986c3232db93c299dd01adf8b556792728bdc158d20e4133ee58c37b80da3b7
|
|
| MD5 |
f35928adf80e9cbee3edb7ee9245f000
|
|
| BLAKE2b-256 |
8c3d774a843ba691e039fe7d4014353e9c6509cdd7df14bdf85125feceaa374a
|
File details
Details for the file deltacycle-0.6.0-py3-none-any.whl.
File metadata
- Download URL: deltacycle-0.6.0-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bba094cb17caca696b82814badd5728beed2f57e672d8fba5c07de855b3897af
|
|
| MD5 |
90afb8e3506503c35800aa8a329980a9
|
|
| BLAKE2b-256 |
4cd8a310886e731ae5ff44d492fa3d2b0282d5c723ef75277695d5c276d17b3b
|