time_series_se2.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020, Christoph Rösmann, All rights reserved.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  *
20  * Authors: Christoph Rösmann
21  *********************************************************************/
22 
24 
26 
27 #include <corbo-core/console.h>
28 
29 #include <cmath>
30 #include <iomanip>
31 
32 namespace mpc_local_planner {
33 
34 bool TimeSeriesSE2::getValuesInterpolate(double time, Eigen::Ref<Eigen::VectorXd> values, Interpolation interpolation, Extrapolation extrapolation,
35  double tolerance) const
36 {
37  if (_time.empty()) return false;
38 
39  auto it = std::find_if(_time.begin(), _time.end(), [time](double val) { return val >= time; }); // find next time interval
40  if (it == _time.end())
41  {
42  switch (extrapolation)
43  {
45  {
46  break;
47  }
49  {
50  values = getValuesMap(getTimeDimension() - 1);
51  return true;
52  }
53  default:
54  {
55  PRINT_ERROR("TimeSeries::valuesInterpolate(): desired extrapolation method not implemented.");
56  return false;
57  }
58  }
59  }
60  // interpolate
61  // int n = (int)_time.size();
62  int idx = (int)std::distance(_time.begin(), it);
63  if (idx >= getTimeDimension()) idx = getTimeDimension() - 1; // this might occure with floating point comparison
64  if (std::abs(time - _time[idx]) < tolerance)
65  {
66  // we are close to the next value, in particular idx
67  values = getValuesMap(idx);
68  return true;
69  }
70  if (idx < 1)
71  {
72  PRINT_ERROR("accessing a time idx in the past which is not this time series");
73  }
74  // okay, so now we have the above case val > time -> so idx corresponds to the next sample.
75  double dt = time - _time[idx - 1];
76  PRINT_ERROR_COND_NAMED(dt < 0, "dt < 0 in interpolation. This cannot be correct.");
77 
78  switch (interpolation)
79  {
81  {
82  if (idx < 1) idx = 1;
83  values = getValuesMap(idx - 1); // since dt > 0 -> we use the previous value
84  break;
85  }
87  {
88  if (idx < 1)
89  {
90  values = getValuesMap(0);
91  }
92  else
93  {
94  double dt_data = _time[idx] - _time[idx - 1];
95  double dt_frac = dt / dt_data;
96  values.noalias() = getValuesMap(idx - 1) + dt_frac * (getValuesMap(idx) - getValuesMap(idx - 1));
97  // overwrite third component with is an angle in [-pi, pi)
98  if (values.size() > 2)
99  {
100  values[2] = interpolate_angle(getValuesMap(idx - 1)[2], getValuesMap(idx)[2], dt_frac);
101  }
102  }
103  break;
104  }
105  default:
106  {
107  PRINT_ERROR("TimeSeries::valuesInterpolate(): desired interpolation method not implemented.");
108  return false;
109  }
110  }
111  return true;
112 }
113 
115 {
116  PRINT_ERROR_NAMED("SE2 version not yet implemented.");
117  return getValuesMatrixView().mean();
118 }
119 
121 {
122  PRINT_ERROR_NAMED("SE2 version Not yet implemented.");
123  if (mean_values.size() != getValueDimension())
124  {
125  PRINT_ERROR("TimeSeries::computeMeanCwise(): provided mean_values vector does not match value dimension");
126  return;
127  }
128  mean_values = getValuesMatrixView().rowwise().mean();
129 }
130 
131 } // namespace mpc_local_planner
#define PRINT_ERROR_NAMED(msg)
std::vector< double > _time
#define PRINT_ERROR_COND_NAMED(cond, msg)
return int(ret)+1
int getValueDimension() const
void computeMeanCwise(Eigen::Ref< Eigen::VectorXd > mean_values) override
Compute and return the component-wise mean values.
double interpolate_angle(double angle1, double angle2, double factor)
Return the interpolated angle between two angles [rad].
Definition: math_utils.h:100
int getTimeDimension() const
ValuesMatConstMap getValuesMatrixView() const
double computeMeanOverall() override
Compute and return the mean value of all values among all dimensions.
Eigen::Map< const Eigen::VectorXd > getValuesMap(int time_idx) const
bool getValuesInterpolate(double time, Eigen::Ref< Eigen::VectorXd > values, Interpolation interpolation=Interpolation::Linear, Extrapolation extrapolate=Extrapolation::NoExtrapolation, double tolerance=1e-6) const override
Retrieve value vector at a desired time stamp (seconds) via interpolation.
#define PRINT_ERROR(msg)


mpc_local_planner
Author(s): Christoph Rösmann
autogenerated on Mon Feb 28 2022 22:53:18