eclipse-sumo / sumo

Eclipse SUMO is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation.
https://eclipse.dev/sumo
Eclipse Public License 2.0
2.58k stars 1.44k forks source link

[Question] High Emission Results in SUMO Intersection Simulation #15691

Closed usamael2000 closed 1 week ago

usamael2000 commented 2 weeks ago

I am simulating a single intersection in SUMO, and the emission results appear unusually high. I’m uncertain if there is an issue with my configuration and would appreciate any guidance on what might be going wrong.

In the SUMO configuration file, I included:

<Emissions>
    <device.emissions.probability value="1.0" />
</Emissions>

Additionally, I used an edge emissions file (additional file):

<edgeData id="emissions01" type="emissions" excludeEmpty="true" file="output/edge_emissions.xml" begin="900" end="4500" aggregate="true" edgesFile="emissions_edge_list.txt" />

For vehicle emissions, I specified emissionClass="HBEFA3/PC_G_EU4", a time step of 0.10, and a total demand of 4000 vehicles.

The resulting emission values are:

Any advice on adjustments or potential issues would be greatly appreciated. Thank you!

SUMO-version: Eclipse SUMO sumo Version v1_21_0+0689-19ccfbcaee0

operating system: Debian GNU/Linux trixie x86_64

usamael2000 commented 2 weeks ago

Here you are more results:

image

namdre commented 1 week ago
usamael2000 commented 1 week ago

Thanks for your replay.

2024-11-12_20:48:57

I am simulating an unsignalized superstreet intersection (Reduced Left-Turn Conflict Intersection, or RCUT) as shown in the attached plot.

Below is the output from the statistics file:

<?xml version="1.0" encoding="UTF-8"?>
<statistics xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/statistic_file.xsd">
    <performance clockBegin="1731437274.52" clockEnd="1731437374.16" clockDuration="99.63" traciDuration="0.00" realTimeFactor="54.20" vehicleUpdatesPerSecond="0.00" personUpdatesPerSecond="0.00" begin="0.00" end="5400.00" duration="5400.00"/>
    <vehicles loaded="4002" inserted="4002" running="73" waiting="0"/>
    <teleports total="0" jam="0" yield="0" wrongLane="0"/>
    <safety collisions="0" emergencyStops="0" emergencyBraking="0"/>
    <persons loaded="0" running="0" jammed="0"/>
    <personTeleports total="0" abortWait="0" wrongDest="0"/>
    <vehicleTripStatistics count="4002" routeLength="1256.59" speed="12.75" duration="100.47" waitingTime="3.56" timeLoss="8.23" departDelay="0.01" departDelayWaiting="0.00" totalTravelTime="402094.90" totalDepartDelay="49.30"/>
    <pedestrianStatistics number="0" routeLength="0.00" duration="0.00" timeLoss="0.00"/>
    <rideStatistics number="0"/>
    <transportStatistics number="0"/>
</statistics>

Since this is my first time working with emissions, I am uncertain whether the emission results appear reasonable.

Best regards,

namdre commented 1 week ago

I'd rate the results as reasonable. If you want to get a better intuition about the results, look at fuel consumption. Note, that the default output is in mg and you can set option --emissions.volumetric-fuel if you'd rather have it it ml.

usamael2000 commented 1 week ago

Thanks for taking the time to answer my question.