Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-24T19:15:44.000Z (over 6 years ago)
- Last Synced: 2024-10-05T06:59:06.934Z (about 1 month 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.![MIT Licence](https://img.shields.io/badge/Licence-MIT_Licence-red.svg?style=plastic)
[![Python 3.x](https://img.shields.io/badge/Python-3.x-yellow.svg?style=plastic)](https://www.python.org/)
![v0.1.0](https://img.shields.io/badge/Release-v0.1.0-orange.svg?style=plastic)
![Maintained](https://img.shields.io/badge/Maintained-Yes-green.svg?style=plastic)
[![Twitter](https://img.shields.io/badge/[email protected]?style=plastic)](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