environment.cpp
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 
26 
27 #include <corbo-core/console.h>
28 
29 #include <string>
30 
31 namespace corbo {
32 
34 {
35  setController(controller);
36  setObserver(observer);
37  setPlant(plant);
38 }
39 
40 void Environment::setController(ControllerInterface::Ptr controller) { _controller = controller; }
41 
42 void Environment::setObserver(ObserverInterface::Ptr observer) { _observer = observer; }
43 
44 void Environment::setPlant(PlantInterface::Ptr plant) { _plant = plant; }
45 
46 bool Environment::verify(std::string* msg) const
47 {
48  if (msg) msg->clear();
49  bool ret_val = true;
50  // first check pointer
51  if (!hasController())
52  {
53  ret_val = false;
54  if (msg) *msg += "Controller not specified.\n";
55  }
56 
57  if (!hasObserver())
58  {
59  ret_val = false;
60  if (msg) *msg += "Observer not specified.\n";
61  }
62 
63  if (!hasPlant())
64  {
65  ret_val = false;
66  if (msg) *msg += "Plant not specified.\n";
67  }
68  if (!ret_val) return false;
69 
70  // now check dimensions
71  int controller_state_dim = getController()->getStateDimension();
72  int controller_control_dim = getController()->getControlInputDimension();
73 
74  int observer_output_dim = getObserver()->getOutputDimension();
75  int observer_state_dim = getObserver()->getStateDimension();
76 
77  int plant_input_dim = getPlant()->getInputDimension();
78  int plant_output_dim = getPlant()->getOutputDimension();
79 
80  // control input vs. plant input
81  if (controller_control_dim != plant_input_dim)
82  {
83  ret_val = false;
84  if (msg)
85  {
86  *msg += "Contol input dimension (" + std::to_string(controller_control_dim) + ") does not match plant intput dimension (" +
87  std::to_string(plant_input_dim) + ").\n";
88  }
89  }
90 
91  // plant output vs observer input (output_vector)
92  if (plant_output_dim != observer_output_dim && observer_output_dim != property::INHERITED)
93  {
94  ret_val = false;
95  if (msg)
96  {
97  *msg += "Plant output dimension (" + std::to_string(plant_output_dim) + ") does not match the input dimension of the observer (" +
98  std::to_string(observer_output_dim) + ").\n";
99  }
100  }
101 
102  // observer state vs controller state
103  if (observer_state_dim != controller_state_dim && observer_state_dim != property::INHERITED)
104  {
105  ret_val = false;
106  if (msg)
107  {
108  *msg += "Observer state dimension (" + std::to_string(observer_state_dim) + ") does not match the state dimension of the controller (" +
109  std::to_string(controller_state_dim) + ").\n";
110  }
111  }
112 
113  // check if inheritance is appropriate
114 
115  if (observer_output_dim == property::INHERITED && observer_state_dim != property::INHERITED)
116  {
117  if (observer_state_dim != controller_state_dim)
118  {
119  ret_val = false;
120  if (msg)
121  {
122  *msg += "Observer input dimension is inherited from the plant output dimension (" + std::to_string(plant_output_dim) +
123  ") and does not match the state dimension of the observer (" + std::to_string(observer_state_dim) + ").\n";
124  }
125  }
126  }
127 
128  if (observer_output_dim == property::INHERITED && observer_state_dim == property::INHERITED)
129  {
130  if (plant_output_dim != controller_state_dim)
131  {
132  ret_val = false;
133  if (msg)
134  {
135  *msg += "Observer state dimension is inherited from the plant output dimension (" + std::to_string(plant_output_dim) +
136  ") and does not match the state dimension of the controller (" + std::to_string(controller_state_dim) + ").\n";
137  }
138  }
139  }
140 
141  if (observer_output_dim != property::INHERITED && observer_state_dim == property::INHERITED)
142  {
143  if (observer_state_dim != controller_state_dim)
144  {
145  ret_val = false;
146  if (msg)
147  {
148  *msg += "Observer state dimension is inherited from the observer input dimension (" + std::to_string(observer_output_dim) +
149  ") and does not match the state dimension of the controller (" + std::to_string(controller_state_dim) + ").\n";
150  }
151  }
152  }
153  return ret_val;
154 }
155 
156 void Environment::reset()
157 {
158  if (_controller) _controller->reset();
159  if (_observer) _observer->reset();
160  if (_plant) _plant->reset();
161 }
162 } // namespace corbo
corbo::Environment::getObserver
const ObserverInterface::Ptr & getObserver() const
Read access to the underlying observer.
Definition: environment.h:115
corbo::Environment::setPlant
void setPlant(PlantInterface::Ptr plant)
Set plant.
Definition: environment.cpp:66
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::Environment::Environment
Environment()
Default constructor.
Definition: environment.h:99
corbo::Environment::reset
void reset()
Reset environment.
Definition: environment.cpp:178
corbo::Environment::hasController
bool hasController() const
Check if a controller has been specified.
Definition: environment.h:104
console.h
corbo::Environment::_controller
ControllerInterface::Ptr _controller
Definition: environment.h:145
corbo::Environment::setController
void setController(ControllerInterface::Ptr controller)
Set controller.
Definition: environment.cpp:62
corbo::Environment::_plant
PlantInterface::Ptr _plant
Definition: environment.h:147
corbo::Environment::getPlant
const PlantInterface::Ptr & getPlant() const
Read access to the underlying plant.
Definition: environment.h:119
corbo::ObserverInterface::Ptr
std::shared_ptr< ObserverInterface > Ptr
Definition: observer_interface.h:105
corbo::Environment::_observer
ObserverInterface::Ptr _observer
Definition: environment.h:146
corbo::property::INHERITED
constexpr const int INHERITED
Inherit property.
Definition: core/include/corbo-core/types.h:84
corbo::ControllerInterface::Ptr
std::shared_ptr< ControllerInterface > Ptr
Definition: controller_interface.h:105
corbo::Environment::setObserver
void setObserver(ObserverInterface::Ptr observer)
Set observer.
Definition: environment.cpp:64
corbo::Environment::hasObserver
bool hasObserver() const
Check if an observer has been specified.
Definition: environment.h:106
environment.h
corbo::Environment::getController
const ControllerInterface::Ptr & getController() const
Read access to the underlying controller.
Definition: environment.h:111
corbo::Environment::hasPlant
bool hasPlant() const
Check if a plant has been specified.
Definition: environment.h:108
corbo::Environment::verify
bool verify(std::string *msg=nullptr) const
Check if the environment satisfies all requirements (dimensions, ...)
Definition: environment.cpp:68
corbo::PlantInterface::Ptr
std::shared_ptr< PlantInterface > Ptr
Definition: plant_interface.h:101


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