<
From version < 12.1 >
edited by cbu
on 2014/05/12 21:52
To version < 14.1 >
edited by Alexander Schulz-Rosengarten
on 2014/05/13 11:13
>
Change comment: added c interface header

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.cbu
1 +XWiki.als
Content
... ... @@ -91,7 +91,7 @@
91 91  
92 92  == **Implementation in short:** ==
93 93  
94 -The main idea is, that we have a universal model of the track segments. From these single track segments, track sections, that connect train stations are modeled and from those track sections, all final schedules for the trains should be build. On each track segment, there should be at most one train: In order to drive over a track, a train must request this track, and afterwards it must free it again (details below). If two trains request the same track section, the priority, which is derived from the train number, decides, which train gets the track section. A train must request all tracks until the next possibility to stop an wait in order to avoid collisions. If the train does not get all track segments, it must free them again in order to avoid deadlocks or delays of other trains. Deadlocks might occur at the exits of all train stations, and additionally, if one train with a low priority exits the Kicking-Horse-path while another train with a higher priority sends an entry-request. It remains to be seen, if additional deadlocks occur. Deadlocks can be resolved by using a superior Mutex-Controller.
94 +The main idea is, that we have a universal model of the track segments. From these single track segments, track sections, that connect train stations are modeled and from those track sections, all final schedules for the trains should be build. On each track segment, there should be at most one train: In order to drive over a track, a train must request this track, and afterwards it must free it again (details below). If two trains request the same track section, the priority, which is derived from the train number, decides, which train gets the track section. A train must request all tracks until the next possibility to stop anwait in order to avoid collisions. If the train does not get all track segments, it must free them again in order to avoid deadlocks or delays of other trains. Deadlocks might occur at the exits of all train stations, and additionally, if one train with a low priority exits the Kicking-Horse-path while another train with a higher priority sends an entry-request. It remains to be seen, if additional deadlocks occur. Deadlocks can be resolved by using a superior Mutex-Controller.
95 95  
96 96  == **Implementation in detail:** ==
97 97  
... ... @@ -102,35 +102,45 @@
102 102  **Sample Pass for one Track (in pseudocode)**
103 103  
104 104  {{code linenumbers="true"}}
105 -state Foo
106 ---> Gleissegment with contact(Segment,0)
107 -state Gleissegment {
108 - entry / req(next_Segment);
109 - entry / setSignal(prevSegment, red);
110 -
111 - inital state Entry
112 - --> Continue with contact(Segment,0) & perm_next_Segment
113 - --> Slowdown with contact(Segment,0);
114 -
115 - state Slowdown {
116 - entry / setSpeed(Segment,SLOW);
117 - } --> Waiting with contact(Segment,1)
105 +scchart Default_Pass {
106 + bool perm_next_Segment;
107 + initial state prev
108 + --> Gleissegment with 'contact(Segment,0)';
109 + state Gleissegment {
110 + entry / 'req(next_Segment)';
111 + entry / 'setSignal(prevSegment, red)';
112 + initial state Entry
113 + --> Continue with 'contact(Segment,0)' & perm_next_Segment
114 + --> Slowdown with 'contact(Segment,0)';
115 + state Slowdown {
116 + entry / 'setSpeed(Segment,SLOW)';
117 + }
118 + --> Waiting with 'contact(Segment,1)'
118 118   --> Continue with perm_next_Segment;
119 -
120 - state Waiting {
121 - entry / setSpeed(Segment,BRAKE);
122 - } --> Continue with perm_next_Segment;
123 -
124 - state Continue {
125 - entry / setSignal(Segment,green);
126 - entry / setSpeed(Segment,full);
127 - entry / setSpeed(nextSegment,full);
128 - entry / setSignal(nextSegment, red);
129 - entry / free(prevSegment)
130 - entry / setSpeed(prevSegment,OFF);
131 - }--> leave immediate;
132 -
133 - final state leave;
120 + state Waiting {
121 + entry / 'setSpeed(Segment,BRAKE)';
122 + }
123 + --> Continue with perm_next_Segment;
124 + state Continue {
125 + entry / 'setSignal(Segment,green)';
126 + entry / 'setSpeed(Segment,full)';
127 + entry / 'setSpeed(nextSegment,full)';
128 + entry / 'setSignal(nextSegment, red)';
129 + }
130 + --> leave immediate;
131 + final state leave;
132 + region:
133 + initial state Entry
134 + --> cleanup with 'contact(Segment, 0)';
135 + state cleanup {
136 + entry / 'free(prevSegment)';
137 + entry / 'setSpeed(prevSegment,OFF)';
138 + }
139 + --> done immediate;
140 + final state done;
141 + }
142 + >-> next with 'contact(nextSegment, 0)';
143 + state next;
134 134  }
135 135  {{/code}}
136 136  
... ... @@ -164,8 +164,10 @@
164 164  
165 165  **C-Interface**
166 166  
167 -The C-Interface wraps some general functions, in order to prevent long and ugly host-code statements within the SCCharts. It especially hides the railway pointer. In addition, the C-Interface provides a persistent environment during a macro step. To bring in some randomness, the time, which a train has to wait in a station, is controlled by the C-Interface. Therefore, trains have to notify the interface about their arrival and their departure.
177 +The C-Interface wraps some general functions, in order to prevent long and ugly host-code statements within the SCCharts. It especially hides the railway pointer. In addition, the C-Interface provides a persistent environment during a macro step. To bring in some randomness, the time, which a train has to wait in a station, is controlled by the C-Interface. Therefore, trains have to notify the interface about their arrival and their departure.
168 168  
179 +[[Controller C Interface>>attach:controller.h]]
180 +
169 169  
170 170  
171 171  **Test cases: **
Confluence.Code.ConfluencePageClass[0]
Id
... ... @@ -1,1 +1,1 @@
1 -9470782
1 +9471137
URL
... ... @@ -1,1 +1,1 @@
1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/SS14Railway/pages/9470782/Project goals
1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/SS14Railway/pages/9471137/Project goals