tasks/task-joint-posture.hpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2017 CNRS
3 //
4 // This file is part of tsid
5 // tsid is free software: you can redistribute it
6 // and/or modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation, either version
8 // 3 of the License, or (at your option) any later version.
9 // tsid is distributed in the hope that it will be
10 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
11 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // General Lesser Public License for more details. You should have
13 // received a copy of the GNU Lesser General Public License along with
14 // tsid If not, see
15 // <http://www.gnu.org/licenses/>.
16 //
17 
18 #ifndef __invdyn_task_joint_posture_hpp__
19 #define __invdyn_task_joint_posture_hpp__
20 
24 #include <tsid/deprecated.hh>
25 
26 namespace tsid {
27 namespace tasks {
28 
29 class TaskJointPosture : public TaskMotion {
30  public:
31  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
32 
33  typedef math::Index Index;
39 
40  TaskJointPosture(const std::string& name, RobotWrapper& robot);
41 
42  virtual ~TaskJointPosture() {}
43 
44  int dim() const;
45 
46  const ConstraintBase& compute(const double t, ConstRefVector q,
47  ConstRefVector v, Data& data);
48 
49  const ConstraintBase& getConstraint() const;
50 
51  void setReference(const TrajectorySample& ref);
52  const TrajectorySample& getReference() const;
53 
54  const Vector& getDesiredAcceleration() const;
55  Vector getAcceleration(ConstRefVector dv) const;
56 
57  TSID_DEPRECATED const Vector& mask() const; // deprecated
58  TSID_DEPRECATED void mask(const Vector& mask); // deprecated
59  virtual void setMask(math::ConstRefVector mask);
60 
61  const Vector& position_error() const;
62  const Vector& velocity_error() const;
63  const Vector& position() const;
64  const Vector& velocity() const;
65  const Vector& position_ref() const;
66  const Vector& velocity_ref() const;
67 
68  const Vector& Kp();
69  const Vector& Kd();
70  void Kp(ConstRefVector Kp);
71  void Kd(ConstRefVector Kp);
72 
73  protected:
74  Vector m_Kp;
75  Vector m_Kd;
77  Vector m_p, m_v;
78  Vector m_a_des;
79  VectorXi m_activeAxes;
80  TrajectorySample m_ref;
82  ConstraintEquality m_constraint;
83 };
84 
85 } // namespace tasks
86 } // namespace tsid
87 
88 #endif // ifndef __invdyn_task_joint_posture_hpp__
std::size_t Index
Definition: math/fwd.hpp:53
TSID_DEPRECATED const Vector & mask() const
TaskJointPosture(const std::string &name, RobotWrapper &robot)
trajectories::TrajectorySample TrajectorySample
const TrajectorySample & getReference() const
const std::string & name() const
Definition: task-base.cpp:25
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
const ConstraintBase & compute(const double t, ConstRefVector q, ConstRefVector v, Data &data)
void setReference(const TrajectorySample &ref)
data
Definition: setup.in.py:48
math::ConstRefVector ConstRefVector
Definition: task-base.hpp:39
int dim() const
Return the dimension of the task. should be overloaded in the child class.
const Eigen::Ref< const Vector > ConstRefVector
Definition: math/fwd.hpp:48
Vector getAcceleration(ConstRefVector dv) const
math::ConstraintEquality ConstraintEquality
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Index Index
Wrapper for a robot based on pinocchio.
virtual void setMask(math::ConstRefVector mask)
Eigen::TensorRef< Tensor > ref(Eigen::TensorRef< Tensor > tensor)
Transform3f t
Eigen::VectorXi VectorXi
Definition: math/fwd.hpp:37
const ConstraintBase & getConstraint() const


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Sun Jul 2 2023 02:21:51