mirror of
https://github.com/Ahp06/SUMO_Emissions.git
synced 2024-11-22 03:26:30 +00:00
34 lines
951 B
Python
34 lines
951 B
Python
"""
|
|
Global configuration for the simulation
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
if 'SUMO_HOME' in os.environ:
|
|
tools = os.path.join(os.environ['SUMO_HOME'], 'tools')
|
|
sys.path.append(tools)
|
|
else:
|
|
sys.exit("please declare environment variable 'SUMO_HOME'")
|
|
|
|
_SUMOCMD = 'sumo' # use 'sumo-gui' cmd for UI
|
|
_SUMOCFG = "mulhouse_simulation/osm.sumocfg"
|
|
CELLS_NUMBER = 10
|
|
EMISSIONS_THRESHOLD = 500000
|
|
n_steps = 200
|
|
|
|
limit_speed_mode = True
|
|
weight_routing_mode = False
|
|
adjust_traffic_light_mode = True
|
|
|
|
sumo_binary = os.path.join(os.environ['SUMO_HOME'], 'bin', _SUMOCMD)
|
|
sumo_cmd = [sumo_binary, "-c", _SUMOCFG]
|
|
|
|
def showConfig():
|
|
return (str(f'Grid : {CELLS_NUMBER}x{CELLS_NUMBER}\n')
|
|
+ str(f'step number = {n_steps}\n')
|
|
+ str(f'limit speed mode = {limit_speed_mode}\n')
|
|
+ str(f'weight routing mode= {weight_routing_mode}\n')
|
|
+ str(f'adjust traffic light mode = {adjust_traffic_light_mode}\n'))
|
|
|