You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

TODO: get_time, LCC timing description (e.g. saving next time stamp / listening to different timers)

Synchronization across all participants in the RTI DDS network is very important for all tasks that

  • are performed on a regular basis and
  • require up-to-date information from other participants in the network to perform these tasks properly

Synchronization allows to coordinate different tasks across the network and gives some guarantees about the shared information. Some of these tasks are caused e.g. by the mutual dependency between LLCs and HLCs. LLCs require regularly updated commands from the HLCs to maneuver crash-free and as desired according to e.g. their planned trajectory. HLCs need up-to-date vehicle states from the LLCs to calculate commands that accommodate the current state of the overall system.



CPM Timer

The timer class can be used to call tasks periodically, based either on the system clock or the simulated time which is controlled by the LCC. It can wait for a central start signal and can be stopped when a stop signal is sent (both by the LCC). Thus, timers on multiple systems can be started at the same time, and then work simultaneously if their period is set accordingly as well.

Several parameters must be set to use to cpm timer:

  • node_id (String): The unique ID identifying the timer in the network, so that the LCC can tell different timer signals apart
  • period_nanoseconds (uint64_t): The callback function of the timer is called every period_nanoseconds nanoseconds
  • offset_nanoseconds (uint64_t): Initial offset - 1 in real-time case (offset from unix timestamp 0), first callback time in simulated time case
  • wait_for_start (bool): If false, real-time timing is started without waiting for the LCC - this parameter is ignored by the timer that uses simulated time, as there it is required to listen to a central timing instance
  • simulated_time_allowed (bool): Specify whether the task can be performed using simulated instead of real-time
  • simulated_time (bool): Indicates if simulated or real time should be used

The callback function is registered within the start(...) function. The timer can be started synchronously, blocking / using the current thread until it was stopped, or asynchronously in a new thread, using start_async(...). It can either be stopped manually using stop(), which is especially useful if the LCC is not used for real-time timing purposes, or it can be stopped with an LCC command.

The callback function registered in start is called periodically until the timer is stopped, according to period, offset and the usage of simulated time. The following figures illustrate the role of the timer in combination with the LCC as central timing instance.

Real-time

Real-time refers to the actual current time of the system, given by the system's current timestamp. To make sure that timestamps across different devices are comparable, NTP is used for clock synchronization on these devices. In a real-time scenario, all participants begin their computation (after being started either manually or by the LCC) at unix time 1 + period * n, where n is the smallest n such that the overall term is greater than or equal to the point in time when the timer was started. This assures synchronized periodic behavior for the registered components (using callbacks) across all devices. Real-time is useful whenever the system for real driving scenarios, to evaluate the system in a real-time use case.

The following drawing shows which role the LCC plays in the real-time timing case.

Simulated time

Simulated time refers to a fictional measure of time, that is not related to the unix time of the physical devices on which the different tasks operate. Instead, the current time is determined by a central timing instance, in this case by the LCC. Simulated time can be used to speed up or slow down the simulation of a scenario, which might help to detect errors, to improve the timing of the individual components or to test faster how the system operates on the long run.

In a simulated time case, it is required that all participants are uniquely identifiable (here by setting node_id differently for all participating tasks). The participants register the next time when their callback function should be called according to the fictional time measure, which is based on the offset and period settings. The LCC collects all these ready signals until timing is started manually by the user (or until ready signals from all pre-registered timers have been received). It then performs the following tasks in a loop:

  • Select the smallest next fictional time stamp of all received timestamps (that is greater than the current simulated time) and send a system trigger to all participants containing this time stamp
  • Wait for all participants that registered this timestamp to register a new, greater timestamp

The simulated time progresses this way until the timing is stopped in the LCC. The time can of course only progress if all participants send new ready signals after they have been invoked (and after the work of their callback function has been done).

The following drawing illustrates which role the LCC plays in a simulated time use case.

References

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/include/cpm/Timer.hpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/src/Timer.cpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/include/cpm/TimerFD.hpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/src/TimerFD.cpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/src/TimerSimulated.hpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/src/TimerSimulated.cpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/include/cpm/get_time_ns.hpp

https://git.rwth-aachen.de/CPM/Project/Lab/cpm_base/blob/master/cpm_lib/include/cpm/stamp_message.hpp

LCC Timer

As mentioned before, the usage of simulated time and start and stop signals requires a central timing instance. This instance is located in the LCC. Timing can be controlled by the user using the LCC's UI.

The central class for controlling the timing in the system is TimerTrigger. In a real-time scenario, the class is merely used to send start and stop signals, and to keep track of which participants initially registered with a ready signal. These participants are shown in the UI, so registering them allows the user to see if they perform as expected up to the creation of the timer - if they do not show up, something must have gone wrong in the application.

The class is also responsible for handling simulated time. Here, further tasks are required. The current simulated time as well as the newest ready signals of the participants need to be stored. From the current time and the participants that rely on it, the system can also infer whether a participant is currently working or waiting for another time step, and if it is out of sync (if only old ready messages are received by it). The class receives and processes all ready signals so that the progression to the next smallest time step works properly. Of course, this also includes waiting for participants that are currently working and have not yet registered a new time step in which they want to be woken up again.

TODO: More

References

https://git.rwth-aachen.de/CPM/Project/Lab/software/blob/master/LabControlCenter/src/TimerTrigger.hpp

https://git.rwth-aachen.de/CPM/Project/Lab/software/blob/master/LabControlCenter/src/TimerTrigger.cpp

https://git.rwth-aachen.de/CPM/Project/Lab/software/tree/master/LabControlCenter/ui/timer

  • No labels