Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Creating route distributions with inflows?

Hello,
below are some possibilities:

<routeDistribution id="rd1">
       <route edges="SC CN" probability="0.5"/>
       <route edges="WC CE" probability="0.5"/>
   </routeDistribution>
   <flow id="v" begin="0" end="20" number="10" route="rd1"/>


<flow id="v" begin="0" end="20" number="10">
        <routeDistribution>
            <route edges="SC CN" probability="0.5"/>
            <route edges="WC CE" probability="0.5"/>
        </routeDistribution>
    </flow>

regards,
Jakob

Am Di., 13. Apr. 2021 um 22:34 Uhr schrieb Kathy Jang <kathyjang@xxxxxxxxx>:
Dear all,

How do I create route distributions with flows? My XML is attached, and here is also a screenshot of what I'm attempting to do (note that this one just has probability 1 for testing purposes): 

image.png

Best,
Kathy Jang
University of California, Berkeley | MS/PhD
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Back to the top