task-actuation-equality.cpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2021 CNRS INRIA LORIA
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 
20 
21 namespace tsid {
22 namespace tasks {
23 using namespace math;
24 using namespace pinocchio;
25 
28  : TaskActuation(name, robot), m_constraint(name, robot.na(), robot.na()) {
29  m_ref = Vector::Zero(robot.na());
30  m_weights = Vector::Ones(robot.na());
31  Vector m = Vector::Ones(robot.na());
32  mask(m);
33 }
34 
35 const Vector& TaskActuationEquality::mask() const { return m_mask; }
36 
39  "The size of the mask vector needs to equal " +
40  std::to_string(m_robot.na()));
41  m_mask = m;
42 
43  const Vector::Index dim = static_cast<Vector::Index>(m.sum());
44  Matrix S = Matrix::Zero(dim, m_robot.na());
45  m_activeAxes.resize(dim);
46  unsigned int j = 0;
47  for (unsigned int i = 0; i < m.size(); i++)
48  if (m(i) != 0.0) {
50  m(i) == 1.0,
51  "Entries in the mask vector need to be either 0.0 or 1.0");
52  S(j, i) = m_weights(i);
53  m_activeAxes(j) = i;
54  j++;
55  }
56  m_constraint.resize((unsigned int)dim, m_robot.na());
58 
59  for (unsigned int i = 0; i < m_activeAxes.size(); i++)
60  m_constraint.vector()(i) =
62 }
63 
64 int TaskActuationEquality::dim() const { return (int)m_mask.sum(); }
65 
66 // Reference should be the same size as robot.na(), even if a mask is used
67 // (masked dof values will just be ignored)
70  ref.size() == m_robot.na(),
71  "The size of the reference vector needs to equal " +
72  std::to_string(m_robot.na()));
73  m_ref = ref;
74 
75  for (unsigned int i = 0; i < m_activeAxes.size(); i++)
76  m_constraint.vector()(i) =
78 }
79 
81 
82 // Weighting vector should be the same size as robot.na(), even if a mask is
83 // used (masked dof values will just be ignored)
86  weights.size() == m_robot.na(),
87  "The size of the weight vector needs to equal " +
88  std::to_string(m_robot.na()));
89  m_weights = weights;
90 
91  for (unsigned int i = 0; i < m_activeAxes.size(); i++) {
93  m_constraint.vector()(i) =
95  }
96 }
97 
99  return m_weights;
100 }
101 
103  return m_constraint;
104 }
105 
108  ConstRefVector, Data&) {
109  return m_constraint;
110 }
111 
112 } // namespace tasks
113 } // namespace tsid
TaskActuationEquality(const std::string &name, RobotWrapper &robot)
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
Definition: math/fwd.hpp:36
int i
RobotWrapper & m_robot
Reference on the robot model.
Definition: task-base.hpp:64
const ConstraintBase & getConstraint() const
virtual bool setMatrix(ConstRefMatrix A)
math::ConstRefVector ConstRefVector
Definition: task-base.hpp:39
void setReference(math::ConstRefVector ref)
Wrapper for a robot based on pinocchio.
int dim() const
Return the dimension of the task. should be overloaded in the child class.
std::size_t Index
virtual const Matrix & matrix() const
void setWeightVector(math::ConstRefVector weights)
const ConstraintBase & compute(const double t, ConstRefVector q, ConstRefVector v, Data &data)
#define PINOCCHIO_CHECK_INPUT_ARGUMENT(...)
void resize(const unsigned int r, const unsigned int c)


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