plant_interface.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_PLANTS_INCLUDE_CORBO_PLANTS_PLANT_INTERFACE_H_
26 #define SRC_PLANTS_INCLUDE_CORBO_PLANTS_PLANT_INTERFACE_H_
27 
28 #include <corbo-core/factory.h>
30 #include <corbo-core/types.h>
31 
32 #ifdef MESSAGE_SUPPORT
33 #include <corbo-communication/messages/plants/plant.pb.h>
34 #endif
35 
36 #include <memory>
37 
38 namespace corbo {
39 
54 class PlantInterface
55 {
56  public:
57  using Ptr = std::shared_ptr<PlantInterface>;
58  using ControlVector = Eigen::VectorXd;
59  using StateVector = Eigen::VectorXd;
60  using OutputVector = Eigen::VectorXd;
61 
63  virtual ~PlantInterface() {}
64 
66  virtual Ptr getInstance() const = 0;
67 
69  static Factory<PlantInterface>& getFactory() { return Factory<PlantInterface>::instance(); }
70 
72  virtual int getInputDimension() const = 0;
74  virtual int getOutputDimension() const = 0;
75 
76  virtual bool requiresFutureControls() const = 0;
77 
78  virtual bool requiresFutureStates() const = 0;
79 
81  virtual bool initialize() { return true; }
82 
84  virtual void stop() {}
85 
86  virtual void reset() {}
87 
98  virtual bool control(const ControlVector& u, const Duration& dt, const Time& t, SignalTargetInterface* signal_target = nullptr,
99  const std::string& ns = "");
100 
112  virtual bool control(const TimeSeries::ConstPtr& u_sequence, const TimeSeries::ConstPtr& x_sequence, const Duration& dt, const Time& t,
113  SignalTargetInterface* signal_target = nullptr, const std::string& ns = "") = 0;
114 
124  virtual bool output(OutputVector& output, const Time& t, SignalTargetInterface* signal_target = nullptr, const std::string& ns = "") = 0;
125 
135  virtual void getAvailableSignals(SignalTargetInterface& signal_target, const std::string& ns = "") const {}
136 
142  virtual bool setState(const Eigen::Ref<const Eigen::VectorXd>& state) { return false; }
143 
144 #ifdef MESSAGE_SUPPORT
145  virtual void toMessage(messages::Plant& message) const {}
148  virtual void fromMessage(const messages::Plant& message, std::stringstream* issues = nullptr) {}
149 #endif
150 };
151 
152 using PlantFactory = Factory<PlantInterface>;
153 #define FACTORY_REGISTER_PLANT(type) FACTORY_REGISTER_OBJECT(type, PlantInterface)
154 
155 } // namespace corbo
156 
157 #endif // SRC_PLANTS_INCLUDE_CORBO_PLANTS_PLANT_INTERFACE_H_
corbo::PlantInterface::OutputVector
Eigen::VectorXd OutputVector
Definition: plant_interface.h:104
signal_target_interface.h
corbo::PlantInterface::control
virtual bool control(const ControlVector &u, const Duration &dt, const Time &t, SignalTargetInterface *signal_target=nullptr, const std::string &ns="")
Send commands to plant.
Definition: plant_interface.cpp:51
corbo::SignalTargetInterface
Interface class for signal targets.
Definition: signal_target_interface.h:84
corbo::PlantInterface::output
virtual bool output(OutputVector &output, const Time &t, SignalTargetInterface *signal_target=nullptr, const std::string &ns="")=0
Retrieve current plant output (measurements)
factory.h
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::TimeSeries::ConstPtr
std::shared_ptr< const TimeSeries > ConstPtr
Definition: time_series.h:109
corbo::PlantInterface::requiresFutureControls
virtual bool requiresFutureControls() const =0
corbo::PlantInterface::~PlantInterface
virtual ~PlantInterface()
Virtual destructor.
Definition: plant_interface.h:107
corbo::PlantInterface::getOutputDimension
virtual int getOutputDimension() const =0
Return the plant output dimension (y)
corbo::PlantFactory
Factory< PlantInterface > PlantFactory
Definition: plant_interface.h:174
corbo::PlantInterface::StateVector
Eigen::VectorXd StateVector
Definition: plant_interface.h:103
corbo::PlantInterface::ControlVector
Eigen::VectorXd ControlVector
Definition: plant_interface.h:102
corbo::Factory::instance
static Factory & instance()
< Retrieve static instance of the factory
Definition: factory.h:116
corbo::PlantInterface::reset
virtual void reset()
Definition: plant_interface.h:130
corbo::PlantInterface::initialize
virtual bool initialize()
Initialize plant.
Definition: plant_interface.h:125
corbo::PlantInterface::setState
virtual bool setState(const Eigen::Ref< const Eigen::VectorXd > &state)
Set/move plant to a desired state (if possible)
Definition: plant_interface.h:186
Eigen::Ref
A matrix or vector expression mapping an existing expression.
Definition: Ref.h:192
corbo::PlantInterface::getInstance
virtual Ptr getInstance() const =0
Return a newly created shared instance of the implemented class.
corbo::PlantInterface::getAvailableSignals
virtual void getAvailableSignals(SignalTargetInterface &signal_target, const std::string &ns="") const
Retrieve available signals from the plant.
Definition: plant_interface.h:179
types.h
corbo::Time
Representation of time stamps.
Definition: time.h:273
corbo::PlantInterface::getInputDimension
virtual int getInputDimension() const =0
Return the plant input dimension (u)
corbo::PlantInterface::requiresFutureStates
virtual bool requiresFutureStates() const =0
corbo::PlantInterface::stop
virtual void stop()
Stop plant (you might probably use this to set the plant into a safe setpoint)
Definition: plant_interface.h:128
corbo::PlantInterface::Ptr
std::shared_ptr< PlantInterface > Ptr
Definition: plant_interface.h:101
corbo::PlantInterface::getFactory
static Factory< PlantInterface > & getFactory()
Get access to the associated factory.
Definition: plant_interface.h:113


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:03