Gazebo附带了许多工具和实用程序。 这些教程说明了这些可用的工具,以及如何使用它们。

主要有:

1 记录和播放

2 日志过滤

3 应用力/扭矩

4 HDF5数据集

官网介绍通俗具体,非常容易,请参考附件。

附件--官方教程

Logging and playback

Overview

This tutorial explains how to use the Gazebo logging capabilities to record your simulation and then reproduce it afterwards, using either the GUI or the command line.

Gazebo log files

Gazebo log files are compressed .log files which contain an initial full description of the whole world, followed by a series of "world states".

The initial description contains complete information about everything in the world, from the scene to the entities present.

After that, every time something changes in simulation, a new world state is recorded. World states are much simpler, as they only contain information about what changed, such as:

  • Simulation statistics such as the current simulation time and the number of physics iterations.

  • Current state of each model in the scene, as well as the state of each link and joint in the model. This includes information such as instantaneous pose, velocity, acceleration and forces.

  • Current pose of each light in the world.

Tip: You can find the whole spec for the world state here.

In this tutorial we will record a few log files and then take a peek inside them at the end.

Record a log

Logging from the GUI

  1. Start your simulation. Here, as an example, we have a simple world with a double pendulum.

  2. Click on the logging icon on the top right, or hit Ctrl+D to bring up the Data Logger.

  3. You can choose the directory where your log file will be saved by clicking the Browse button. By default, log files go to the ~/.gazebo/log directory. In this example, we will save it in the ~/logs/double_pendulum/ directory.

  4. Click on the red button to start recording. You should see the number of bytes in your log file increasing on the right.

    Note: For efficiency, only models and lights which move over time are logged. If your scene is static, the number of bytes in your log file will not increase. This also means that the number of samples in your log file may be different from the number of iterations in simulation.

  5. Click on the red button again to stop logging.

  6. Expand Recordings to see the path to the state.log file which was generated. It will be inside a time-stamped directory.

Logging from the command line

From the command line, it is possible to log the whole simulation from the moment Gazebo starts running until it stops, or to trigger logging from an arbitary time.

Logging the whole simulation

As an example, you can record the random_velocity.world as follows:

gazebo -r --record_path ~/logs/random_velocity worlds/random_velocity.world

You can see a list of all of the available logging options by running gazebo --help.

  • -p [--play] arg: Play a log file.

  • -r [ --record ]: Record a log from the moment Gazebo is opened until it is closed.

  • --record_encoding arg: Compression encoding format for log data. The options are zlib (default), bz2 and txt.

The log file will only be terminated when Gazebo is closed. You can check the file was created by looking into the path given:

$ ls ~/logs/random_velocity/
state.log

Logging part of the simulation

Gazebo also provides the gz log tool, which can be used to trigger logging at any moment. While Gazebo is running, open another terminal and run the following to start recording:

gz log -d 1

And to stop:

gz log -d 0

Check out gz log --help for other options.

Play back a log file

Once you have a log file, you can replay it visually or introspect it in several ways.

Visualize in GUI

Currently, it is not possible to open a log file from the GUI, so playback must be started from the command line. Simply start Gazebo using the -p option to specify a log file, such as the one we recorded earlier:

gazebo -u -p ~/logs/double_pendulum/2016-01-25T15\:09\:49.677400/gzserver/state.log

Tip: The -u option starts the log paused.

Gazebo will open in playback mode. You can play, pause, rewind and step through the playback.

  • Use Play / Pause to stop the playback.

  • Use Rewind / Forward to skip to the beginning / end of the file.

  • Use Step back / Step forward to skip samples. The number of samples skipped each time you press a step button can be changed in the box below. Samples might be any number of iterations and seconds apart.

  • Drag the current time marker and drop it to skip through the log.

  • Input a current time on the right to skip to that sample.

Command line tools

As mentioned above, the gz log tool provides several options for introspecting your log file. Check out this tutorial for log filtering, for example.

Here, let's quickly go over how you would take a look at the recorded states.

We'll use -s to step through a recorded file, like this:

gz log -s -f ~/logs/double_pendulum/2016-01-25T15\:09\:49.677400/gzserver/state.log

You'll see the full initial SDF representation of the world, something like this:

<?xml version='1.0'?>
<gazebo_log>
<header>
<log_version>1.0</log_version>
<gazebo_version>7.0.0~pre1</gazebo_version>
<rand_seed>10622214</rand_seed>
<log_start>43 380000000</log_start>
<log_end>69 651000000</log_end>
</header> <chunk encoding='txt'><![CDATA[
<sdf version ='1.6'>
<world name='default'>
(...)
<light name='sun' type='directional'>
(...)
</light>
<model name='ground_plane'>
(...)
</model>
<model name='double_pendulum_with_base'>
(...)
</model>
</world>
</sdf>]]></chunk> --- Press space to continue, 'q' to quit ---

As you press space, you will step through the subsequent states. You'll note that the states are more compact and only contain information about what has changed in the world. Here's an example of a state:

<chunk encoding='txt'><![CDATA[
<sdf version='1.6'>
<state world_name='default'>
<sim_time>43 380000000</sim_time>
<real_time>43 478499228</real_time>
<wall_time>1453763389 677873530</wall_time>
<iterations>43380</iterations>
<model name='double_pendulum_with_base'><pose>1.140 -1.074 -0.000 0.000 -0.000 0.000 </pose><scale>1.000 1.000 1.000</scale><link name='base'><pose>1.13998 -1.07367 -0.00000 0.00000 0.00000 -0.00042 </pose><velocity>-0.0000 0.0000 -0.0005 0.0004 0.0030 0.0001 </velocity></link><link name='lower_link'><pose>1.38969 -1.79815 1.41059 -2.45351 0.00000 -0.00042 </pose><velocity>0.0042 -0.2557 0.2659 1.9694 0.0048 0.0001 </velocity></link><link name='upper_link'><pose>1.13999 -1.07367 2.10000 2.33144 -0.00000 -0.00042 </pose><velocity>0.0063 -0.0008 -0.0005 -0.3739 0.0032 0.0001 </velocity></link></model><model name='ground_plane'><pose>0.000 0.000 0.000 0.000 -0.000 0.000 </pose><scale>1.000 1.000 1.000</scale><link name='link'><pose>0.00000 0.00000 0.00000 0.00000 -0.00000 0.00000 </pose><velocity>0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 </velocity></link></model></state></sdf>
]]></chunk> --- Press space to continue, 'q' to quit ---

Note that there's no information for the sun or the ground_plane, since they are not moving.

Log filtering

Introduction

State logs are recordings of world state information from Gazebo. State includes pose, velocity, acceleration, and forces applied to all links of all models. Gazebo will only record state information for models that change over time. A state log file contains a header, the initial world description, and a time series of state.

Gazebo Log Command line tool

Gazebo ships with a logging utility that is accessed via the gz log command.

View the help information using:

gz help log

or

gz log -h

Example Usage

Tip: Check out the tutorial on logging and playback for an overview of ways to record a log.

Step 1: Create a state log file

Start by removing old log files

rm -rf ~/.gazebo/log/*

We will use the PR2 world to create a state log file.

Start by running the Gazebo server with the -r command line option

gzserver -r worlds/pr2.world

After a few seconds, stop the server using ctrl-c.

A new time stamped directory should exist in ~/.gazebo/log with one subdirectory and a state.log file. Here is an example

~/.gazebo/log/2013-07-25T07\:29\:05.122275/gzserver/state.log

You can verify this log file by replaying it in Gazebo.

gazebo -p ~/.gazebo/log/*/gzserver/state.log

Step 2: Filter a state log file

The gz log command line tool provides mechanisms for stepping through a log file and echoing the contents of a log file to screen. The echo to screen feature can be combined with a filter to produce a log file that contains specific information such as just the pose of models and links.

Try echoing the recorded state log file to screen.

gz log -e -f ~/.gazebo/log/*/gzserver/state.log

You should see a lot of information scroll by.

Now let's remove all velocity, acceleration, and force information from the log file. This will leave just pose information.

gz log -e -f ~/.gazebo/log/*/gzserver/state.log --filter *.pose/*.pose

The --filter option is a flexible command line argument to extract information from a log file.

It is also possible to filter based on simulation time using a Hz filter. For example, we can output state information at 30 Hz using:

gz log -e -f ~/.gazebo/log/*/gzserver/state.log -z 30

These filters can be combined and piped to a file for playback. This may take some time depending on the size of the state.log.

gz log -e -f ~/.gazebo/log/*/gzserver/state.log -z 30 --filter *.pose/*.pose > /tmp/filtered_state.log

This log file can then be replayed in Gazebo

gazebo -p /tmp/filtered_state.log

Applying Force/Torque

Introduction

This tutorial will explain how to apply force and/or torque to models during simulation using the graphical user interface.

Applying force and torque examples

Let's go through an example of applying force and torque to simple models. Open Gazebo and from the insert tab, insert a Simple Arm into the scene. Then, from the top toolbar, insert a box. Make sure the simulation is not paused.

Apply force to a link

We want to apply force to a specific link in the Simple Arm model. On the World tree, right-click arm_wrist_lift and choose Apply Force/Torque. A dialog will pop up and you'll see a straight arrow and a curved arrow attach to the arm.

On the dialog, write 100 N on the Y field under Force and press Enter, the arm will start rotating slightly. The force was applied in the link's Y direction for a single time-step, which is in the order of milliseconds, thus the need for such a large force.

Apply torque to a link

On Apply to link, select arm_elbow_pan, the arrows will move to this link. Under torque, write 100 Nm on the Z field and press Apply Torque a few times to see the arm rotate slightly.

Apply force with an offset

Now let's apply force to the box. Right-click the box in the scene and choose Apply Force/Torque. A new dialog will pop up.

Under Force, type 1000 N on the X field. Then under Application point, press the up arrow in the Y field until it reaches 1 m, you'll see the arrow moving as you do it. Press Enter a few times to and the box will rotate. Hold Enter to repeatedly apply the force and make the box spin faster.

The interface explained

Note: If you apply force and/or torque while the simulation is paused, they will accumulate and be applied all at once when the simulation is unpaused.

Force

  • X, Y, Z: Each field specifies how much force will be applied on that direction. The frame is fixed to the link.

  • Mag: The total magnitude of the force which will be applied, which is the Euclidean norm of the 3 forces above. Changing the magnitude changes the XYZ fields proportionally, maintaining the force direction.

  • Clear: Pressing this button will zero the XYZ and Mag fields.

  • Application point: By default, force is applied to the link's center of mass. Here you can edit the XY and Z fields to give the force an offset with respect to the link's origin expressed in the link's frame. Select Center of mass again to fill the XYZ fields with its coordinates.

    Tip: Right-click the model and choose View -> Center of mass to see its position. You might want to also make the model transparent for that.

  • Apply Force: Click this to apply only force for one time step. Keep in mind that time steps are in the order of milliseconds, so relatively large forces are needed in order to apply a significant impulse.

Torque

  • X, Y, Z: Each field specifies how much torque will be applied about that axis. The frame is fixed to the link.

  • Mag: The total magnitude of the torque which will be applied, which is the Euclidean norm of the 3 torques above. Changing the magnitude changes the XYZ fields proportionally, maintaining the torque direction.

  • Clear: Pressing this button will zero the XYZ and Mag fields.

  • Apply Torque: Click this to apply only torque for one time step. Keep in mind that time steps are in the order of milliseconds, so relatively large torques are needed in order to apply a significant angular impulse.

    Note: Torque is always applied about the center of mass.

Apply All

Force and torque are applied at the same time, i.e. apply a wrench. Hold enter or click it repeatedly to apply multiple times.

Rotation tool

The arrows directions will always match the directions specified in the dialog. From the dialog, the direction can be changed by editing the numbers on the XYZ fields. From the scene, the direction can be changed by dragging the pink circles around the arrows.

Tip: The pink circles are attached to the highlighted arrow. To rotate the other arrow, first click it to attach the circles to it and then drag them normally.

Instrument HDF5 Datasets

Introduction

Instrument tools are provided to dump physical data into HDF5 format. The datasets, together with the Benchmark Problems for Multibody Dynamis (BPMD) framework are used to compare different methods in solving multibody systems with bilateral joints and unilateral frictional contacts in an unbiased way. These datasets will help researchers to concentrate on analysis of existing methods and construction of more accurate solvers, without worrying about implementation of the whole physics engine.

Example Usage

Install hdf5

sudo apt-get install libhdf5-dev

Build Gazebo

This HDF5 instrument tool requires building Gazebo from source, with the cmake parameter HDF5_INSTRUMENT [default False] as True. Learn how to build Gazebo from source

cd ~/gazebo
mkdir build
cd build
cmake -DHDF5_INSTRUMENT=True ../
make -j4
sudo make install

Collect Datasets

Use only gzserver

./test/integration/INTEGRATION_physics_inertia_ratio

Use the world file

gazebo ~/gazebo/worlds/friction_demo.world

Then a file named ode_frames.hdf5 will be generated at the directory exactly where the above command is run.

View the HDF5 file

hdfvivew is used to open the hdf5 files. You can install it via the terminal:

sudo apt-get install hdfview

Then open the stored file with:

hdfview ode_frames.hdf5

A hierarchical file shows up:

Note: The instrument tool will save hierarchical data for each time step, so it will be slow to write the data into the ode_frames.hdf5 file. Be patient, especially for complex simulation scenarios such as Atlas robots or many body simulation.

Gazebo機器人仿真學習探索筆記(六)工具和实用程序的更多相关文章

  1. Gazebo機器人仿真學習探索筆記(二)基本使用說明

    在完成Gazebo7安裝後,需要熟悉Gazebo,方便之後使用. 部分源代碼可以參考:https://bitbucket.org/osrf/gazebo/src/ 如果還沒有安裝請參考之前內容完成安裝 ...

  2. Gazebo機器人仿真學習探索筆記(三)機器人模型

    gazebo_models:https://bitbucket.org/osrf/gazebo_models 模型庫下載,可以參考如下命令: ~/Rob_Soft/Gazebo7$ hg clone ...

  3. Gazebo機器人仿真學習探索筆記(四)模型編輯

    模型編輯主要是自定義編輯物體模型構建環境,也可以將多種模型組合爲新模型等,支持外部模型導入, 需要注意的導入模型格式有相應要求,否在無法導入成功, COLLADA (dae), STereoLitho ...

  4. Gazebo機器人仿真學習探索筆記(一)安裝與使用

    Gazebo提供了多平臺的安裝和使用支持,大部分主流的linux,Mac以及Windows,這裏結合ROS以Ubuntu爲例進行介紹. 首先是參考資料:http://gazebosim.org/tut ...

  5. Gazebo機器人仿真學習探索筆記(七)连接ROS

    中文稍后补充,先上官方原版教程.ROS Kinetic 搭配 Gazebo 7 附件----官方教程 Tutorial: ROS integration overview As of Gazebo 1 ...

  6. Gazebo機器人仿真學習探索筆記(五)環境模型

    環境模型構建可以通過向其中添加模型實現,待之後補充,比較有趣的是建築物模型, 可以編輯多層樓層和房間,加入樓梯,窗戶和牆壁等,具體可以參考附錄,等有空再補充. 起伏地形環境構建可以參考之前內容:在Ga ...

  7. ROS_Kinetic_x 基於ROS和Gazebo的RoboCup中型組仿真系統(多機器人協作)

    國防科學技術大學發布了RoboCup中型組仿真平臺,基於ROS和Gazebo設計. 該平臺可以用於多機器人協作研究.參考資料如下: ROS新聞:1    http://www.ros.org/news ...

  8. ROS常用三維機器人仿真工具Gazebo教程匯總

    參考網址: 1. http://gazebosim.org/tutorials 2. http://gazebosim.org/tutorials/browse Gazebo Tutorials Ga ...

  9. ROS_Kinetic_x 目前已更新的常用機器人資料 rosbridge agvs pioneer_teleop nao TurtleBot

    Running Rosbridge Description: This tutorial shows you how to launch a rosbridge server and talk to ...

随机推荐

  1. java加密算法AES与RSA

    1.commons-codec使用 commons-codes 常用工具类:DigestUtils,Base64,Hex 1.1 md5 String text = "hello,md5&q ...

  2. 理解error和exception之间的区别

    很多程序员不清楚error和exception之间的区别,这区别对于如何正确的处理问题而言非常重要(见附1,"简要的叙述error和exception").就像Mary Campi ...

  3. pyquery 的用法 --爬虫解析库

    如果你对Web有所涉及,如果你比较喜欢用CSS选择器,如果你对jQuery有所了解,那么这里有一个更适合你的解析库--pyquery. 接下来,我们就来感受一下pyquery的强大之处. 1. 准备工 ...

  4. [HNOI 2008]GT考试

    Description 题库链接 问你长度为 \(n\) 的可含前导零的数字串中,不含长度为 \(m\) 的子串 \(X\) 有多少个,取模. \(1\leq n\leq 10^9,1\leq m\l ...

  5. ●codeforces 553E Kyoya and Train

    题链: http://codeforces.com/problemset/problem/623/E 题解: FFT,DP 题意: 一个有向图,给出每条边的起点u,终点v,费用c,以及花费每种时间的概 ...

  6. 51 nod 1405 树的距离之和

    1405 树的距离之和 基准时间限制:1 秒 空间限制:131072 KB 分值: 40 难度:4级算法题   给定一棵无根树,假设它有n个节点,节点编号从1到n, 求任意两点之间的距离(最短路径)之 ...

  7. Codeforces 2B. The least round way

    There is a square matrix n × n, consisting of non-negative integer numbers. You should find such a w ...

  8. hdu 1130 How Many Trees?(Catalan数)

    How Many Trees? Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

  9. bzoj3685普通van Emde Boas树 线段树

    3685: 普通van Emde Boas树 Time Limit: 9 Sec  Memory Limit: 128 MBSubmit: 1932  Solved: 626[Submit][Stat ...

  10. Python中dict的功能介绍

    Dict的功能介绍 1. 字典的两种函数(方法) 1. 字典的内置函数 包含关系 格式:x.__contains__(key)等同于key in x 例如:dic = {'ab':23,'cd':34 ...