An Extensible Simulator For Distributed Systems and Cyber-Physical Systems.
Find a file
2022-06-10 07:00:18 +00:00
example Init ESDS repository 2022-06-09 21:48:32 +02:00
plugins Init ESDS repository 2022-06-09 21:48:32 +02:00
tests Init ESDS repository 2022-06-09 21:48:32 +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 Init ESDS repository 2022-06-09 21:48:32 +02:00
icon.svg Init ESDS repository 2022-06-09 21:48:32 +02:00
LICENSE Add LICENSE 2022-06-10 07:00:18 +00:00
README.md Update the API in Readme.md 2022-06-09 21:57:21 +02:00

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

What is ESDS ? It is a short learning curve and coarse-grain network simulator. It contains the essential building blocks for the simulation of Cyber-Physical Systems (CPS) and 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.

What ESDS does not implements?

  • Network protocols (such as IP/TCP/UDP)
  • Wireless physical layer models
  • Routing algorithms
  • And much more!

Features:

  • The implementation of node behavior can be any python file that you have wrote
  • Wireless interferences detection (not modelization)
  • Simulation can be interrupted at constant intervals to perform custom actions (such as implement nodes mobility)

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 in example/sender.py

Documentation: cf. example/ and tests/