User Tools

Site Tools


eeros_architecture:control_system:available_blocks:generic

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
eeros_architecture:control_system:available_blocks:generic [2021/07/08 19:14] ursgrafeeros_architecture:control_system:available_blocks:generic [2021/07/08 19:30] (current) ursgraf
Line 1: Line 1:
 ====== Basic Block ====== ====== Basic Block ======
  
-This is the basic block from which all other blocks inherit. +This is the basic block from which all other blocks inherit. But you can use the block directly and set its specific algorithm that will run whenever the block runs within a timedomain. Use the template parameters to choose any number of input and output signals together with their associated types. Choose this method when the algorithm is simple and one wants to avoid using several other blocks doing a simple algorithm, e.g. adding a offset and scale to a signal. 
 +  
 +Define such a block with an example algorithm as follows: 
 +<code cpp> 
 +  Blockio<2,1,Vector2,Vector2> block([&]() { 
 +    auto val = (block.getIn(0).getSignal().getValue() + 0.5) * 2; 
 +    val[0] *= -1.0; 
 +    val += block.getIn(1).getSignal().getValue() + 1.0; 
 +    block.getOut().getSignal().setValue(val); 
 +    block.getOut().getSignal().setTimestamp(gen.getIn(0).getSignal().getTimestamp()); 
 +  }); 
 +</code>
  
-A generic block simply runs a predefined algorithm which can be passed to the constructor of the block. Such an algorithm could theoretically calculate any output from a given set of inputs. It can be especially valuable for cases like the following. A signal value must be applied with an offset and a scale. How to achieve this?+The algorithm can be passed to the constructor of the block with a lambda function. Such an algorithm could theoretically calculate any output from a given set of inputs. It can be especially valuable for cases like the following. A signal value must be applied with an offset and a scale. How to achieve this?
   - Use a constant block delivering the offset together with a sum block which adds the offset to the signal. Finally, a gain block applies the desired scale. All in all, you will use three different blocks.   - Use a constant block delivering the offset together with a sum block which adds the offset to the signal. Finally, a gain block applies the desired scale. All in all, you will use three different blocks.
   - Use a generic block and define the necessary algorithm as follows <code cpp>GenericBlock<> gen([&]() {   - Use a generic block and define the necessary algorithm as follows <code cpp>GenericBlock<> gen([&]() {
eeros_architecture/control_system/available_blocks/generic.1625764496.txt.gz · Last modified: 2021/07/08 19:14 by ursgraf