tasks/task-joint-bounds.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_bounds_hpp__
19 #define __invdyn_task_joint_bounds_hpp__
20 
23 
24 namespace tsid {
25 namespace tasks {
26 
27 class TaskJointBounds : public TaskMotion {
28  public:
29  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
30 
34 
35  TaskJointBounds(const std::string& name, RobotWrapper& robot, double dt);
36 
37  int dim() const override;
38 
39  const ConstraintBase& compute(const double t, ConstRefVector q,
40  ConstRefVector v, Data& data) override;
41 
42  const ConstraintBase& getConstraint() const override;
43 
44  void setTimeStep(double dt);
47  const Vector& getAccelerationLowerBounds() const;
48  const Vector& getAccelerationUpperBounds() const;
49  const Vector& getVelocityLowerBounds() const;
50  const Vector& getVelocityUpperBounds() const;
51 
52  virtual void setMask(math::ConstRefVector mask) override;
53 
54  protected:
59  double m_dt;
60  int m_nv, m_na;
61 };
62 
63 } // namespace tasks
64 } // namespace tsid
65 
66 #endif // ifndef __invdyn_task_joint_bounds_hpp__
demo_quadruped.v
v
Definition: demo_quadruped.py:80
tsid::tasks::TaskJointBounds::Data
pinocchio::Data Data
Definition: tasks/task-joint-bounds.hpp:33
tsid::tasks::TaskJointBounds::m_constraint
ConstraintBound m_constraint
Definition: tasks/task-joint-bounds.hpp:58
tsid::tasks::TaskJointBounds::compute
const ConstraintBase & compute(const double t, ConstRefVector q, ConstRefVector v, Data &data) override
Definition: src/tasks/task-joint-bounds.cpp:102
pinocchio::DataTpl
tsid::tasks::TaskJointBounds::m_a_ub
Vector m_a_ub
Definition: tasks/task-joint-bounds.hpp:56
tsid::tasks::TaskJointBounds::getAccelerationUpperBounds
const Vector & getAccelerationUpperBounds() const
Definition: src/tasks/task-joint-bounds.cpp:55
task-motion.hpp
tsid::math::ConstraintBase
Abstract class representing a linear equality/inequality constraint. Equality constraints are represe...
Definition: constraint-base.hpp:35
tsid::math::ConstraintBound
Definition: math/constraint-bound.hpp:26
tsid::tasks::TaskJointBounds::setTimeStep
void setTimeStep(double dt)
Definition: src/tasks/task-joint-bounds.cpp:63
tsid::tasks::TaskJointBounds::getAccelerationLowerBounds
const Vector & getAccelerationLowerBounds() const
Definition: src/tasks/task-joint-bounds.cpp:51
setup.data
data
Definition: setup.in.py:48
demo_quadruped.robot
robot
Definition: demo_quadruped.py:51
tsid::tasks::TaskJointBounds::TaskJointBounds
TaskJointBounds(const std::string &name, RobotWrapper &robot, double dt)
Definition: src/tasks/task-joint-bounds.cpp:27
tsid::tasks::TaskJointBounds::m_a_lb
Vector m_a_lb
Definition: tasks/task-joint-bounds.hpp:56
tsid::tasks::TaskJointBounds::m_nv
int m_nv
Definition: tasks/task-joint-bounds.hpp:60
demo_quadruped.q
q
Definition: demo_quadruped.py:74
tsid::tasks::TaskJointBounds::m_dt
double m_dt
Definition: tasks/task-joint-bounds.hpp:59
tsid::tasks::TaskJointBounds::ConstraintBound
math::ConstraintBound ConstraintBound
Definition: tasks/task-joint-bounds.hpp:32
tsid::tasks::TaskJointBounds::setVelocityBounds
void setVelocityBounds(ConstRefVector lower, ConstRefVector upper)
Definition: src/tasks/task-joint-bounds.cpp:68
tsid::tasks::TaskJointBounds::dim
int dim() const override
Return the dimension of the task. \info should be overloaded in the child class.
Definition: src/tasks/task-joint-bounds.cpp:49
tsid::tasks::TaskJointBounds
Definition: tasks/task-joint-bounds.hpp:27
tsid::tasks::TaskJointBounds::m_na
int m_na
Definition: tasks/task-joint-bounds.hpp:60
demo_quadruped.dt
float dt
Definition: demo_quadruped.py:41
tsid::tasks::TaskJointBounds::getVelocityLowerBounds
const Vector & getVelocityLowerBounds() const
Definition: src/tasks/task-joint-bounds.cpp:59
tsid::tasks::TaskMotion
Definition: task-motion.hpp:26
tsid::math::ConstRefVector
const typedef Eigen::Ref< const Vector > ConstRefVector
Definition: math/fwd.hpp:48
tsid::math::Vector
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
tsid::tasks::TaskJointBounds::m_v_lb
Vector m_v_lb
Definition: tasks/task-joint-bounds.hpp:55
tsid
Definition: bindings/python/constraint/constraint-bound.cpp:21
tsid::tasks::TaskJointBounds::getVelocityUpperBounds
const Vector & getVelocityUpperBounds() const
Definition: src/tasks/task-joint-bounds.cpp:61
tsid::robots::RobotWrapper
Wrapper for a robot based on pinocchio.
Definition: robots/robot-wrapper.hpp:37
tsid::tasks::TaskJointBounds::setAccelerationBounds
void setAccelerationBounds(ConstRefVector lower, ConstRefVector upper)
Definition: src/tasks/task-joint-bounds.cpp:82
tsid::tasks::TaskJointBounds::Vector
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Vector Vector
Definition: tasks/task-joint-bounds.hpp:31
constraint-bound.hpp
tsid::tasks::TaskBase::name
const std::string & name() const
Definition: task-base.cpp:25
tsid::tasks::TaskJointBounds::getConstraint
const ConstraintBase & getConstraint() const override
Definition: src/tasks/task-joint-bounds.cpp:96
t
Transform3f t
tsid::tasks::TaskJointBounds::m_ddq_min_due_to_vel
Vector m_ddq_min_due_to_vel
Definition: tasks/task-joint-bounds.hpp:57
tsid::tasks::TaskJointBounds::m_ddq_max_due_to_vel
Vector m_ddq_max_due_to_vel
Definition: tasks/task-joint-bounds.hpp:57
tsid::tasks::TaskBase::ConstRefVector
math::ConstRefVector ConstRefVector
Definition: task-base.hpp:39
tsid::tasks::TaskJointBounds::setMask
virtual void setMask(math::ConstRefVector mask) override
Definition: src/tasks/task-joint-bounds.cpp:100
tsid::tasks::TaskJointBounds::m_v_ub
Vector m_v_ub
Definition: tasks/task-joint-bounds.hpp:55


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Thu Apr 3 2025 02:47:16