Skip to content

Commit

Permalink
[atlas] Use a smaller time step to avoid discrete solver errors (Robo…
Browse files Browse the repository at this point in the history
…tLocomotion#15814)

The error happens at time ~0.5s, which is not caught by CI.  We can't
run the full-length test in CI, because in Debug builds it takes well
over two minutes.
  • Loading branch information
jwnimmer-tri authored Sep 27, 2021
1 parent 37cf3ab commit b51e076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/atlas/atlas_run_dynamics.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DEFINE_double(stiction_tolerance, 1.0E-3,
"Allowable drift speed during stiction (m/s).");

DEFINE_double(
mbp_discrete_update_period, 1.0E-3,
mbp_discrete_update_period, 5.0E-4,
"The fixed-time step period (in seconds) of discrete updates for the "
"multibody plant modeled as a discrete system. Strictly positive. "
"Set to zero for a continuous plant model.");
Expand Down

0 comments on commit b51e076

Please sign in to comment.