Show last authors
1 = T2A1 =
2
3 1. Extended SCCharts are merely syntactic sugar to Core SCCharts. Each Extended SCChart is expressable in Core SCChart syntax.
4 1. Compilation of code from a Core SCChart is much simpler than compiling an extended SCChart. Because of the semantically equality, it's much easier to perform a model-to-model transformation than to compile an extended SCChart.
5 1. A basic block is a set of instructions, that can be executed as one piece. Instructions with more than one incoming or outgoing sequential control-flow-edges or tick edges trigger a break between basic blocks.
6 1. The ordering of a schedule is influenced by data-dependencies such as write-read, abs.write-rel.write and by the sequential control-flow.
7
8 = T2A2 =
9
10 Created:
11
12
13
14
15
16 Received:
17
18
19
20 = T2A4 =
21
22 === (% style="font-size:14.0px; line-height:1.4285715" %)Extended features:(%%) ===
23
24 * Count Delay: Wait 5 seconds.
25 Transformation: External counter. Reset in entry action. Count in during action. During action in parent state here because of empty complex state "stop".
26 The entry action to reset the counter is missing in the automatic transformation. I added the entry action manually and removed the unnecessary initialization of the counter.
27 * During: Action during a state is active.
28 Transformation: Parallel regions. First increments the counter until the other one finishes.
29 * Entry: Action on entering a state.
30 Transformation: Additional init-state with immediate transition and the same label the entry action had.
31
32 === Core SCChart: ===
33
34 [[image:attach:rail.core.png]]
35
36 === Normalize: ===
37
38 * Trigger and Effect: Split Trigger and Effects in sequential (immediate) transitions.
39 * Surface Depth: States with outgoing non-immediate transitions must only have one outgoing transition.
40
41 [[image:attach:rail.core.normalized.png]]
42
43 === SCG: ===
44
45 [[image:attach:rail.scg_dep.conflict.png]]
46
47 Write-write-conflicts may occur while accessing the track-variable. These are between the initialization of the track and lowering the speed or stopping the train when it enters the station again. Thus these conflict can be easily resolved by sequentializing the initialization and the rest of the controller.
48
49 Futhermore there exists a dependency-cycle between the increment and read of the counter-variable and the write and read of the _term-variable. Therefore the SCG is not ASC-schedulable. This can be fixed by sequentialising the counter. We know the counter has to wait 5 seconds. So the counter can be modeled in form of 5 sequential states.
50
51 = T2A5 =
52
53 Explanation of Changes see above.
54
55 [[image:attach:rail.seq_counter.png]]
56
57 Generated SCG has no dependencies:
58
59 [[image:attach:rail.seq_counter.scg.png]]
60
61 Generated c code:
62
63 {{code linenumbers="true" language="cpp" collapse="true" title="Generated c Code"}}
64 /*****************************************************************************/
65 /* G E N E R A T E D C C O D E */
66 /*****************************************************************************/
67 /* KIELER - Kiel Integrated Environment for Layout Eclipse RichClient */
68 /* */
69 /* http://www.informatik.uni-kiel.de/rtsys/kieler/ */
70 /* Copyright 2014 by */
71 /* + Christian-Albrechts-University of Kiel */
72 /* + Department of Computer Science */
73 /* + Real-Time and Embedded Systems Group */
74 /* */
75 /* This code is provided under the terms of the Eclipse Public License (EPL).*/
76 /*****************************************************************************/
77 int second ;;
78
79 int contact0 ;;
80
81 int contact1 ;;
82
83 int track ;;
84
85 int _GO ;;
86
87 int guard21_e1 ;;
88
89 int guard21_e1 ;;
90
91 int guard22_e1 ;;
92
93 int guard0 ;;
94
95 int guard1 ;;
96
97 int guard2 ;;
98
99 int guard3 ;;
100
101 int guard4 ;;
102
103 int guard5 ;;
104
105 int guard6 ;
106 int PRE_guard6 ;;
107
108 int guard7 ;;
109
110 int guard8 ;
111 int PRE_guard8 ;;
112
113 int guard9 ;;
114
115 int guard10 ;
116 int PRE_guard10 ;;
117
118 int guard11 ;;
119
120 int guard12 ;
121 int PRE_guard12 ;;
122
123 int guard13 ;;
124
125 int guard14 ;
126 int PRE_guard14 ;;
127
128 int guard15 ;;
129
130 int guard16 ;;
131
132 int guard17 ;
133 int PRE_guard17 ;;
134
135 int guard18 ;;
136
137 int guard19 ;
138 int PRE_guard19 ;;
139
140 int guard20 ;;
141
142 int guard21 ;;
143
144 int guard22 ;;
145
146 int guard23 ;
147
148
149 int reset(){
150 _GO = 1;
151 }
152
153 int tick(){
154 guard0 = _GO;
155 Tick: {
156 if (guard1) {
157 track = 60;
158 }
159 guard2 = guard1;
160 guard15 = (PRE_guard14)
161 ;
162 guard16 = (
163 guard15 &&
164 second
165 )
166 ;
167 if (guard16) {
168 track = 60;
169 }
170 guard3 = (
171 guard2 ||
172 guard16
173 )
174 ;
175 guard20 = (PRE_guard19)
176 ;
177 guard4 = (
178 (
179 guard3 &&
180 contact0
181 ) ||
182 (
183 guard20 &&
184 contact0
185 )
186 )
187 ;
188 if (guard4) {
189 track = 20;
190 }
191 guard18 = (PRE_guard17)
192 ;
193 guard5 = (
194 (
195 guard4 &&
196 contact1
197 ) ||
198 (
199 guard18 &&
200 contact1
201 )
202 )
203 ;
204 if (guard5) {
205 track = 0;
206 }
207 guard7 = (PRE_guard6)
208 ;
209 guard6 = (
210 guard5 ||
211 (
212 guard7 &&
213 (!(second))
214 )
215 )
216 ;
217 guard9 = (PRE_guard8)
218 ;
219 guard8 = (
220 (
221 guard7 &&
222 second
223 ) ||
224 (
225 guard9 &&
226 (!(second))
227 )
228 )
229 ;
230 guard11 = (PRE_guard10)
231 ;
232 guard10 = (
233 (
234 guard9 &&
235 second
236 ) ||
237 (
238 guard11 &&
239 (!(second))
240 )
241 )
242 ;
243 guard13 = (PRE_guard12)
244 ;
245 guard12 = (
246 (
247 guard11 &&
248 second
249 ) ||
250 (
251 guard13 &&
252 (!(second))
253 )
254 )
255 ;
256 guard14 = (
257 (
258 guard13 &&
259 second
260 ) ||
261 (
262 guard15 &&
263 (!(second))
264 )
265 )
266 ;
267 guard17 = (
268 (
269 guard4 &&
270 (!(contact1))
271 ) ||
272 (
273 guard18 &&
274 (!(contact1))
275 )
276 )
277 ;
278 guard19 = (
279 (
280 guard3 &&
281 (!(contact0))
282 ) ||
283 (
284 guard20 &&
285 (!(contact0))
286 )
287 )
288 ;
289 guard21 = 0;
290 guard21_e1 = (!((
291 guard19 ||
292 (
293 guard17 ||
294 (
295 guard6 ||
296 (
297 guard8 ||
298 (
299 guard10 ||
300 (
301 guard12 ||
302 guard14
303 )
304 )
305 )
306 )
307 )
308 )
309 ))
310 ;
311 guard22 = (
312 (
313 guard21_e1 ||
314 guard21
315 ) &&
316 guard21
317 )
318 ;
319 guard22_e1 = (!((
320 guard19 ||
321 (
322 guard17 ||
323 (
324 guard6 ||
325 (
326 guard8 ||
327 (
328 guard10 ||
329 (
330 guard12 ||
331 guard14
332 )
333 )
334 )
335 )
336 )
337 )
338 ))
339 ;
340 guard23 = (
341 (
342 guard22_e1 ||
343 guard22
344 ) &&
345 guard22
346 )
347 ;
348 }
349 _GO = 0
350 }
351 {{/code}}
352
353
354 = T2A6 =
355
356
357