Skip to content
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

Add entry to Migration guide about the updated auto-inertia behavior #1528

Merged
merged 3 commits into from
Jan 16, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ forward programmatically.
This document aims to contain similar information to those files
but with improved human-readability..


## libsdformat 15.1.1 to 15.2.0

1. Auto-inertia computation now takes into account the mass if specified.
Previously when auto-inertia is set to true, mass is ignored and the inertia
matrix is computed based on the collision densities. The new behavior is that
if mass is specified, the inertial values will be computed to preserve the
specified mass. The is done by first resolving the inertia from all
collisions using density as usual, it is then normalized to get unit inertia,
and finally the unit inertia is scaled so that the resulting mass matches the
specified mass.
iche033 marked this conversation as resolved.
Show resolved Hide resolved

## libsdformat 14.x to 15.x

### Additions
Expand Down
Loading