Wiki source code of Train Scheduling

Last modified by stu115369 on 2025/01/30 12:19

Hide last authors
stu115369 3.1 1 The scheduling gets interesting when two or more trains need to take the same tracks to get to their destination. The trains shall not have to wait too long nor take unnecessary detours.
stu114754 1.1 2
stu115369 3.1 3 = Train status =
stu114754 1.1 4
stu115369 3.1 5 A train can have one of the following four statuses:
stu114754 1.1 6
stu115369 3.1 7 1. Parking
8 1. Halting
9 1. Waiting
10 1. Moving
stu114754 1.1 11
stu115369 3.1 12 A **parking** train just sits around and has nothing to do. It can be moved if the section it occupies is needed by another train.
13 A **halting** train will start moving again after a period of time (maybe to let passengers get in and out).
14 A **waiting** train has a destination that it can not yet reach as the section it needs to use is occupied / blocked.
15 A **moving** train is on the way to its destination.
stu114754 1.1 16
stu115369 3.1 17 = Section blocking =
stu114754 1.1 18
stu115369 3.1 19 A **section** is a** set of tracks between tow points** that can only have multiple trains using it if they all drive in the same direction. Otherwise only one train at a time is allowed to be an a section. Tracks with points on them are a section by them self.
20
21 A section can take on of four possible statuses:
22
23 1. Not blocked
24 1. Blocked only in forward direction
25 1. Blocked only in backward direction
26 1. Blocked
27
28 If a section is **not blocked** the scheduling is trivial as a train can use the section without any problems.
29 If a section is **blocked in one direction** a second track is allowed to drive behind the train blocking the section while keeping a safe distance to the train in front.
30 If a section is **blocked** a not moving train occupies the section.
31
32 = Destinations =
33
stu115369 3.2 34 A train can only have a train station as destination, but it can specify a favored platform. If the scheduler can not send the train easily (will be defined later) to the favored platform it will try to reroute it  to a different platform.
35
36 There are three train stations:
37
38 1. {{code language="none"}}KH_ST_1{{/code}} to {{code language="none"}}KH_ST_5{{/code}}
39 1. {{code language="none"}}KH_LN_3{{/code}} to {{code language="none"}}KH_LN_6{{/code}}
40 1. {{code language="none"}}IC_ST_1{{/code}} to {{code language="none"}}IC_ST_3{{/code}} and {{code language="none"}}OC_ST_1{{/code}} to {{code language="none"}}OC_ST_3{{/code}}
41
42 = {{code language="none"}}Re-Routing{{/code}} =
43
44 If a train has to be re-routed because it favored station can not be reached it shall get a platform that is as close as possible.
45
46 \\