Skip to content
Snippets Groups Projects
Commit 0eec5461 authored by Mehdi Benallegue's avatar Mehdi Benallegue
Browse files

Correct computations of the X component of the ZMP

Correct also the linear force part of the Y component of the ZMP.
parent 1f05be49
No related branches found
No related tags found
1 merge request!1[major][cpp] starting point to integrate pinocchio
...@@ -97,10 +97,9 @@ namespace sot { ...@@ -97,10 +97,9 @@ namespace sot {
const MatrixHomogeneous& M = sensorPositionsSIN_ [i]->access (time); const MatrixHomogeneous& M = sensorPositionsSIN_ [i]->access (time);
fz [i] = M (2,0) * f (0) + M(2,1) * f (1) + M (2,2) * f (2); fz [i] = M (2,0) * f (0) + M(2,1) * f (1) + M (2,2) * f (2);
if (fz[i] > 0) { if (fz[i] > 0) {
double Mx = M (0,0)*f(3) + M (0,1)*f(4) + M (0,2)*f(5) + /// we assume M (2,3)==0 for moments computations
M (1,3)*(M(2,0)*f(0)+M(2,1)*f(1)+M(2,2)*f(2)); double Mx = M (0,0)*f(3) + M (0,1)*f(4) + M (0,2)*f(5) + M (1,3)*(fz [i]);
double My = M (1,0)*f(3) + M (1,1)*f(4) + M (1,2)*f(5) - double My = M (1,0)*f(3) + M (1,1)*f(4) + M (1,2)*f(5) - M (0,3)*(fz [i]);
M (1,3)*(M(1,0)*f(0)+M(1,1)*f(1)+M(1,2)*f(2));
fnormal += fz[i]; fnormal += fz[i];
sumZmpx -= My; sumZmpx -= My;
sumZmpy += Mx; sumZmpy += Mx;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment