An Extensible Simulator For Distributed Systems and Cyber-Physical Systems.
Find a file
2022-06-13 12:30:52 +02:00
example Improve comments 2022-06-13 09:56:15 +02:00
plugins Debug power state plugin 2022-06-13 10:22:06 +02:00
tests Add multiple interfaces test 2022-06-11 11:57:29 +02:00
.gitignore Init ESDS repository 2022-06-09 21:48:32 +02:00
.gitlab-ci.yml Add CI 2022-06-09 21:52:53 +02:00
esds.py Improve comments 2022-06-13 09:56:15 +02:00
icon.svg Update icon 2022-06-13 12:30:52 +02:00
LICENSE Add LICENSE 2022-06-10 07:00:18 +00:00
README.md Add badges to README 2022-06-10 09:45:14 +02:00

ESDS: An Extensible Simulator For Distributed Systems and Cyber-Physical Systems

Dependency Pipeline

What is ESDS ? 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.

ESDS is part of a research project. Thus, studies and validation experiments are available online. For more details please visit http://todo.com.

Features:

  • 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 (yet?) ?

  • 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!

Current API:

  • api.args
  • 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()
  • More details on the API in example/sender.py

Documentation: see example/ and tests/