From 56ba397b01ca5169388244eceae72e0c7a6fa1ce Mon Sep 17 00:00:00 2001 From: Axel HUYNH-PHUC Date: Thu, 17 Jan 2019 18:09:41 +0100 Subject: [PATCH 1/2] Create README.md --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0b6de0c --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# Welcome to the SUMO_Emissions wiki! + +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/imgs/simulation_example.PNG) + +# Prerequisites: +* Python 3.7 +* SUMO 1.1.0 + +# 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:** + +`> py ./emissions.py [-h] [-f CONFIGFILE] [-save] [-ref] [-steps STEPS]` + +* [-h] : Commands help +* [-f CONFIGFILE] : Choose your configuration file from your working directory +* [-save] : Save the logs, by default logs will be in the logs file in the working directory with this format: +`sumo_project/logs/sumo_logs_{current_timestamp}.log` +* [-ref] : Launch a reference simulation (without acting on infrastructure and vehicles +* [-steps STEPS] : Choose the simulated time (in seconds) + +Ex : `> py ./emissions.py -f configs/your_config.json -save -ref` + + + From 943e55e3d544b229eb3996ecdd9311947ce76951 Mon Sep 17 00:00:00 2001 From: Axel HUYNH-PHUC Date: Thu, 17 Jan 2019 18:10:43 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b6de0c..a281f4f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Welcome to the SUMO_Emissions wiki! +# 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.