src/tasks/task-cop-equality.cpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2021 University of Trento
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 
19 
20 using namespace tsid::math;
21 using namespace std;
22 
23 namespace tsid {
24 namespace tasks {
25 
26 TaskCopEquality::TaskCopEquality(const std::string& name, RobotWrapper& robot)
27  : TaskContactForce(name, robot),
28  m_contact_name(""),
29  m_constraint(name, 3, 3) {
30  m_normal << 0, 0, 1;
31  m_ref.setZero();
32 }
33 
35  const std::vector<std::shared_ptr<ContactLevel> >* contacts) {
37 }
38 
39 int TaskCopEquality::dim() const { return 3; }
40 
42  return m_contact_name;
43 }
44 
46  const double t, ConstRefVector q, ConstRefVector v, Data& data,
47  const std::vector<std::shared_ptr<ContactLevel> >* contacts) {
49  return compute(t, q, v, data);
50 }
53  // count size of force vector
54  int n = 0;
55  for (auto& cl : *m_contacts) {
56  n += cl->contact.n_force();
57  }
58 
59  // fill constraint matrix
60  SE3 oMi;
61  Vector3 p_local, p_world;
62  auto& M = m_constraint.matrix();
63  M.resize(3, n);
64  for (auto& cl : *m_contacts) {
65  unsigned int i = cl->index;
66  // get contact points in local frame and transform them to world frame
67  const Matrix3x& P = cl->contact.getContactPoints();
68  m_robot.framePosition(data, cl->contact.getMotionTask().frame_id(), oMi);
69  // cout<<"Contact "<<cl->contact.name()<<endl;
70  // cout<<"oMi\n"<<oMi<<endl;
71  for (int j = 0; j < P.cols(); ++j) {
72  p_local = P.col(j);
73  p_world = oMi.act(p_local);
74  // cout<<j<<" p_local "<<p_local.transpose()<<endl;
75  // cout<<j<<" p_world "<<p_world.transpose()<<endl;
76  M.middleCols(i + 3 * j, 3) = (p_world - m_ref) * (m_normal.transpose());
77  }
78  }
79  return m_constraint;
80 }
81 
83  return m_constraint;
84 }
85 
87  PINOCCHIO_CHECK_INPUT_ARGUMENT(ref.size() == 3,
88  "The size of the reference needs to equal 3");
89  m_ref = ref;
90 }
91 
92 const Vector3& TaskCopEquality::getReference() const { return m_ref; }
93 
95 
97 
98 } // namespace tasks
99 } // namespace tsid
Vec3f n
virtual const std::string & getAssociatedContactName()
int i
const ConstraintBase & compute(const double t, ConstRefVector q, ConstRefVector v, Data &data)
RobotWrapper & m_robot
Reference on the robot model.
Definition: task-base.hpp:64
void setContactList(const std::vector< std::shared_ptr< ContactLevel > > *contacts)
data
Definition: setup.in.py:48
P
const std::vector< std::shared_ptr< ContactLevel > > * m_contacts
SE3 framePosition(const Data &data, const Model::FrameIndex index) const
const ConstraintBase & getConstraint() const
math::ConstRefVector ConstRefVector
Definition: task-base.hpp:39
Eigen::Matrix< Scalar, 3, Eigen::Dynamic > Matrix3x
Definition: math/fwd.hpp:42
Wrapper for a robot based on pinocchio.
cl
Transform3f t
virtual const Matrix & matrix() const
M
int dim() const
Return the dimension of the task. should be overloaded in the child class.
#define PINOCCHIO_CHECK_INPUT_ARGUMENT(...)


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