ardupilot_gazebo仿真(一)
ardupilot_gazebo仿真
标签(空格分隔): 未分类
ardupilot_gazebo仿真 官网网址
代码更新地址
Ardupilot Gazebo Plugin & Models
Requirements :
Native Ubuntu Xenial(16.04 LTS) able to run full 3D graphics.
Note : Virtual Machine such as VMWare Player does not support full 3D graphics.
but, possible solution is here
Type follow in the terminal,
echo "export SVGA_VGPU10=0" >> ~/.bashrc
source ~/.bashrc
solution retreived from here http://answers.gazebosim.org/question/13214/virtual-machine-not-launching-gazebo/
ArduPilot setup for SITL launch
Gazebo version 7.x or 8.x
The gazebo9 branch will works on gazebo >= 9.x
Disclamer :
This is a playground until I get some time to push the correct patch to gazebo master (I got hard time to work with mercurial..)!
So you can expect things to not be up-to-date.
This assume that your are using Ubuntu 16.04
Usage :
I assume you already have Gazebo 7+ installed with ROS (or without).
If you don't have it yet, install ROS with sudo apt install ros-kinetic-desktop-full
(follow instruction here http://wiki.ros.org/kinetic/Installation/Ubuntu).
Or install directly gazebo8 from http://gazebosim.org/tutorials?tut=install_ubuntu
libgazebo7-dev or libgazebo8-dev must be installed.
For Gazebo 7
sudo apt-get install libgazebo7-dev
OR
For Gazebo 8
sudo apt-get install libgazebo8-dev
git clone https://github.com/SwiftGust/ardupilot_gazebo
cd ardupilot_gazebo
mkdir build
cd build
cmake ..
make -j4
sudo make install
Set Path of Gazebo Models / Worlds...
Open up .bashrc
sudo gedit ~/.bashrc
Copy & Paste Followings at the end of .bashrc file
source /usr/share/gazebo/setup.sh
export GAZEBO_MODEL_PATH=~/ardupilot_gazebo/models:${GAZEBO_MODEL_PATH}
export GAZEBO_MODEL_PATH=~/ardupilot_gazebo/models_gazebo:${GAZEBO_MODEL_PATH}
export GAZEBO_RESOURCE_PATH=~/ardupilot_gazebo/worlds:${GAZEBO_RESOURCE_PATH}
Install is done !!
Now launch a world file with a copter/rover/plane and ardupilot plugin, and it should work!
(I will try to add some world file and model later)
HELP
How to Launch :
Launch Ardupilot Software In the Loop Simulation for each vehicle.
On new terminal, Launch Gazebo with basic demo world.
在执行2nd之前需要在终端中source
source /usr/share/gazebo/setup.sh
ROVER
On 1st Terminal(Launch Ardupilot SITL)
sim_vehicle.py -v APMrover2 -f gazebo-rover -m --mav10 --map --console -I1
On 2nd Termianal(Launch Gazebo with Rover, Retrieved from Husky Model)
gazebo --verbose rover_ardupilot.world
COPTER (3DR IRIS)
On 1st Terminal(Launch Ardupilot SITL)
sim_vehicle.py -v ArduCopter -f gazebo-iris -m --mav10 --map --console -I0
On 2nd Terminal(Launch Gazebo with demo 3DR Iris model)
gazebo --verbose iris_ardupilot.world
PLANE
On 1st Terminal(Launch Ardupilot SITL)
sim_vehicle.py -v ArduPlane -f gazebo-zephyr -m --mav10 --map --console -I0
On 2nd Terminal(Launch Gazebo with demo Zephyr flying wing model)
gazebo --verbose zephyr_ardupilot_demo.world
In addition, you can use any GCS that can connect to the Ardupilot locally or remotely(will require connection setup).
If MAVProxy Developer GCS is uncomfortable. Omit --map --console arguments out of SITL launch.
And use APMPlanner2 or QGroundControl instead.
(Possibly MissionPlanner but require Windows PC)
Local connection with APMPlanner2/QGroundControl is automatic, and easier to use.
For APMPlanner2
Download it from here http://firmware.eu.ardupilot.org/Tools/APMPlanner/
and launch it in terminal or run executable
apmplanner2
For QGroundControl
Download it from here and follow the installation guide.
https://donlakeflyer.gitbooks.io/qgroundcontrol-user-guide/en/download_and_install.html
Multi-Vehicle simulation
This section explains how to connect any combination of multi-vehicles of ArduPilot
For the multi-vehicle connection, port number is increased by 10
In SITL launch argument (sim_vehicle.py)
-I 0 has FDM in/out ports of 9002/9003 / GCS connection UDP:14550
-I 1 has FDM in/out ports of 9012/9013 / GCS connection UDP:14560
-I 2 has FDM in/out ports of 9022/9023 / GCS connection UDP:14570
and so on...
You will need to edit your world for any combination of Rover, Plane, Copter, etc...
Additional Note for GCS Connection
You will also need to edit ArduPilot Parameter SYSID_THISMAV to be unique from one another for the GCS connection
Example
Look simulation of 3 IRIS quadcopter at once from Jonathan Lopes Florêncio
https://www.youtube.com/watch?v=3c7EhVMaqKY&feature=youtu.be
Troubleshooting
Missing libArduPilotPlugin.so... etc
In case you see this message when you launch gazebo with demo worlds, check you have no error after sudo make install.
If no error use "ls" on the install path given to see if the plugin is really here.
If this is correct, check with "cat /usr/share/gazebo/setup.sh" the variable GAZEBO_PLUGIN_PATH. It should be the same as the install path. If not use "cp" to copy the lib to right path.
For Example
sudo cp -a /usr/lib/x86_64-linux-gnu/gazebo-7.0/plugins/ /usr/lib/x86_64-linux-gnu/gazebo-7/
path mismatch is confirmed as ROS's glitch. It'll be fixed.
如果只用源码进行仿真,可能会出现旋翼飞行不稳定的情况。需要对参数进行调节,而这里貌似不能用AUTOTUNE自动调参的功能进行调整参数。用AUTOTUNE出现问题的原因可能是模型内部的限幅导致,飞机无法响应对应的PID参数,所以我们直接对飞行pid参数进行修改。
PSC_ Parameters
ATC_ Parameters
根据飞行状态对这两个参数修改
ATC_RAT_RLL_D 0.001000
ATC_RAT_RLL_P 0.155000
飞行稳定 可以进行后续仿真。
参数设置和查询
param show ATC_*
param set ATC_RAT_RLL_P 0.155
ATC_ACCEL_R_MAX 110000.000000
ATC_ACCEL_Y_MAX 27000.000000
ATC_ANGLE_BOOST 1.000000
ATC_ANG_LIM_TC 1.000000
ATC_ANG_PIT_P 4.500000
ATC_ANG_RLL_P 4.500000
ATC_ANG_YAW_P 4.500000
ATC_INPUT_TC 0.150000
ATC_RATE_FF_ENAB 1.000000
ATC_RATE_P_MAX 0.000000
ATC_RATE_R_MAX 0.000000
ATC_RATE_Y_MAX 0.000000
ATC_RAT_PIT_D 0.003600
ATC_RAT_PIT_FF 0.000000
ATC_RAT_PIT_FILT 20.000000
ATC_RAT_PIT_I 0.090000
ATC_RAT_PIT_IMAX 0.500000
ATC_RAT_PIT_P 0.150000
ATC_RAT_RLL_D 0.001000
ATC_RAT_RLL_FF 0.000000
ATC_RAT_RLL_FILT 20.000000
ATC_RAT_RLL_I 0.090000
ATC_RAT_RLL_IMAX 0.500000
ATC_RAT_RLL_P 0.155000
ATC_RAT_YAW_D 0.000000
ATC_RAT_YAW_FF 0.000000
ATC_RAT_YAW_FILT 2.500000
ATC_RAT_YAW_I 0.018000
ATC_RAT_YAW_IMAX 0.500000
ATC_RAT_YAW_P 0.180000
ATC_SLEW_YAW 6000.000000
ATC_THR_MIX_MAN 0.500000
ATC_THR_MIX_MAX 0.500000
ATC_THR_MIX_MIN 0.100000
ardupilot_gazebo仿真(一)的更多相关文章
- ardupilot_gazebo仿真(四)
ardupilot_gazebo仿真(四) 标签(空格分隔): 未分类 Multi-MAV simulation 参考官网给出的multi-vehicle-simulation的方法 在每次打开sim ...
- ardupilot_gazebo仿真(三)
ardupilot_gazebo仿真(三) 标签(空格分隔): 未分类 创建ROS node 实现对无人机的控制(软件在环) MAVROS MAVROS是ROS中的一个能够连接支持MAVLink地面站 ...
- ardupilot_gazebo仿真(二)
ardupilot_gazebo仿真(二) 标签(空格分隔): 未分类 在模型中添加sensor gezebo官网-sensor部分教程 gezebo官网-基础部分教程 Gazebo plugins ...
- 基于modelsim-SE的专业进阶仿真流程
基于modelsim-SE的专业进阶仿真流程 通过<基于modelsim-SE的简单仿真流程>和<调用altera IP核的仿真流程>是否感受到仿真流程中的繁琐步骤,特别是在m ...
- 调用altera IP核的仿真流程—下
调用altera IP核的仿真流程—下 编译 在 WorkSpace 窗口的 counter_tst.v上点击右键,如果选择Compile selected 则编译选中的文件,Compile All是 ...
- 调用altera IP核的仿真流程—上
调用altera IP核的仿真流程—上 在学习本节内容之后,请详细阅读<基于modelsim-SE的简单仿真流程>,因为本节是基于<基于modelsim-SE的简单仿真流程>的 ...
- 基于modelsim-SE的简单仿真流程—下
基于modelsim-SE的简单仿真流程—下 编译 在 WorkSpace 窗口的 counter_tst.v上点击右键,如果选择Compile selected 则编译选中的文件,Compile A ...
- 基于modelsim-SE的简单仿真流程—上
基于modelsim-SE的简单仿真流程 编写RTL功能代码 要进行功能仿真,首先得用需要仿真的模块,也就是RTL功能代码,简称待测试的模块,该模块也就是在设计下载到FPGA的电路.一个电路模块想要有 ...
- 室内定位系列(二)——仿真获取RSS数据
很多情况下大家都采用实际测量的数据进行定位算法的性能分析和验证,但是实际测量的工作量太大.数据不全面.灵活性较小,采用仿真的方法获取RSS数据是另一种可供选择的方式.本文介绍射线跟踪技术的基本原理,以 ...
随机推荐
- Mac使用GNU版本的sed
今天在mac下用sed试图替换\t ,结果发现不生效,Google之后发现mac作为unix分支的系统上的sed与GNU版本的sed行为不太一致. 使用以下命令安装GNU命令套件: brew inst ...
- 使用fir.im和蒲公英进行测试的一些注意事项
前言:使用fir.im和蒲公英进行测试的一些注意事项 最近公司的项目遇到了一个问题,有的用户的手机系统版本低于9.3高于9.0的存在崩溃的情况,8.x的系统的用户的有的界面的显示有问题(比如说图片严重 ...
- Interview Question Overload、Refactoring和Override?
Overload Overload我们百度翻译知道是超载的意思,不过我们一般称其为重载,在这里我们不纠结于它的翻译,我们来讲讲重载是什么意思,重载的好处.在下面我们以Overload来代表重载(为了记 ...
- 微信小程序腾讯云配置Tomcat https端口
在个人开发微信小程序时,发布之前要配置微信小程序的域名https及域名的SSL证书的申请及安装 我用的是腾讯云,SSL证书申请好之后,点击下载,解压文件夹,会有如图,根据你要配置的服务器是哪种,我是t ...
- eclipse的中文插件链接及使用方法
链接:http://www.eclipse.org/babel/downloads.php 帮助-->安装-->打开链接使用链接里面的语言包下载地址-->下载安装-->完成
- spring入门学习感悟
1:ioc:控制反转 控制权的转移,应用程序本身不负责依赖对象的创建和维护,而是有外部容器负责创建和维护的(获取依赖对象的过程被反转了) 2:di:依赖注入,它是一种控制反转的一种实现方法,ioc容器 ...
- BZOJ3668: [Noi2014]起床困难综合症(贪心 二进制)
Time Limit: 10 Sec Memory Limit: 512 MBSubmit: 2708 Solved: 1576[Submit][Status][Discuss] Descript ...
- vi/vim连续注释
知识点: 1-可视块模式方法 2-替换方法 3-自定义快捷键方式 今天刚好重新在linux上手工搭建完Lamp环境,用来下vi操作,一段时间不用就有些生疏了,正好经常要注释,回顾下自己会的方法,小结一 ...
- 帆软中使用switch将控件的显示值“传递”给单元格
如下图,控件的实际值和显示值是我们自定义的. 当我们选择控件时,想要在某个单元格内显示控件的显示值.一般我们在单元格内直接 $控件名 可以获得控件值.比如当我们选择事故数时,我们自然不能在单元格内直 ...
- C语言实现计算二进制数字1的个数
#include<stdio.h> #include<stdlib.h> int print_one_bits01(unsigned int value){ //0000 11 ...