esds/README.md

48 lines
1.9 KiB
Markdown
Raw 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 ?
2022-06-10 09:24:30 +02:00
It is a short learning curve and coarse-grain network simulator. It contains the essential building blocks for the simulation of *Distributed Systems*, *Cyber-Physical Systems* (CPS), *Wireless Sensors Networks* (WSN) scenarios. It was originally designed to improve node implementation flexibility/faithfulness and mitigate the learning curve compare to existing network simulators.
2022-06-09 21:48:32 +02:00
2022-06-10 09:24:30 +02:00
ESDS is part of a research project. Thus, 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`
### Features
2022-06-10 09:24:30 +02:00
- Easy to use
- Small API
- Agent-based: node implementations are in independant python files
- Wireless interferences detection (i.e no modelization)
- Custom node mobility (by updating the network matrix)
- Nodes plugins (e.g energy consumption)
### What ESDS does not implements ?
2022-06-10 09:24:30 +02:00
- Network protocols (e.g IP/TCP/UDP)
- Wireless physical layer models (e.g Friis and Log-Distance models, modulation, RSSI)
- Routing algorithms (e.g Shortest path)
- 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()`
2022-06-10 09:24:30 +02:00
- *More details on the API in [example/sender.py](example/sender.py)*
2022-06-09 21:48:32 +02:00
### Documentation
2022-09-01 20:55:17 +02:00
See `example/`, `tests/` and `manual/manual.pdf`
### Tests
To ensure that esds is properly working and installed on your system, please run the simulations tests with one of the following scripts:
- `tests/run.sh`
- `tests/run.py`