time_value_buffer.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 #include <limits>
27 
28 namespace corbo {
29 
30 void TimeValueBuffer::getValues(double ts, double dt, std::vector<std::pair<double, Eigen::VectorXd>>& useq_out)
31 {
32  useq_out.clear();
33  if (_ucache.empty())
34  {
35  if (_uinit.rows() == 0) PRINT_ERROR_NAMED("_uinit not initialized. Call setInitialValue().");
36  _ucache.emplace_back(std::numeric_limits<double>::lowest(), _uinit);
37  }
38 
39  // now check which controls we need to output
40  // find index corresponding to the current time in the control sequence which considers deadtime
41  int start_idx = 0;
42  for (; start_idx < (int)_ucache.size(); ++start_idx)
43  {
44  if (ts < _ucache[start_idx].first) break;
45  }
46  start_idx -= 1; // note, the time stamps in the cache are the beginning of each interval!
47 
48  // now export the control sequence of total length dt
49  double cur_t = ts;
50  int idx = start_idx;
51  for (; idx < (int)_ucache.size() - 1; ++idx)
52  {
53  double dti = _ucache[idx + 1].first - cur_t;
54 
55  if (dti + cur_t < ts + dt)
56  {
57  useq_out.emplace_back(dti, _ucache[idx].second);
58  }
59  else
60  {
61  useq_out.emplace_back(ts + dt - cur_t, _ucache[idx].second);
62  break;
63  }
64 
65  cur_t = _ucache[idx + 1].first;
66  }
67 
68  if (idx == (int)_ucache.size() - 1)
69  {
70  if (!useq_out.empty()) cur_t = _ucache.back().first;
71 
72  useq_out.emplace_back(ts + dt - cur_t, _ucache.back().second);
73  }
74 
75  // cleanup values that are not longer required
76  if (start_idx - 1 > 0)
77  {
78  _ucache.erase(_ucache.begin(), _ucache.begin() + start_idx - 1); // TODO(roesmann): better std::deque?
79  }
80 
81 #ifndef NDEBUG
82  // check if dt is correct
83  double dt_test = 0;
84  for (int i = 0; i < useq_out.size(); ++i) dt_test += useq_out[i].first;
85  PRINT_ERROR_COND(std::abs(dt_test - dt) > 1e-10, "Deadtime: Computed dt (" << dt_test << ") does not match original dt (" << dt << ")");
86 #endif
87 }
88 
90 {
91  if (_ucache.empty())
92  {
93  _ucache.emplace_back(std::numeric_limits<double>::lowest(), _uinit);
94  }
95 
96  if (t < _ucache.back().first) PRINT_WARNING_NAMED("t can not be less than the last value. We can not change the past.");
97 
98  if (_ucache.back().first == t) // make sure that t is unique
99  {
100  _ucache.back().second = u;
101  }
102  else
103  {
104  _ucache.emplace_back(t, u);
105  }
106 }
107 
108 } // namespace corbo
PRINT_WARNING_NAMED
#define PRINT_WARNING_NAMED(msg)
Definition: console.h:255
PRINT_ERROR_NAMED
#define PRINT_ERROR_NAMED(msg)
Definition: console.h:260
PRINT_ERROR_COND
#define PRINT_ERROR_COND(cond, msg)
Print msg-stream only if cond == true.
Definition: console.h:186
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::TimeValueBuffer::getValues
void getValues(double ts, double dt, std::vector< std::pair< double, Eigen::VectorXd >> &useq_out)
Compute the delayed values.
Definition: time_value_buffer.cpp:52
corbo::TimeValueBuffer::appendValues
void appendValues(double t, const Eigen::Ref< const Eigen::VectorXd > &u)
Definition: time_value_buffer.cpp:111
abs
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE AbsReturnType abs() const
Definition: ArrayCwiseUnaryOps.h:43
time_value_buffer.h
corbo::TimeValueBuffer::_uinit
Eigen::VectorXd _uinit
Definition: time_value_buffer.h:132
int
return int(ret)+1
Eigen::Ref
A matrix or vector expression mapping an existing expression.
Definition: Ref.h:192
corbo::TimeValueBuffer::_ucache
std::vector< std::pair< double, Eigen::VectorXd > > _ucache
Definition: time_value_buffer.h:134


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