mirror of
https://github.com/Ahp06/SUMO_Emissions.git
synced 2024-11-22 11:36:29 +00:00
32 lines
1.6 KiB
Markdown
32 lines
1.6 KiB
Markdown
# SUMO Emissions
|
|
|
|
This "Proof of concept" aims to simulate the impact that connected vehicles and smart urban infrastructure would have on pollutant emissions.
|
|
Using the SUMO simulator, we developed several parameters and measures using Traci to act on the road infrastructure and vehicles.
|
|
|
|
We imagined that for a map of a given city, the city would be divided into areas,
|
|
which when the pollution rate exceeds a certain threshold in these then we act on the infrastructure and the vehicles present in this zone.
|
|
|
|
![](https://github.com/Ahp06/SUMO_Emissions/blob/master/sumo_project/files/imgs/simulation_example.PNG)
|
|
|
|
# Prerequisites:
|
|
* Python >3.7 : https://www.python.org/downloads/
|
|
* External Python librairies : shapely, parse, jsonpickle : ``` > pip install [LIBRARY_NAME] ```
|
|
* SUMO 1.1.0 : http://sumo.dlr.de/wiki/Downloads
|
|
|
|
# How to run
|
|
|
|
This application can be launched from an IDE, or from a shell (linux or Windows).
|
|
You will need a config.json configuration file (see [default_config.json](https://github.com/Ahp06/SUMO_Emissions/blob/master/sumo_project/configs/default_config.json) for a template) and a simulation file.
|
|
You can use your own scenario file (osm.sumocfg file), see : [SUMO Tutorials](http://sumo.dlr.de/wiki/Tutorials).
|
|
|
|
**With a Shell:**
|
|
|
|
![](https://github.com/Ahp06/SUMO_Emissions/blob/master/sumo_project/files/imgs/runner_help.PNG)
|
|
|
|
Example :
|
|
|
|
![](https://github.com/Ahp06/SUMO_Emissions/blob/master/sumo_project/files/imgs/runner_example.PNG)
|
|
|
|
This command will create a new dump "dump1" with the configuration file "config"
|
|
and the simulation will be launched with CSV data export and logs backup.
|