https://github.com/panagiks/mdes
MDES is a Modular Discrete Event Simulator written in Python.
https://github.com/panagiks/mdes
discrete event python queue queueing simulator
Last synced: 10 months ago
JSON representation
MDES is a Modular Discrete Event Simulator written in Python.
- Host: GitHub
- URL: https://github.com/panagiks/mdes
- Owner: panagiks
- License: mit
- Created: 2017-01-08T09:57:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-24T19:15:44.000Z (over 7 years ago)
- Last Synced: 2025-03-05T01:16:20.242Z (11 months ago)
- Topics: discrete, event, python, queue, queueing, simulator
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MDES
> MDES is a Modular Discrete Event Simulator written in Python.

[](https://www.python.org/)


[](https://twitter.com/panagiks)
## Features
* Simulates an M/M/c/FIFO queuing system.
* Object-Oriented and fully modular
* Each component is easily swappable/replaceable
* Logging system
* Simulation progress tracking
## Instalation
```sh
pip install mdes
```
## Execution
```sh
mdes -c config.json
```
## Configuration
The Simulator is configurable via `config.json`. The following options are available:
* processesNum : The number of processes that the Simulator will execute for.
* processesLambda : Theoretical mean inter-arrival time (1/λ).
* processorsNum : Number of Processors in the Simulator.
* processorLambda : Theoretical mean proccess time (1/μ) of each processor.
* logging : Setting regarding logging. Follows `logging` package's stracture.
## Todo
- [ ] Simulate more Queuing models (besides M/M/c/FIFO)
- [ ] Provide the ability to simulate complex/elaborate systems descriptively through config (long-term goal)
## License
MIT