system_dynamics_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 
28 
29 namespace corbo {
30 
31 SystemDynamicsInterface::SystemDynamicsInterface() : _linearization_method(std::make_shared<ForwardDifferences>()) {}
32 
33 void SystemDynamicsInterface::getLinearA(const StateVector& x0, const ControlVector& u0, Eigen::MatrixXd& A) const
34 {
35  assert(getStateDimension() == x0.size());
36  assert(getInputDimension() == u0.size());
37  assert(A.rows() == x0.size());
38  assert(A.cols() == x0.size());
39 
40  StateVector x(x0);
41 
42  auto inc = [&x](int idx, double inc) { x[idx] += inc; };
43  auto eval = [&, this](StateVector& values) { dynamics(x, u0, values); };
44  _linearization_method->computeJacobian2(inc, eval, A);
45 }
46 
47 void SystemDynamicsInterface::getLinearB(const StateVector& x0, const ControlVector& u0, Eigen::MatrixXd& B) const
48 {
49  assert(getStateDimension() == x0.size());
50  assert(getInputDimension() == u0.size());
51  assert(B.rows() == x0.size());
52  assert(B.cols() == u0.size());
53 
54  ControlVector u(u0);
55 
56  auto inc = [&u](int idx, double inc) { u[idx] += inc; };
57  auto eval = [&, this](StateVector& values) { dynamics(x0, u, values); };
58  _linearization_method->computeJacobian2(inc, eval, B);
59 }
60 
61 void SystemDynamicsInterface::setLinearizationMethod(std::shared_ptr<FiniteDifferencesInterface> lin_method) { _linearization_method = lin_method; }
62 
63 #ifdef MESSAGE_SUPPORT
64 void SystemDynamicsInterface::toMessage(corbo::messages::SystemDynamics& message) const
65 {
66  message.set_deadtime(_deadtime);
67  _linearization_method->toMessage(*message.mutable_linearization_method());
68 }
69 
70 void SystemDynamicsInterface::fromMessage(const corbo::messages::SystemDynamics& message, std::stringstream* issues)
71 {
72  if (message.deadtime() >= 0)
73  {
74  _deadtime = message.deadtime();
75  }
76  else
77  {
78  if (issues) *issues << "Deadtime must be >= 0" << std::endl;
79  _deadtime = 0;
80  PRINT_ERROR("Deadtime must be >= 0");
81  }
82  _linearization_method->fromMessage(message.linearization_method(), issues);
83 }
84 #endif
85 
86 } // namespace corbo
system_dynamics_interface.h
corbo
Definition: communication/include/corbo-communication/utilities.h:37
B
MatrixType B(b, *n, *nrhs, *ldb)
x
Scalar * x
Definition: level1_cplx_impl.h:89
finite_differences.h
std
Definition: Half.h:150
corbo::SystemDynamicsInterface::SystemDynamicsInterface
SystemDynamicsInterface()
Default constructor.
Definition: system_dynamics_interface.cpp:53
A
MatrixType A(a, *n, *n, *lda)
PRINT_ERROR
#define PRINT_ERROR(msg)
Print msg-stream as error msg.
Definition: console.h:173
corbo::SystemDynamicsInterface::ControlVector
Eigen::VectorXd ControlVector
Definition: system_dynamics_interface.h:93


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