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 
46 class PhaseDurations : public ifopt::VariableSet {
47 public:
48  using Ptr = std::shared_ptr<PhaseDurations>;
49  using VecDurations = std::vector<double>;
50  using EndeffectorID = uint;
51 
52 
61  const VecDurations& initial_durations,
62  bool is_first_phase_in_contact,
63  double min_phase_duration,
64  double max_phase_duration);
65  virtual ~PhaseDurations () = default;
66 
71 
75  virtual VectorXd GetValues() const override;
76 
80  virtual void SetVariables(const VectorXd& x) override;
81 
85  VecBound GetBounds () const override;
86 
102  Jacobian GetJacobianOfPos(int phase, const VectorXd& dx_dT, const VectorXd& xd) const;
103 
108  void AddObserver(PhaseDurationsObserver* const spline);
109 
114  bool IsContactPhase(double t) const;
115 
116 private:
118 
119  double t_total_;
121  ifopt::Bounds phase_duration_bounds_;
122 
123  std::vector<PhaseDurationsObserver*> observers_;
124  void UpdateObservers() const;
125 };
126 
127 } /* namespace towr */
128 
129 #endif /* TOWR_VARIABLES_CONTACT_SCHEDULE_H_ */
ifopt::Bounds phase_duration_bounds_
Base class to receive up-to-date values of the ContactSchedule.
std::shared_ptr< PhaseDurations > Ptr
Eigen::VectorXd VectorXd
virtual 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
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.
std::vector< double > VecDurations
virtual 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< PhaseDurationsObserver * > observers_


towr_core
Author(s): Alexander W. Winkler
autogenerated on Sat Apr 7 2018 02:15:57