Skip to content

Commit

Permalink
[gym/envs] Reduce KD gain for AkY joints of Atlas to prevent numerica…
Browse files Browse the repository at this point in the history
…l instability.
  • Loading branch information
Alexis Duburcq committed Dec 4, 2021
1 parent d7abff7 commit 17bfe26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/gym_jiminy/envs/gym_jiminy/envs/atlas.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
5000.0, 5000.0, 8000.0, 4000.0, 8000.0, 5000.0])
PID_REDUCED_KD = np.array([
# Left leg: [HpX, HpZ, HpY, KnY, AkY, AkX]
0.02, 0.01, 0.015, 0.01, 0.02, 0.01,
0.02, 0.01, 0.015, 0.01, 0.015, 0.01,
# Right leg: [HpX, HpZ, HpY, KnY, AkY, AkX]
0.02, 0.01, 0.015, 0.01, 0.02, 0.01])
0.02, 0.01, 0.015, 0.01, 0.015, 0.01])

PID_FULL_KP = np.array([
# Neck: [Y]
Expand Down

0 comments on commit 17bfe26

Please sign in to comment.