Go to the documentation of this file.
25 #ifndef SRC_SYSTEMS_INCLUDE_CORBO_SYSTEMS_OUTPUT_FUNCTION_INTERFACE_H_
26 #define SRC_SYSTEMS_INCLUDE_CORBO_SYSTEMS_OUTPUT_FUNCTION_INTERFACE_H_
31 #ifdef MESSAGE_SUPPORT
32 #include <corbo-communication/messages/systems/output_functions.pb.h>
62 class SystemOutputInterface
65 using Ptr = std::shared_ptr<SystemOutputInterface>;
91 virtual void reset() {}
93 #ifdef MESSAGE_SUPPORT
94 virtual void toMessage(corbo::messages::OutputFunction& message)
const {}
97 virtual void fromMessage(
const corbo::messages::OutputFunction& message, std::stringstream* issues =
nullptr) {}
102 #define FACTORY_REGISTER_OUTPUT_FUNCTION(type) FACTORY_REGISTER_OBJECT(type, SystemOutputInterface)
115 class FullStateSystemOutput :
public SystemOutputInterface
119 Ptr getInstance()
const override {
return std::make_shared<FullStateSystemOutput>(); }
126 #ifdef MESSAGE_SUPPORT
128 void toMessage(corbo::messages::OutputFunction& message)
const override { message.mutable_full_state_system_output(); }
148 Ptr getInstance()
const override {
return std::make_shared<FirstStateSystemOutput>(); }
150 int getOutputDimension()
const override {
return 1; }
152 void output(
const StateVector&
x, OutputVector&
y)
override {
y[0] =
x[0]; }
153 #ifdef MESSAGE_SUPPORT
155 void toMessage(corbo::messages::OutputFunction& message)
const override { message.mutable_first_state_system_output(); }
171 class LastStateSystemOutput :
public SystemOutputInterface
175 Ptr getInstance()
const override {
return std::make_shared<LastStateSystemOutput>(); }
180 #ifdef MESSAGE_SUPPORT
182 void toMessage(corbo::messages::OutputFunction& message)
const override { message.mutable_last_state_system_output(); }
205 Ptr getInstance()
const override {
return std::make_shared<LastStateSystemOutput>(); }
207 int getOutputDimension()
const override {
return 1; }
210 #ifdef MESSAGE_SUPPORT
212 void toMessage(corbo::messages::OutputFunction& message)
const override { message.mutable_last_state_system_output(); }
216 const Eigen::MatrixXd& getLinearMatrixC()
const {
return _mat_c; }
221 Eigen::MatrixXd _mat_c;
227 #endif // SRC_SYSTEMS_INCLUDE_CORBO_SYSTEMS_OUTPUT_FUNCTION_INTERFACE_H_
#define FACTORY_REGISTER_OUTPUT_FUNCTION(type)
int getOutputDimension() const override
Get dimension of the system output y.
Return first state vector component as system output.
int getOutputDimension() const override
Get dimension of the system output y.
Eigen::VectorXd OutputVector
Linear system output function.
Ptr getInstance() const override
Return a newly created shared instance of the implemented class.
Interface class for system output functions.
Ptr getInstance() const override
Return a newly created shared instance of the implemented class.
constexpr const int INHERITED
Inherit property.
virtual void output(const StateVector &x, OutputVector &y)=0
Evaluate the system output equation.
virtual Ptr getInstance() const =0
Return a newly created shared instance of the implemented class.
A matrix or vector expression mapping an existing expression.
virtual int getOutputDimension() const =0
Get dimension of the system output y.
void output(const StateVector &x, OutputVector &y) override
Evaluate the system output equation.
std::shared_ptr< SystemOutputInterface > Ptr
void output(const StateVector &x, OutputVector &y) override
Evaluate the system output equation.
Factory< SystemOutputInterface > OutputFunctionFactory
virtual ~SystemOutputInterface()=default
Default destructor.
Eigen::VectorXd StateVector
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:59