Trains are not leaving the depot when they are supposed too

General discussions

Moderator: senjer

Post Reply
User avatar
perfecttrains1000
Posts: 497
Joined: 30 Apr 2018, 17:50

Trains are not leaving the depot when they are supposed too

Post by perfecttrains1000 »

So ive been working on this activity for the past few days and now im getting problems where 111 and 115 are not leaving the depot at 14:28 and 14:34 to do their service until 11:30ish. Ill leave a download link below, if anyone could figure out the issue and apologises if you have to wait a few hours before reaching the point where the enter service again. :D
M6 Rush MP89CA.zip
(40.17 KiB) Downloaded 162 times
- Likes London Underground
- Somehow relates anything to trains
trains 500
Posts: 234
Joined: 05 Jun 2020, 15:07

Re: Trains are not leaving the depot when they are supposed too

Post by trains 500 »

i cant help
Last edited by trains 500 on 07 Jul 2020, 11:44, edited 1 time in total.
My youtube channel containing several Metro sim videos https://www.youtube.com/channel/UCep1Mi ... sBZ9B0lwWA
HexxOP
Posts: 89
Joined: 09 Jan 2019, 13:04

Re: Trains are not leaving the depot when they are supposed too

Post by HexxOP »

Hello perfecttrains1000, I think I get what the problem is,

From what I tested a while ago, a yard "schedule" block, is always departures, and then arrivals.
As your activity starts with arrivals of the morning rush, you need to split your Yard maneuvers in two schedules, for instance :

Code: Select all

  <yard pack="Rijndam2022" file="DSBK.cty" departures="auto" arrivals="auto">
   <shedule name="Morning" time="10:30:00" autodepartures="10:30:01" autoarrivals="10:30:02">
    <arrive code="105" train="1051BZ" target="SBK" time="10:59:30" ai="true" track="D03" direction="-1" units="1" stop="2"/>
    <arrive code="107" train="1071BZ" target="SBK" time="11:05:30" ai="true" track="D03" direction="-1" units="1" stop="1"/>
    <arrive code="101" train="1011BZ" target="SBK" time="11:11:30" ai="true" track="D01" direction="-1" units="1" stop="2"/>
    <arrive code="103" train="1031BZ" target="SBK" time="11:17:30" ai="true" track="D01" direction="-1" units="1" stop="1"/>
   </shedule>
   <shedule name="Afternoon" time="14:20:00" autodepartures="14:20:01" autoarrivals="17:30:00">
    <depart code="113" train="1131BT" target="SBK" time="14:28:00" ai="true" track="D03" direction="1" units="1"/>
    <depart code="115" train="1151BT" target="SBK" time="14:34:00" ai="true" track="D03" direction="1" units="1"/>
    <depart code="117" train="1171BT" target="SBK" time="14:40:00" ai="true" track="D01" direction="1" units="1"/>
    <depart code="111" train="1111BT" target="SBK" time="14:46:00" ai="true" track="D01" direction="1" units="1"/>
    <arrive code="102" train="1021BZ" target="SBK" time="17:38:30" ai="true" track="D01" direction="-1" units="1" stop="2"/>
    <arrive code="104" train="1041BZ" target="SBK" time="17:44:30" ai="true" track="D01" direction="-1" units="1" stop="1"/>
    <arrive code="106" train="1061BZ" target="SBK" time="17:50:30" ai="true" track="D02" direction="-1" units="1" stop="2"/>
    <arrive code="108" train="1081BZ" target="SBK" time="17:56:30" ai="true" track="D02" direction="-1" units="1" stop="1"/>
    <arrive code="115" train="1151BZ" target="SBK" time="23:24:00" ai="true" track="D03" direction="-1" units="1" stop="2"/>
    <arrive code="111" train="1111BZ" target="SBK" time="23:36:00" ai="true" track="D03" direction="-1" units="1" stop="1"/>
    <arrive code="113" train="1131BZ" target="SBK" time="24:06:00" ai="true" track="D04" direction="-1" units="1" stop="2"/>
    <arrive code="117" train="1171BZ" target="SBK" time="24:18:00" ai="true" track="D04" direction="-1" units="1" stop="1"/>
  </shedule>
  </yard>
Tested it, trains depart well.

Though, while testing it, I noted that when a train is arriving in the yard on the same track as another one, the yard takes it right but the train is still on "Planned state" on the Depot Panel, I didn't investigate but maybe someone else will know if it comes from the .act or not.
Last edited by HexxOP on 02 Jul 2020, 19:31, edited 1 time in total.
User avatar
perfecttrains1000
Posts: 497
Joined: 30 Apr 2018, 17:50

Re: Trains are not leaving the depot when they are supposed too

Post by perfecttrains1000 »

HexxOP wrote: 02 Jul 2020, 11:54 Hello perfecttrains1000, I think I get what the problem is,

From what I tested a while ago, a yard "schedule" block, is always departures, and then arrivals.
As your activity starts with arrivals of the morning rush, you need to split your Yard maneuvers in two schedules, for instance :
Just call me perfecttrains :D, but thank you, ill modify my current activity with this, once again , thank you :)
- Likes London Underground
- Somehow relates anything to trains
Post Reply