Page tree
Skip to end of metadata
Go to start of metadata

Preliminaries

SCCharts:

The slides or papers below are only additional work and might be wrong. Always refer to the current syntax.

These slides are a good starting point to get accustomed with SCCharts:

It might be a good idea to also have a bit of a deeper understanding to what is going on behind the scenes of SCCharts. Therefore you might want to read up on the lower levels of the language:

Additional information about SCCharts within KIELER can be found here:

There is also a Technical Report about the last Railway Project and the changes to SCCharts that originated there. You might want to read that too.

KIELER:

You need a working copy of KIELER. If you participated in the last lecture about Synchronous Languages you probably already have one.
If you have a version for LEGO Mindstorms you might have a 32bit version, even if you are working on a 64bit machine. For our project you can use the 64bit version and use the full potential of your machine.
So, what I am saying is: You might want to make sure you have the proper version.

If you need a new installation you should use our KIELER Nightly.

Key:

You can get a key for the Railway lab. Sadly, we don't have a key for everybody so you have to distribute the keys in a sensible manner.

If you think you need a key come by at Room 1112/13. Make sure you read and understand the "Hausordnung".

Tasks

T2A1: Important Thoughts

  1. What are the difference between Extended SCCharts and Core SCCharts. Make sure you know that.
  2. What advantages has the Core SCCharts normalization? It has to be something sensible or we wouldn't do it, right? RIGHT?
  3. Which constraints influence the ordering of a schedule? What combinations can you think of that make a model unschedulable?

T2A2: Checking you SCCharts Installation


a) Create a model


Model the following SCChart using the textual SCChart language (*.sctx).

The SCChart describes a simple railway station controller. Initially the track is powered with 60 units to allow any train standing on this platform to begin its journey. (We assume the train stands beyond contact0 and will not trigger it in the beginning.) Subsequently, the platform of this station slows down any train entering the station (indicated by contact0) and stops it when it passes contact1. After 5 seconds it may proceed its journey.

b) Transform that model


    • Transform all extended features of the SCChart to core variants. Inspect the generated model and make sure that is still has the same semantics.
    • Normalize your SCChart. Make sure it is still valid. If you realize that the semantics changed, run through the streets screaming. Than write a ticket in our JIRA so we can fix it.
    • Convert the SCChart into its SCG representation. Inspect the SCG and search for potential problems.

c) Simulation

  • In order to generate executable code for the station controller, some potential problems need to be fixed. Fix these.
  • Simulate the fixed model with KIELER. Feel the joy of having accomplished these tedious tasks.

d) Code Generation

  • Use KIELER to generate some C-Code from the model and save the code somewhere.
  • Find the generated code on your machine and have a look at it.
  • Think about whether you like the code or not.
  • Think about whether you understand the code or not. If not, try to understand it and repeat this point.

T2A3: Referencing other stuff

When working as a big team it might be sensible to split the models into smaller parts. (Well there are other good reasons too, but never mind)

Play around a bit with the referencing feature.

Just a small outline what you need to do:

    • Create an SCChart that you want to reference. Call it SmallChart (Or anything else, but I will use this name throughout this example). The filename is not important here, just the name in the scchart declaration.
    • In SmallChart create some input and/or output variables like "input bool foo" or "output bool bar".
    • Create a second SCChart in the same project. Call it Large Chart (Or anything else ...)
    • In LargeChart create a state and refer to SmallChart.
      The general syntax to reference an SCChart is
import <OtherSCChart>
state <name> references <OtherSCChart>(<VariableInOtherSCChart> to <VariableInThisSCChart>, <VariableInOtherSCChart> to <VariableInThisSCChart>, ...)

T2A4: Inheritence

Familiarize yourself with the concept of inheritance in SCCharts.

This should be used to extend the Environment as you see in your controller stub in your repository.

import <OtherSCChart>
state <name> extends <OtherSCChart>

T2A5: Railway and SCCharts (Bonus)

Build a small controller that uses the Railway C-API and controls a train. (Maybe just do the same controller as in Tutorial 1). You propably need to read up on hostcode for that one. In the final controller you should not really use hostcode directly, so this is kind of extra work for the moment.


  • No labels