//
// Copyright (c) 2021 University of Trento
//
// This file is part of tsid
// tsid is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation, either version
// 3 of the License, or (at your option) any later version.
// tsid is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Lesser Public License for more details. You should have
// received a copy of the GNU Lesser General Public License along with
// tsid If not, see
// .
//
#include "tsid/tasks/task-cop-equality.hpp"
using namespace tsid::math;
using namespace std;
namespace tsid
{
namespace tasks
{
TaskCopEquality::TaskCopEquality(const std::string & name, RobotWrapper & robot):
TaskContactForce(name, robot),
m_constraint(name, 3, 3),
m_contact_name("")
{
m_normal << 0, 0, 1;
}
void TaskCopEquality::setContactList(const std::vector > *contacts)
{
m_contacts = contacts;
}
int TaskCopEquality::dim() const
{
return 3;
}
const std::string& TaskCopEquality::getAssociatedContactName()
{
return m_contact_name;
}
const ConstraintBase & TaskCopEquality::compute(const double t,
ConstRefVector q,
ConstRefVector v,
Data & data,
const std::vector > *contacts)
{
setContactList(contacts);
return compute(t, q, v, data);
}
const ConstraintBase & TaskCopEquality::compute(const double,
ConstRefVector,
ConstRefVector,
Data & data)
{
// count size of force vector
int n=0;
for(auto& cl : *m_contacts)
{
n += cl->contact.n_force();
}
// fill constraint matrix
SE3 oMi;
Vector3 p_local, p_world;
auto& M = m_constraint.matrix();
M.resize(3, n);
for(auto& cl : *m_contacts)
{
int i = cl->index;
// get contact points in local frame and transform them to world frame
const Matrix3x &P = cl->contact.getContactPoints();
m_robot.framePosition(data, cl->contact.getMotionTask().frame_id(), oMi);
// cout<<"Contact "<contact.name()<