Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Some ideas and proposals for repeated routes

Hello Herald,
Thanks for coming up with a proposal.
In my opinion, the word route is ambiguous since it is used for defining a path as well as a public transit line (or route). Hence,  a new class named line or ptLine should be formed. This class will contain all the properties of a public transit line (or route), may be some of those will be optional. Broadly, this class should combine route, flow, trip, etc.
I would be happy to share the thoughts.
thanks and regards,
Dillip Rout 

On Mon, 15 Jun 2020 at 14:33, Harald Schaefer <fechsaer@xxxxxxxxx> wrote:
Hello

here are some proposals for enhancing the repeated route stuff:

a) change of attribute names

     In route I would rename period to cycletime (German: Umlaufzeit)

     In flow I would rename period to headway (German: Taktzeit)

b) Can we add the repeat features to trips, if we want to specify only
the stops and not the edges or allow an empty edge list?

c) If I want to simulate a whole day, I need also the links to the depot
in the morning and evening

The definition in the testcase
tests/sumo/rail/tramwayLoop/input_routes.rou.xml old (it has no
intermediate edges)

   <trip id="tram1" depart="01" departLane="best" departSpeed="max"
from="Tdepot_1" to="Tdepot_1" type="RB628">
     <stop busStop="leftStop" duration="20"/>
     <stop busStop="rightStop" duration="20"/>
     <stop busStop="leftStop" duration="20"/>
     <stop busStop="rightStop" duration="20"/>
     <stop busStop="leftStop" duration="20"/>
   </trip>

might look in the future

   <route id="startLeft" from="Tdepot_1" to="Tdepot_1" type="RB628">
     <repeat count=2 cycletime=600>
       <stop busStop="leftStop" duration="20"/>
       <stop busStop="rightStop" duration="20"/>
       <stop busStop="leftStop" duration="20"/>
     </repeat>
   </route>
   <flow id="tram1" begin="1" end="300" departLane="best"
departSpeed="max" route="startLeft" headway="120"/>

What do you think?

Greetings,

Harald

_______________________________________________
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