# IntelligentUAVPathPlanningSimulationSystemS **Repository Path**: moscue/intelligent-uavpath-planning-simulation-system-S ## Basic Information - **Project Name**: IntelligentUAVPathPlanningSimulationSystemS - **Description**: 智能无人机路径规划仿真系统是一个具有操作控制精细、平台整合性强、全方向模型建立与应用自动化特点的软件。它以A、B两国在C区开展无人机战争为背景,该系统的核心功能是通过仿真平台规划无人机航线,并进行验证输出,数据可导入真实无人机,使其按照规定路线精准抵达战场任一位置,支持多人多设备编队联合行动。 - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 254 - **Created**: 2022-01-18 - **Last Updated**: 2024-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IntelligentUAVPathPlanningSimulationSystemS Drone智能无人机路径规划仿真系统是一个具有操作控制精细、平台整合性强、全方向模型建立与应用自动化特点的软件。它以A、B两国在C区开展无人机战争为背景,该系统的核心功能是通过仿真平台规划无人机航线,并进行验证输出,数据可导入真实无人机,使其按照规定路线精准抵达战场任一位置,支持多人多设备编队联合行动。
#### QQ交流群:809473689 #### 加微信-进入交流群:wwy18795980897 ### [视频简介](https://www.yuque.com/u12074055/kb/qqkaw9) ## 一、主要特点 ![智能无人机路径规划仿真系统](https://images.gitee.com/uploads/images/2021/0125/233607_f09b2d25_2323666.jpeg "13.jpg")
系统以开源无人机仿真平台SITL为支撑,通过FlightGear渲染真实战场环境,集成了动力学模型建模、二维俯视、三维模拟、脚本控制、地面站监控、数据处理等功能,此外,仿真系统支持加载多种全球地图,模拟各大重点地域的三维环境,可应用于全球各处遥感监测的场景中。 ### 1. 软件界面 ![软件界面](https://images.gitee.com/uploads/images/2021/0125/233744_ba69880f_2323666.png "1.png") ### 2. 软件架构(部分扩展功能的插件待实现) ![软件架构](https://images.gitee.com/uploads/images/2021/0125/233759_e596a868_2323666.png "2.png") ### 3. 代码编写 ![代码编写](https://images.gitee.com/uploads/images/2021/0125/233814_c0aa0ba5_2323666.png "3.png") ### 4. 多维视图 #### 二维视图(一) ![二维视图(一)](https://images.gitee.com/uploads/images/2021/0125/233838_febcde95_2323666.png "4.png") #### 二维视图(二) ![二维视图(二)](https://images.gitee.com/uploads/images/2021/0125/233900_9a21536c_2323666.png "5.png") #### 三维视图 ![三维视图](https://images.gitee.com/uploads/images/2021/0125/233925_c9f2e081_2323666.png "6.png") ### 5. 无人机控制 #### 控制台控制 ![控制台控制](https://images.gitee.com/uploads/images/2021/0125/233942_e93cbff8_2323666.png "7.png") #### 智能控制 ![智能控制](https://images.gitee.com/uploads/images/2021/0126/181402_cd1f8329_2323666.png "改git.png") #### 地面站控制 ![地面站控制](https://images.gitee.com/uploads/images/2021/0125/234015_bc90af97_2323666.png "9.png") ### 6. 制定飞行任务 #### 飞行任务(一) ![飞行任务(一)](https://images.gitee.com/uploads/images/2021/0125/234038_f5448a7f_2323666.png "10.png") #### 飞行任务(二) ![飞行任务(二)](https://images.gitee.com/uploads/images/2021/0125/234057_37ff1cc1_2323666.png "11.png") #### 飞行任务(三) ![飞行任务(三)](https://images.gitee.com/uploads/images/2021/0125/234121_a8022c2e_2323666.png "12.png") ### 7. 路径规划 路径算法是基于Huiming Zhou的开源算法库(zhm-real/PathPlanning)的再开发,增加了无人机模拟、地理坐标转换、leaflet可视化等元素。 #### 目录导图
drone_PathPlanning │ fence.txt │ leaflet_folium_plot.py │ mission.waypoints │ ├─folium-0.12.1 │ ├─leaflet │ ├─results │ CheckZorder.html │ us-states.json │ US_Unemployment_Oct2012.csv │ ├─Sampling_based_Planning │ ├─algorithm_mission_rrt2D │ │ algorithm_mission_batch_informed_trees.waypoints │ │ algorithm_mission_dubins_rrt_star.waypoints │ │ algorithm_mission_dynamic_rrt.waypoints │ │ algorithm_mission_extended_rrt.waypoints │ │ algorithm_mission_fast_marching_trees.waypoints │ │ algorithm_mission_informed_rrt_star.waypoints │ │ algorithm_mission_rrt.waypoints │ │ algorithm_mission_rrt_connect.waypoints │ │ algorithm_mission_rrt_star.waypoints │ │ algorithm_mission_rrt_star_smart.waypoints │ │ │ ├─rrt_2D │ │ RRT │ │ RRT-Connect │ │ Extended-RRT │ │ Dynamic-RRT │ │ RRT* │ │ Informed RRT* │ │ RRT* Smart │ │ Anytime RRT* │ │ Closed-Loop RRT* │ │ Spline-RRT* │ │ Fast Marching Trees (FMT*) │ │ Batch Informed Trees (BIT*) │ │ │ ├─rrt_2D_路径优化效果图 │ │ │ └─rrt_3D │ └─Search_based_Planning ├─algorithm_mission_Search2D │ algorithm_mission_Anytime_D_star.waypoints │ algorithm_mission_ARAstar.waypoints │ algorithm_mission_Astar.waypoints │ algorithm_mission_Best_First.waypoints │ algorithm_mission_bfs.waypoints │ algorithm_mission_Bidirectional_a_star.waypoints │ algorithm_mission_Bidirectional_dfs.waypoints │ algorithm_mission_Bidirectional_Dijkstra.waypoints │ algorithm_mission_Bidirectional_D_star.waypoints │ algorithm_mission_Bidirectional_D_star_Lite.waypoints │ algorithm_mission_Bidirectional_LPAstar.waypoints │ algorithm_mission_Bidirectional_LRTAstar.waypoints │ algorithm_mission_Bidirectional_RTAAStar.waypoints │ ├─Search_2D │ Breadth-First Searching (BFS) │ Depth-First Searching (DFS) │ Best-First Searching │ Dijkstra's │ A* │ Bidirectional A* │ Anytime Repairing A* │ Learning Real-time A* (LRTA*) │ Real-time Adaptive A* (RTAA*) │ Lifelong Planning A* (LPA*) │ Dynamic A* (D*) │ D* Lite │ Anytime D* │ ├─Search_2D_路径优化效果图 │ └─Search_3D #### 自定义路线与障碍区 ![自定义路线与障碍区](https://images.gitee.com/uploads/images/2021/0429/171157_37d865ab_2323666.png "自定义路线与障碍区.PNG") #### rrt_2D_路径优化效果图 ![rrt_2D_路径优化效果图](https://images.gitee.com/uploads/images/2021/0429/171224_351e9552_2323666.png "rrt_2D_路径优化效果图.png") #### Search_2D_路径优化效果图 ![Search_2D_路径优化效果图](https://images.gitee.com/uploads/images/2021/0429/171250_208b9123_2323666.png "Search_2D_路径优化效果图.png") ## 二、解决问题 智能无人机路径规划仿真系统解决了普通无人机无法精准规划路径的问题,且普通无人机不够托底,不便控制,难以运用于实际战争。本软件可以预先为飞行任务设计航线,使用飞行模拟器记录无人机在飞行任务中的实时状态,通过地面站模块强化无人机在体系对抗中的受控度,模拟无人机群联合行动的战术战法,然后输出航行数据供真实无人机使用,将无人机体型短小、行动迅速、资源庞大的优势尽可能的释放出来。 ## 三、应用场景及效益 截止目前,全世界已有40多个国家在从事研究和生产无人机,60多个国家在使用无人机。无人机在战场发挥作用是未来战争的趋势。 使用该软件的优点是吸收国外已获得成果,将运行环境从Linux系统重新编译移植到Windows等其他操作系统,除仿真三维环境模块外均使用Python语言编写,程序易维护、易修改。通过Pyqt5编写的软件界面集成了软件各个模块,加入后台提示功能,设计智能控制脚本简化系统使用流程,联动FlightGear模拟器、MissionPlanner地面站程序进行可视化,以提高真实无人机飞行路径精准度、指定飞行计划为根本目的。 ## 四、扩展
### 关于多无人机的编队模拟 windows下使用 SITL 模拟多无人机编队请参照下面文章,注意路径要在ArduCopter/下执行测试命令:
https://blog.csdn.net/jzhd2015/article/details/108987818
![电风扇的成熟度](https://user-images.githubusercontent.com/39434325/112772851-b94f2300-9065-11eb-8a29-4ac8b08d2c4f.PNG)
双机编队路径算法测试: ![4326547](https://user-images.githubusercontent.com/39434325/112721732-9aa33c00-8f40-11eb-8fc5-45a0c5cdcd3c.PNG) 可分别规划左侧、右侧四翼无人机飞行路径 ![6464161](https://user-images.githubusercontent.com/39434325/112722145-ac85de80-8f42-11eb-93ec-40d36548bd53.PNG) ### 关于flylitchi下的航线飞行 在油管上偶然看到,通过地面站Mission Planner规划航线,保存航点后,可用Excel对其进行编辑,再通过网页端或安卓端Litchi导入修改后的CSV格式的数据,进而实现大疆无人机在Litchi APP上按照航线飞行。
1.网页版可在flylitchi官网直接编辑(国外网站-需要跳板):https://flylitchi.com/hub
使用方法十分简单,可见《好知》教程:http://www.howzhi.com/course/13669/lesson/84384
2.安卓手机Litchi 4.7 APP编辑(吾爱破解下载地址):https://www.52pojie.cn/thread-834234-1-1.html
百度网盘链接: https://pan.baidu.com/s/14qzvBuRIYhr_LhL7BRjd4Q 提取码: w5eu
内置的双地图,不用下载谷歌应用,让你的御AIR也有航点功能
Android:Litchi for DJI Mavic / Phantom / Inspire / Spark版本4.7.0
- 全景模式速度和可靠性改进
- 全景模式设置改进
- 修复了在某些设备上更改应用程序语言失败的错误
### Mission planner + Google Earth 日志生成3D轨迹图 仍需跳板,这里使用谷歌中国卫星地图代替,主要是向地图导入地面站Mission planner或控制台生成的规划路径,以.waypoint或kmz文件为主
![1111](https://user-images.githubusercontent.com/39434325/112245151-4facce80-8c8b-11eb-9ac9-706a7bb78bc5.PNG) 其他扩展插件请等待更新.... ## 五、感谢
**CSDN:**
https://blog.csdn.net/qinguoxiaoziyangyue/article/details/77712064
https://blog.csdn.net/guojunxiu/article/details/79158843
https://blog.csdn.net/huihut/article/details/86587782
https://blog.csdn.net/u010946448/article/details/90718264
https://blog.csdn.net/jzhd2015/article/details/108987818
https://blog.csdn.net/jzhd2015/article/details/108663961
**Zhihu:**
https://zhuanlan.zhihu.com/p/50900595 https://zhuanlan.zhihu.com/p/62017292
**Freesion:**
https://www.freesion.com/article/2344608320/
**Gitee:**
https://gitee.com/wwy2018/XTDrone
**Github:**
https://github.com/dhondta/dronesploit
## 项目链接
简书地址:https://www.jianshu.com/p/b1e6b2efb96f
Github:https://github.com/wangwei39120157028/IntelligentUAVPathPlanningSimulationSystem-Drone
Gitee:https://gitee.com/wwy2018/intelligent-uavpath-planning-simulation-system-S
欢迎star!!!