User Tools

Site Tools


tools:monitor:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:monitor:start [2018/05/31 11:59] – [Using the Timer to Change Safety Levels] graftools:monitor:start [2020/08/12 10:02] (current) – [Measuring a Single Block] ursgraf
Line 2: Line 2:
 It is often desirable to determine whether realtime performance criteria are met or how long a certain time domain takes to run. For this purpose each time domain as well as the safety system comprises of a dedicated timer. It is often desirable to determine whether realtime performance criteria are met or how long a certain time domain takes to run. For this purpose each time domain as well as the safety system comprises of a dedicated timer.
 ===== How the Timer Works ===== ===== How the Timer Works =====
-The timer function is included in every periodic object. It registers the system time each time the executor executes this particular task (//tick()//). When the task is done, the system time is registered again (//tock()//). The timer keeps track of the previous measurement and calculates the run time in between consecutive runs as well as period and jitter. +The timer is implemented in ''eeros::PeriodicFunction'' and is included in every periodic object. It registers the system time each time the executor executes this particular task (//tick()//). When the task is done, the system time is registered again (//tock()//). The timer keeps track of the previous measurement and calculates the run time in between consecutive runs as well as period and jitter. 
   * run time: tock() - tick()   * run time: tock() - tick()
   * period: tick()[t=n] - tick()[t=n-1]   * period: tick()[t=n] - tick()[t=n-1]
Line 19: Line 19:
  
 ===== How to use the Timer ===== ===== How to use the Timer =====
-The timer measurements can be used to monitor execution timing and notably realtime performance. After the creation of a periodic task, a monitor function can be added before the task is added to the ''Executor''+The timer measurements can be used to monitor execution timing and notably realtime performance. After the creation of a periodic task, a monitor function can be added before the task is added to the ''Executor''. \\  
 +IMPORTANT Add the monitor function before adding the periodic task to the executor.
 <code cpp> <code cpp>
 eeros::task::Periodic periodic("control system", dt, timedomain);  // create a periodic with a given period  eeros::task::Periodic periodic("control system", dt, timedomain);  // create a periodic with a given period 
 // the periodic will run a given time domain // the periodic will run a given time domain
  
-periodic.monitors.push_back([&](PeriodicCounter &c, Logger<LogWriter> &log) {+periodic.monitors.push_back([&](PeriodicCounter &c, Logger &log) {
   log.info() << "period max: " << c.period.max << ", run mean: " << c.run.mean;   log.info() << "period max: " << c.period.max << ", run mean: " << c.run.mean;
 }); });
Line 69: Line 70:
  
 ===== Using the Timer to Change Safety Levels ===== ===== Using the Timer to Change Safety Levels =====
-For a certain type of safety critical robots, it is desirable to change into a safe level in case of the jitter in periodicity of a time domain or the safety system itself exceeds a certain level. This could be achieved by using the monitor functions of the timer, see [[tools:monitor:start|]]. Assign your timedomain to a periodic with the same sampling time. Then, add a monitor function, which periodically checks for the maximum and triggers a specific safety event.+For a certain type of safety critical robots, it is desirable to change into a safe level in case of the jitter in periodicity of a time domain or the safety system itself exceeds a certain level. Add a monitor function, which periodically checks for the critical maximum value and triggers a specific safety event.
  
 <code cpp> <code cpp>
-eeros::control::Timedomain timedomain("time domain", dt, true); 
-eeros::task::Periodic periodic("control system",dt, timedomain); 
- 
 periodic.monitors.push_back([=](PeriodicCounter &c, Logger<LogWriter> &log) { periodic.monitors.push_back([=](PeriodicCounter &c, Logger<LogWriter> &log) {
   if (c.period.max >= dt) safetySystem.triggerEvent(myEvent);   if (c.period.max >= dt) safetySystem.triggerEvent(myEvent);
 }); });
- 
-eeros::Executor::instance().add(periodic); 
 </code> </code>
-Make sure to add the periodic to the executor. Usually you add the timedomain to the executor and its associated periodic is generated internally. However, in this case, we have to declare the periodic explicitely in order to be able to assign the monitor function.+
  
 ===== Accuracy of the Measurement ===== ===== Accuracy of the Measurement =====
Line 94: Line 90:
 With this command it is possible to measure for multiple hours or even multiple days. With this command it is possible to measure for multiple hours or even multiple days.
  
-executor.getMainTask()->monitors.push_back([](eeros::PeriodicCounter &c, Logger &log){ +===== Measuring a Single Block ===== 
- static int ticks = 0; +Especially when implementing your own blocks one wishes to measure the time it takes to run itThis can be very useful for blocks with complex algorithms or in cases your timedomain with many blocks takes to much time to run and you want to pinpoint the culpritFor this purpose add a ''PeriodicCounter'' to the block and add //tick()// and //tock()// to its run method. 
- if (++ticks < 200return; +<code cpp> 
- ticks = 0; +#include <eeros/core/PeriodicCounter.hpp>   // add include file 
- log.warn() << "ss: period max: " << c.period.max <<   period min: " << c.period.min << "   period mean: " << c.period.mean; + 
- c.reset(); +eeros::PeriodicCounter pc                 // add periodic counter object to your block
- });+
  
 +virtual void run() {
 +  pc.tick();                                // start ...
 +  ... // algorithm
 +  pc.tock();                                // ... and stop the timer
 +</code> 
 +You can then periodically print the mean and maximum run time.
tools/monitor/start.1527760790.txt.gz · Last modified: 2018/05/31 11:59 by graf