controller_interface.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 namespace corbo {
28 
29 bool ControllerInterface::step(const ControllerInterface::StateVector& x, ReferenceTrajectoryInterface& xref, ReferenceTrajectoryInterface& uref,
30  const Duration& dt, const Time& t, ControllerInterface::ControlVector& u, SignalTargetInterface* signal_target,
31  const std::string& ns)
32 {
33  TimeSeries::Ptr u_sequence;
34  TimeSeries::Ptr x_sequence;
35 
36  if (step(x, xref, uref, dt, t, u_sequence, x_sequence, signal_target, nullptr, nullptr, nullptr, ns))
37  {
38  u_sequence->getValuesInterpolate(0.0, u);
39  return true;
40  }
41  else
42  {
43  return false;
44  }
45 }
46 } // namespace corbo
corbo
Definition: communication/include/corbo-communication/utilities.h:37
controller_interface.h
corbo::ControllerInterface::ControlVector
Eigen::VectorXd ControlVector
Definition: controller_interface.h:108
x
Scalar * x
Definition: level1_cplx_impl.h:89
corbo::ControllerInterface::step
virtual bool step(const StateVector &x, ReferenceTrajectoryInterface &xref, ReferenceTrajectoryInterface &uref, const Duration &dt, const Time &t, ControlVector &u, SignalTargetInterface *signal_target=nullptr, const std::string &ns="")
Perform actual controller step / control law computation.
Definition: controller_interface.cpp:51
corbo::ControllerInterface::StateVector
Eigen::VectorXd StateVector
Definition: controller_interface.h:107
corbo::TimeSeries::Ptr
std::shared_ptr< TimeSeries > Ptr
Definition: time_series.h:108


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