[Bugfix] unstable hybrid robot example #542
Merged
+1
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previously,
contact_resolve_time
was hardcoded to 0.02 but now it is set to None with default value as twice thesubstep_dt
in the rigid solver. In hybrid robot setup, thedt
's of the rigid and the mpm solver are set to the same value to avoid drifting in coupling. However, this makes thecontact_resolve_time
becomes super small, leading to a stiff system and large impulse. Thus, we need to set thecontact_resolve_time
to a larger number (0.02) to fix the issue.Related issue: #476