-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strandbeest example with SAP constraints is broken #22752
Comments
Thanks @vincekurtz! This seems to be a regression due to some change in At that commit, the Ipopt output is:
At first I thought it might be caused by the default |
OK found it, the regression is caused by: a466e14 I'll have to dig deeper into what changed when |
The following patch is a workaround to get the example to work, and probably not what we want long term. diff --git examples/multibody/strandbeest/run_with_motor.cc examples/multibody/strandbeest/run_with_motor.cc
index 3eff10f77e..931cd251e2 100644
--- examples/multibody/strandbeest/run_with_motor.cc
+++ examples/multibody/strandbeest/run_with_motor.cc
@@ -205,6 +205,10 @@ int do_main() {
// without it parsing the default position limits as constraints.
InverseKinematics ik(strandbeest, &strandbeest_context, false);
+ for (auto c : ik.prog().GetAllConstraints()) {
+ ik.get_mutable_prog()->RemoveConstraint(c);
+ }
+
// Add our custom position constraints that fix the floating body (crossbar).
ik.get_mutable_prog()->AddBoundingBoxConstraint(lower, upper, ik.q());
I wonder, maybe |
Whatever else is going on, "failing silently" doesn't seem like a good thing. Later... ah, it's probably not slient. The call to |
You're absolutely right, I misspoke. It's a defect of the example to ignore the solver result and do nothing. I tested and the result reports failure (although |
What happened?
I went to try @joemasterjohn's Strandbeest example with SAP constraints,
bazel run //examples/multibody/strandbeest:run_with_motor
, but found this:The continuous time/bushing version works fine. A bit of digging indicates that the problem is with the inverse kinematics solve that sets the initial condition. The IK solve fails for the discrete-time plant, leading to an initial condition with some of the links under the ground slab:
Setting slightly more verbose options for the IK solve (
solver_options.SetOption(IpoptSolver::id(), "print_level", 5);
) reveals the following error message:Again, this error is only thrown with the SAP constrained version. The IK solve is successful with
--mbt_dt=0 --with_constraints=false
.Version
No response
What operating system are you using?
No response
What installation option are you using?
No response
Relevant log output
The text was updated successfully, but these errors were encountered: