phase_durations.h
Go to the documentation of this file.
1 /******************************************************************************
2 Copyright (c) 2018, Alexander W. Winkler. All rights reserved.
3 
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6 
7 * Redistributions of source code must retain the above copyright notice, this
8  list of conditions and the following disclaimer.
9 
10 * Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation
12  and/or other materials provided with the distribution.
13 
14 * Neither the name of the copyright holder nor the names of its
15  contributors may be used to endorse or promote products derived from
16  this software without specific prior written permission.
17 
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 ******************************************************************************/
29 
30 #ifndef TOWR_VARIABLES_CONTACT_SCHEDULE_H_
31 #define TOWR_VARIABLES_CONTACT_SCHEDULE_H_
32 
33 #include <ifopt/variable_set.h>
34 
36 
37 namespace towr {
38 
51 public:
52  using Ptr = std::shared_ptr<PhaseDurations>;
53  using VecDurations = std::vector<double>;
54  using EndeffectorID = uint;
55 
56 
65  const VecDurations& initial_durations,
66  bool is_first_phase_in_contact,
67  double min_phase_duration,
68  double max_phase_duration);
69  virtual ~PhaseDurations () = default;
70 
75 
79  VectorXd GetValues() const override;
80 
84  void SetVariables(const VectorXd& x) override;
85 
89  VecBound GetBounds () const override;
90 
106  Jacobian GetJacobianOfPos(int phase, const VectorXd& dx_dT, const VectorXd& xd) const;
107 
112  void AddObserver(PhaseDurationsObserver* const spline);
113 
118  bool IsContactPhase(double t) const;
119 
120 private:
122 
123  double t_total_;
126 
127  std::vector<PhaseDurationsObserver*> observers_;
128  void UpdateObservers() const;
129 };
130 
131 } /* namespace towr */
132 
133 #endif /* TOWR_VARIABLES_CONTACT_SCHEDULE_H_ */
ifopt::Bounds phase_duration_bounds_
Base class to receive up-to-date values of the ContactSchedule.
VectorXd GetValues() const override
bool IsContactPhase(double t) const
Whether the endeffector is in contact with the environment.
VecBound GetBounds() const override
virtual ~PhaseDurations()=default
std::shared_ptr< Component > Ptr
A variable set composed of the phase durations of an endeffector.
Jacobian GetJacobianOfPos(int phase, const VectorXd &dx_dT, const VectorXd &xd) const
How a change in the phase durations affect the position of a spline.
VecDurations GetPhaseDurations() const
void UpdateObservers() const
PhaseDurations(EndeffectorID ee, const VecDurations &initial_durations, bool is_first_phase_in_contact, double min_phase_duration, double max_phase_duration)
Constructs a variable set for a specific endeffector.
Eigen::SparseMatrix< double, Eigen::RowMajor > Jacobian
std::vector< double > VecDurations
void SetVariables(const VectorXd &x) override
Sets the phase durations from pure Eigen optimization variables.
bool initial_contact_state_
true if first phase in contact
void AddObserver(PhaseDurationsObserver *const spline)
Adds observer that is updated every time new variables are set.
std::vector< Bounds > VecBound
std::vector< PhaseDurationsObserver * > observers_
Eigen::VectorXd VectorXd


towr
Author(s): Alexander W. Winkler
autogenerated on Fri Apr 2 2021 02:14:16