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

Automatic Moment of Inertia Calculations for Basic Shapes #1299

Merged
merged 92 commits into from
Aug 30, 2023

Conversation

jasmeet0915
Copy link
Contributor

@jasmeet0915 jasmeet0915 commented Jul 13, 2023

🎉 New feature

Based on this proposal.

Summary

This PR adds Automatic Moment of Inertia Calculations for Basic Shapes (Box, Capsule, Cylinder, Ellipsoid and Sphere). As mentioned in the proposal the PR adds the following to the SDF Spec:

  • //inertial/@auto attribute to enable automatic calculations
  • //link/collision/density tag for mentioning the density for the collision

Note: This would require merging this PR which bumps the SDF Spec version to 1.11 for the addition of new tags

Demos & Usage Example

Demo 1: This demo shows 2 cylinders: one with default inertial values (right, green) and the other with automatic inertia calculations enabled (left, yellow).
The yellow cylinder uses <inertial auto="true" /> and <density>1240.0</density> for automatic calculations.

SDF snippet for the yellow cylinder
  <model name="cylinder2">
    <pose>0 4 1 0 0 0</pose>
    <link name="cylinder_link">
      <inertial auto="true" />
      <collision name="collision">
        <density>1240.0</density>
        <geometry>
          <cylinder>
            <radius>1</radius>
            <length>2</length>
          </cylinder>
        </geometry>
      </collision>
      <visual name="visual">
        <geometry>
          <cylinder>
            <radius>1</radius>
            <length>2</length>
          </cylinder>
        </geometry>
        <material>
          <diffuse>1.0 1.0 0.0 1.0</diffuse>
          <ambient>1.0 1.0 0.0 1.0</ambient>
          <specular>1.0 1.0 0.0 1.0</specular>
        </material>
      </visual>
    </link>
  </model>

cylinder_auto_inertia_demo

Demo 2: This demo shows a model with a link having 2 collisions: a cube with a cylinder on top of it.

Here the model uses <inertial auto="true" /> with <density>2.0</density> for the box collision and <density>4.0</density> for the cylinder.

SDF snippet of the model in the demo
  <model name="compound_model">
    <pose>0 0 1.0 0 0 0</pose>
    <link name="compound_link">
      <inertial auto="true" />
      <collision name="box_collision">
        <pose>0 0 -0.5 0 0 0</pose>
          <density>2.0</density>
        <geometry>
          <box>
            <size>1 1 1</size>
          </box>
        </geometry>
      </collision>
      <collision name="cylinder_compound_collision">
        <pose>0 0 0.5 0 0 0</pose>
        <density>4</density>
        <geometry>
          <cylinder>
            <radius>0.5</radius>
            <length>1.0</length>
          </cylinder>
        </geometry>
      </collision>

      <visual name="cylinder_visual">
        <pose>0 0 0.5 0 0 0</pose>
        <geometry>
          <cylinder>
            <radius>0.5</radius>
            <length>1.0</length>
          </cylinder>
        </geometry>
        <material>
          <ambient>1 1 0 1</ambient>
          <diffuse>1 1 0 1</diffuse>
          <specular>1 1 0 1</specular>
        </material>
      </visual>
      <visual name="box_visual">
        <pose>0 0 -0.5 0 0 0</pose>
        <geometry>
          <box>
            <size>1 1 1</size>
          </box>
        </geometry>
        <material>
          <ambient>1 0 0 1</ambient>
          <diffuse>1 0 0 1</diffuse>
          <specular>1 0 0 1</specular>
        </material>
      </visual>
    </link>
  </model>

compound_model_auto_inertia

TODO:

  • Enable the addition of the Inertias of multiple collisions (with something like what is done for the Capsule shape here). This is a work in progress here
  • Make auto an attribute of <inertial> tag instead and calculate mass and inertial pose. Update the proposal accordingly.
  • Return an error in case auto is set and link has no collisions
  • Change <material_density> tag to something less verbose like just <density> or <mass_density>. Update the proposal accordingly.
  • Change all MassMatrix functions to return gz::math::inertial as we are now calculating all inertial values (mass, mass matrix, inertial pose)
  • Add an Enum to ParserConfig to configure the CalculateInertial() function. Update the function to use the enum from the config.
  • Update spec to add //link/inertial/density element.
  • Update the Proposed Implementation section in the proposal
  • Add MassMatrix Methods to the Python API
  • Add tests

Checklist

  • Signed all commits for DCO
  • Added tests
  • Added example and/or tutorial
  • Updated documentation (as needed)
  • Updated migration guide (as needed)
  • Consider updating Python bindings (if the library has them)
  • codecheck passed (See contributing)
  • All tests passed (See test coverage)
  • While waiting for a review on your PR, please help review another open pull request to support the maintainers

Note to maintainers: Remember to use Squash-Merge and edit the commit message to match the pull request summary while retaining Signed-off-by messages.

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
…phere

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
…for each collision

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
sdf/1.11/collision.sdf Outdated Show resolved Hide resolved
include/sdf/Box.hh Outdated Show resolved Hide resolved
include/sdf/Capsule.hh Outdated Show resolved Hide resolved
include/sdf/Collision.hh Outdated Show resolved Hide resolved
include/sdf/Cylinder.hh Outdated Show resolved Hide resolved
include/sdf/Ellipsoid.hh Outdated Show resolved Hide resolved
include/sdf/Geometry.hh Outdated Show resolved Hide resolved
include/sdf/Sphere.hh Outdated Show resolved Hide resolved
@@ -0,0 +1,2 @@
<convert name="sdf">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why this is empty ? remove ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As mentioned in the migration.md file in the 'Note on Backward Compatibility' section, the .convert files are used to facilitate forward conversion and are present in all the spec directories.

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
@jasmeet0915 jasmeet0915 force-pushed the jasmeet/auto_moment_of_inertia branch from b0c6a9a to b092904 Compare July 17, 2023 19:39
Copy link
Collaborator

@ahcorde ahcorde left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should add these new methods to the Python API.

std::optional< gz::math::MassMatrix3d >  MassMatrix(const double _density);

src/Collision.cc Outdated Show resolved Hide resolved
src/Collision.cc Outdated Show resolved Hide resolved
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
…rameter

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
…nfiguration

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
include/sdf/Collision.hh Outdated Show resolved Hide resolved
include/sdf/Box.hh Outdated Show resolved Hide resolved
include/sdf/Collision.hh Outdated Show resolved Hide resolved
include/sdf/Geometry.hh Show resolved Hide resolved
include/sdf/Root.hh Outdated Show resolved Hide resolved
src/Collision.cc Outdated Show resolved Hide resolved
src/Collision_TEST.cc Outdated Show resolved Hide resolved
src/Link.cc Show resolved Hide resolved
src/Link.cc Show resolved Hide resolved
src/Link.cc Outdated Show resolved Hide resolved
… Ellipsoid & Sphere

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
- Updated all functions returning Errors object to take errors object as an output param
- Updated function params to take errors as a first params

Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
@azeey azeey added the 🎵 harmonic Gazebo Harmonic label Aug 28, 2023
@azeey azeey changed the base branch from main to sdf14 August 28, 2023 23:07
include/sdf/Collision.hh Outdated Show resolved Hide resolved
include/sdf/Root.hh Outdated Show resolved Hide resolved
src/Collision.cc Outdated Show resolved Hide resolved
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
@azeey azeey requested a review from ahcorde August 29, 2023 21:50
Signed-off-by: Jasmeet Singh <jasmeet0915@gmail.com>
Copy link
Collaborator

@azeey azeey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! And thanks for iterating patiently :)

@azeey azeey dismissed ahcorde’s stale review August 30, 2023 14:41

All feedback seems to be addressed

@azeey azeey merged commit 7de58db into gazebosim:sdf14 Aug 30, 2023
4 of 5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
beta Targeting beta release of upcoming collection 🎵 harmonic Gazebo Harmonic
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants