esds/README.md

49 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2022-06-09 21:48:32 +02:00
# ESDS: An Extensible Simulator For Distributed Systems and Cyber-Physical Systems
2022-06-10 09:45:14 +02:00
[![Dependency](https://img.shields.io/badge/Python-v3.10-blue)](https://www.python.org/) [![Pipeline](https://gitlab.com/manzerbredes/esds/badges/main/pipeline.svg)](https://gitlab.com/manzerbredes/esds/-/tree/main)
2022-06-09 21:48:32 +02:00
### What is ESDS ?
2023-06-29 11:39:49 +02:00
It is a short learning curve and coarse-grain simulator for distributed systems. ESDS contains the building blocks for the simulation of *Distributed Systems*, *Cyber-Physical Systems* (CPS), *Wireless Sensors Networks* (WSN) etc. It is designed to improve the flexibility/faithfulness of nodes implementations and mitigate the learning curve compare to existing simulators.
2022-06-09 21:48:32 +02:00
2022-09-02 10:01:16 +02:00
ESDS is part of a research project. Studies and validation experiments are available online. For more details please visit http://todo.com.
2022-06-09 21:48:32 +02:00
### Installation
`> pip install esds`
2024-03-21 11:17:41 +01:00
To ensure that esds is properly working and installed on your system, you can clone this repository, and run the simulation tests with one of the following scripts:
2022-09-01 21:21:11 +02:00
- `tests/run.sh`
- `tests/run.py`
### Features
2022-06-10 09:24:30 +02:00
- Easy to use
- Small API
2023-06-29 11:39:49 +02:00
- Agent-based: node implementations are located in dedicated python files
- Wireless interferences detection (i.e not modelization)
2024-03-21 11:17:41 +01:00
- Node mobility (through dynamic updates of the network matrices)
- Node plugins (e.g: energy consumption)
2022-06-10 09:24:30 +02:00
### What ESDS does not implements ?
2022-06-10 09:24:30 +02:00
- Network protocols (e.g IP/TCP/UDP)
2023-06-29 11:39:49 +02:00
- Wireless physical layer models (e.g: Friis and Log-Distance models, modulation, RSSI)
- Routing algorithms (e.g: Shortest path)
2022-06-10 09:24:30 +02:00
- And much more!
2022-06-09 21:48:32 +02:00
### Simulation API
2022-06-09 21:48:32 +02:00
- `api.args`
2022-06-09 21:57:21 +02:00
- `api.send(<int>,<data>,<size>,<dst>)`
- `api.sendt(<int>,<data>,<size>,<dst>,<t>)`
- `api.receive(<int>)`
- `api.receivet(<int>,<t>)`
- `api.wait(<t>)`
- `api.wait_end()`
- `api.log(<message>)`
- `api.read(<register>)`
- `api.turn_on()`
- `api.turn_off()`
2024-03-21 11:17:41 +01:00
- More detailed examples are available here:
- [example/sender.py](https://gitlab.com/manzerbredes/esds/-/blob/main/example/sender.py)
- [example/receiver.py](https://gitlab.com/manzerbredes/esds/-/blob/main/example/receiver.py)
2022-06-09 21:48:32 +02:00
### Documentation
2024-03-21 11:17:41 +01:00
The documentation of ESDS is available in the [user manual](https://gitlab.com/manzerbredes/esds/-/blob/main/manual/manual.pdf).