Ignition Physics

API Reference

5.1.0
Physics simulation concepts

This tutorial introduces simulation concepts that are used in Ignition Physics.

Prerequisites

Physics simulation features

Here is a snapshot of simulation features supported by ign-physics:

  • Collision detection: ODE, Bullet, various collision shapes and mesh
  • Kinematics; joint, arbitrary body shapes, various kinematic states like transmoration, velocity, acceleration etc., inverse kinematics
  • Dynamics: joint constraints, mass matrix, gravity, forces and frictions, closed-loop structures

Ignition adopts SDFormat structure to describe visual elements and also the dynamic physics aspects. To get started on SDFormat 1.7, refer to this SDFormat specification. For a comprehensive tutorial for constructing your robot model from SDFormat, refer to this Building robot tutorial.

Physics concepts in Ignition Gazebo simulation

In this tutorial, we will show how to manipulate and visualize some physics aspects using demos on Ignition Gazebo.

All demos can be found in ign-gazebo/examples/worlds folder.

Differential drive

This demo world demonstrates how we can control simulated differential drive on cars depending on physics engines and visualize the collision concept. To run the demo world, download the SDFormat file by:

wget https://raw.githubusercontent.com/ignitionrobotics/ign-gazebo/main/examples/worlds/diff_drive.sdf -P ~
wget https://raw.githubusercontent.com/ignitionrobotics/ign-gazebo/main/examples/worlds/velocity_control.sdf -P ~

Then run the simulation:

# [Optional] first source the directory if installed by source
source ~/workspace/install/setup.bash
# then run diff_drive demo with Dartsim
ign gazebo diff_drive.sdf # default Dartsim
# or run demo with TPE
ign gazebo velocity_control.sdf --physics-engine ignition-physics-tpe-plugin # specify TPE as physics engine

To control the car movement, in a separate terminal window, we publish a Twist message using Ignition Transport library:

ign topic -t "/model/vehicle_blue/cmd_vel" -m ignition.msgs.Twist -p "linear: {x: 1.0}, angular: {z: 0.5}"

Then press the Play button to start the simulation. This command tells the car to move in its coordinate frame with velocity 1.0 meter per second in the X-axis and angular velocity of 0.5 radians per second in Z-axis.

Note that the mechanism to move the car is different depending on the used physics engine, see Use different physics engines for details on how to change physics engine used by simulation.

Dartsim moves the car by applying force on the joints, whereas TPE directly set velocity on the model.

Monitor the model and link pose

We can monitor the model pose by selecting the moving car and then select the drop-down list Pose. Moreover, we could also read the model links' poses relative to their parent link by selecting the corresponding link on the model tree:

diff_drive_link.gif

Note that using the model tree as shown in the above gif, we can view the parameters and properties such as visual or collision of each link or joint in the model. For more detail about the kinematics of the model tree, see this tutorial.

Collision effect

Ignition Gazebo also simulates realistic collision effect. While the vehicle_blue car is moving in a circle, we can move the vehicle_green to be on vehicle_blue's upcoming path. The blue car will then push the green car in the following demo.

diff_drive_collision.gif

To see where these collision parameters are set in SDFormat and how it works, please see this SDFormat tutorial.

Lift Drag

The Lift Drag demo world shows how joint force, torque, and pressure are supported in Ignition Physics. To run the demo, download by:

wget https://raw.githubusercontent.com/ignitionrobotics/ign-gazebo/main/examples/worlds/lift_drag.sdf -P ~

Run demo in Ignition Gazebo by:

ign gazebo lift_drag.sdf

To see how the rotor lifts the cube due to wind force pressure, in a separate terminal window, we can publish a Double message represeting the torque (Nm) applying to the rotor rod axis:

ign topic -t "/model/lift_drag_demo_model/joint/rod_1_joint/cmd_force" -m ignition.msgs.Double -p "data: 0.7"

Then please press Play button to start the simulation.

ign topic -t "/model/lift_drag_demo_model/joint/rod_1_joint/cmd_force" -m ignition.msgs.Double -p "data: 0.0"

You will see the cube drops due to no lift force from support torque on the rod, and the blades will stop after some time due to friction.

lift_drag_torque.gif

Several simulation features come into effect in this demo. The lift and drag force is computed by taking the wind pressure, mass of the cude, and gravity into account, and the resulting force is exerted on multiple joints. Dartsim is used to power this demo.

Buoyancy

This demo world shows how buoyancy is supported in Ignition Physics. This world contains the following three models:

  1. submarine: A simple submarine model that floats in place.
  2. submarine_sinking: A simple submarine model that is not buoyant and sinks.
  3. submarine_buoyant: A simple submarine model that is buoyant and floats.

To run the demo, download the Buoyancy demo to your home folder by:

wget https://raw.githubusercontent.com/ignitionrobotics/ign-gazebo/main/examples/worlds/buoyancy.sdf -P ~

Run demo on Ignition Gazebo by:

ign gazebo buoyancy.sdf

After pressing the Play button, demo will run as below:

buoyancy.gif

The buoyancy concept is implemented by simulating fluid density and applying the force on the object in the fluid proportional to its volume. Hence, you can change the model buoyancy by modifying its inertia, see SDFormat link specification on how to do that.

Pendulum

This demo world demonstrates how simulated inertia and gravity affect the object movement by showing free swing of the pendulum. Download the Pendulum demo to your home folder by:

wget https://raw.githubusercontent.com/ignitionrobotics/ign-gazebo/main/examples/worlds/video_record_dbl_pendulum.sdf -P ~

and start the Pendulum demo on Ignition Gazebo by:

ign gazebo video_record_dbl_pendulum.sdf

After pressing the Play button, you will see that the pendulum will oscillate around its main revolute joint forever due to lack of friction (it is undeclared in the SDFormat file).

pendulum.gif

The oscillation period or the max angular speed of the joint will change if we modify the inertia of the rods. According to the demo below, you will see that gravity is defined as -9.8 m/s^2 on the Z-axis. Refer to link specification for modifying the inertia and mass of the links.

Multicopter

This demo world shows how Ignition Physics supports gravity, actuators and inertia to control object velocity. Download the Multicopter demo to your home folder by:

wget https://raw.githubusercontent.com/ignitionrobotics/ign-gazebo/main/examples/worlds/multicopter_velocity_control.sdf -P ~

and start the Multicopter demo on Ignition Gazebo by:

ign gazebo multicopter_velocity_control.sdf

To control the multicopter to ascend and hover, in a separate terminal window, send a Twist message to command the X3 multicopter ascending 0.1 m.s as follow:

ign topic -t "/X3/gazebo/command/twist" -m ignition.msgs.Twist -p "linear: {x:0 y: 0 z: 0.1} angular {z: 0}"

then hovering:

ign topic -t "/X3/gazebo/command/twist" -m ignition.msgs.Twist -p " "
hover.gif

Do the same for the X4 multicopter. After pressing the Play button, you will see both of the multicopters will ascend, this demonstrates how the physics engine utilizes model kinematics and dynamics to support simulating complex model and its controller. For more details about the multicopter controller, please see MulticopterVelocityControl.cc.