Slip Control on planar RABBIT
Published:
This is the course project for ME193 Berkeley Feedback control of legged robot. We implemented an anti-slipping controller on RABBIT.
The gif comparing robot with our controller and without.
Implementation
Controller
Normal PD controller
Track the reference joint angle
uPD=−KP(q−ˆqdes)−KD(˙q−˙ˆqdes)ETH’s method
Add impedance
uETH=uWBC,ref−KP(q−ˆqdes)−KD(˙q−˙ˆqdes)Where WBC: Whole Body Controller and the $\hat{q}{d e s} \dot{\hat{q}}{d e s}$ comes from gait library or WBC
our method
When the stance leg slips, we want to “drag” it to the original desired place.
The “drag force” is proportional to the toe slip velocity.
We modify the reference trajectory for stance leg to cause “drag force”.
qdes,st=ˆqdes,st+KffdPvtoe,x ˙qdes,st=˙ˆqdes,st+KffdDvtoe,x u=−KP(q−qdes)−KD(˙q−˙qdes)
Reaction Force simulation
We assume the Coulomb model of friction. There are two cases for simulation:
- The reaction force is in the friction cone
- The reaction force is on the friction cone
Both are simulated by solving the dynamic model and rigid contact model together.
The dynamic model is: M(q)¨q=F(q,˙q)+G(q)+Bu+JTΓ
The reaction force is in the friction cone
This is the case of static friction, the constraint should be the fix of the ground contact point. As the reaction force Γ is relatively second degree to this constraint, so the constraint we use is
˙(J˙q)=˙J˙q+J¨q=0Thus, we can simulate the dynamics and the reaction force together with the following equation
[M−JTJ0][¨qΓ]=[G(q)+Bu−˙J˙q]The reaction force is on the friction cone
When the ground contact point is sliding or the reaction force under the static friction assumption is outside of the friction cone, then the friction is saturated.
Then we assume that the y direction of ground contact is fixed and the sfx=μfy. Where s is the direction of the friction and μ is the friction coefficient.
We can solve the equation below
[M−JT(J)y00s−μ][¨qΓ]=[G(q)+Bu(−˙J˙q)y0]The unilateral constraint
After computed one of the above cases, we have to check the unilateral constraint. If the fy<0, we directly set f=0 and recomputed the ¨q
experiments
| μ | their controller|their result | our controller | our result | —- | —- | —- | —- | —- | | 0.55 | 105, 0.6| | 0.05,0.02 |yes 5/5| | 0.30 | 105, 0.6| | 0.05,0.02 |yes 5/5| | 0.25 | 105, 0.6| | 0.05,0.02 |yes 5/5| | 0.15 | 105, 0.6| | 0.05,0.02 |yes 5/5| | 0.10 | 105, 0.6| | 0.05,0.02 |walk long double stand 5/5| | 0.05 | 105, 0.6| | 0.05,0.02 |double stand 1/5| | | | |
Their controller is the Kp and Kd, our controller is their Kp and Kd adding feedforward with q and dq
The value in result is the amount of steps in experiment
The above result is get under the condition that zero react force above 1e-2
Deprecated
changed the no-force height to 1e-5
μ | their controller | their result | our controller | our result |
---|---|---|---|---|
0.55 | 105, 0.6 | 0.05,0.02 | yes 5/5 | |
0.25 | 105, 0.6 | 0.05,0.02 | yes 15/15 | |
0.15 | 105, 0.6 | 0.05,0.02 | walk long double stand 3/5 |