NIMBY Rails

NIMBY Rails

Sarius Sep 19, 2024 @ 1:07am
1.14 Scheduling Problem
I have a small problem with the new Schedule Manager (but god is the new one great apart from this):

Most of my lines are loops (so the stop structure is Stop1-Stop2-Stop3-Stop2). I want to create a order list that is "stop at Stop1, then immediatly go to the depot", so LineName[1], then a stacked order for DepotName[1], because the previous order is "Repeat LineName until further notice", which ends at Stop2, but I want the train to end the day at Stop1, so passengers can get off there.

The problem I am running into is that "LineName[1], then a stacked order for DepotName[1]" throws an error for "Run does not fit between previous and next order". This does not happen if the order is "LineName[1->2], then a stacked order for DepotName[1]", and also doesn't happen if I do "LineName[1], then a manually inserted order for DepotName[1]". I mean this is all not in any way problematic, and I can work around this ("LineName[1->3], then a stacked order for LineName[3->1], then a stacked order for DepotName[1]" works too), but yeah just thought it is a weird behaviour and I wanted to know if this is working as designed.
< >
Showing 1-1 of 1 comments
adlet Sep 19, 2024 @ 6:52am 
Any individual order has to be 5 minutes minimum. So LineName[1] requires 5 minutes to run. This is what may be causing your issue. Try giving it 5 minutes (ie stop for 5 minutes0 and see if that works, just to validate.

With the set up you have, trip to Stop1 at the end of the day has to be a separate order anyway, so the best may be to do as you suggested, repeating order ending at Stop3, then stacking to it the order LineName[3->1].
Last edited by adlet; Sep 19, 2024 @ 6:52am
< >
Showing 1-1 of 1 comments
Per page: 1530 50