Delta Cycle
Project description
Delta Cycle
DeltaCycle is a Python library for discrete event simulation (DES).
A simulation has two components: a collection of variables, and a collection of processes. Variables represent the instantaneous state of the simulation. They may be organized into arbitrary data structures. Processes define how that state evolves. They may appear concurrent, but are scheduled sequentially.
Process execution is subdivided into a sequence of slots. Slots are assigned a monotonically increasing integer value, called time. Multiple processes may execute in the same slot, and therefore at the same time. The term "delta cycle" refers to a zero-delay subdivision of a time slot. It is the clockwork mechanism behind the illusion of concurrency.
Read the docs! (WIP)
Features
- Loop: task scheduler
- Tasks: coroutine wrapper
- Synchronization Primitives:
- Events
- Locks
- Semaphores
- Queues
- Structured concurrency:
- Task groups
- Task cancellation
- Task dependencies
- Exception handling
- Variables:
- Singular
- Aggregate
- Variable dependencies
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.12.0.tar.gz.
File metadata
- Download URL: deltacycle-0.12.0.tar.gz
- Upload date:
- Size: 21.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d563454a0ed6ab0c4d39aecf7c5b2faaf160eada7d37fdaf378a9fd44f0382de
|
|
| MD5 |
acbce931803b273be8a17d25281b879c
|
|
| BLAKE2b-256 |
a5706bb013ac55584d4a5426eb64744b95dd5f618c310a6ebef77979ad4259d0
|
File details
Details for the file deltacycle-0.12.0-py3-none-any.whl.
File metadata
- Download URL: deltacycle-0.12.0-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee0ca8e04fc4f6a0ff549c2f3bbfee616d3561a0b82c5987d17b68d3b989e701
|
|
| MD5 |
d10cd6999c45a9185ace5973ed83bb60
|
|
| BLAKE2b-256 |
1f02c8de98b2f4aca630ab395f82d567111eb7882cfe2ec8a18f2a8de6669811
|