Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Taxis not appearing during SUMO test

The duarouter test case is insufficient for a simulation because duarouter allows to route taxi demand without defining the taxi fleet (availability of taxis is assumed implicitly).
To run the simulation, add the following to the top of your route file:

   <vType id="taxiType" vClass="taxi">
        <param key="has.taxi.device" value="true"/>
    </vType>
    <trip id="taxi" type="taxiType" depart="0" from="B0B1"/>

You can also put this at the top of input_routes.rou.xml and use that file directly for the simulation without a prior call to duaruter.

regards,
Jakob



Am Mi., 20. Okt. 2021 um 10:11 Uhr schrieb Griffin Hanekamp <griffhanekamp@xxxxxxxxx>:
Thanks for the reply. I've defined all the given options in the duarouter command (shown below), but I'm still encountering the same "Person 'p0' aborted waiting for taxi at edge 'A1A0' warning. All relevant code files are attached. Thanks for your help!

duarouter -n input_net2.net.xml -a input_additional.add.xml,input_additional2.add.xml -r input_routes.rou.xml --persontrip.transfer.taxi-walk allJunctions --persontrip.transfer.walk-taxi allJunctions -o routes.rou.xml





On Tue, Oct 19, 2021 at 8:08 PM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
The test must be run will all the options defined in the corresponding options.* file (in this case options.duarouter)


Am Do., 14. Okt. 2021 um 17:31 Uhr schrieb Griffin Hanekamp <griffhanekamp@xxxxxxxxx>:
Hi sumo users,

I'm working through a sumo test involving duarouter, persontrips, and taxis in preparation for a larger project exploring ride-hailing and ride-pooling. 

The test is located at the following path: 

Using the code provided, I'm able to reproduce the simulation on my device aside from the taxi. The taxi needed to pick up Person p0 does not appear, and the simulation ends with the warning "Person 'p0' aborted waiting for taxi at edge 'A1A0'.

As the only required file not provided on github is the .sumocfg file, I assume the error is there. Does anyone know what items should be in the .sumocfg file to make the taxi appear for this test? I have already tried defining a taxi dispatch algorithm and idle algorithm here but that did not help.

Thank you so much, 

--
Griffin Hanekamp
Technical University of Munich | 2022
Georgia Institute of Technology | 2017
M. +4917632120070
Other. +16308095148
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user


--
Griffin Hanekamp
Technical University of Munich | 2022
Georgia Institute of Technology | 2017
M. +4917632120070
Other. +16308095148
_______________________________________________
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