当前位置:   article > 正文

编队飞行控制 leader.py_编队控制

编队控制

@@@先选择无人机的数量以确定相应的队形。

XTDrone平台只支持 6/9/18架无人机吗?其他数量的无人机编队怎么实现?

@@@创建leader类

首先初始化及创建了一些对象+传建了一些订阅者和发布者对象。

它初始化了该对象的各种属性,包括无人机的类型、领航者ID、无人机数量、位置和速度信息、避障速度、编队信息、通信拓扑、目标高度记录、命令信息、频率和控制参数等。此外,它还订阅了一些ROS主题,以接收来自其他节点的消息,并发布消息到其他节点上。这些消息包括位置和速度信息、避障速度、编队信息、通信拓扑和命令信息等。这个构造函数的主要功能是设置无人机对象的初始状态和配置ROS节点的订阅者和发布者。

@@@定义各回调函数

1。def cmd_callback(self, msg):

实现了一个无人机对象的编队控制逻辑。它使用KM算法(Kuhn-Munkres算法)对当前编队和目标编队之间的无人机匹配问题进行求解,并生成一个新的编队。

2.def build_graph(self, orig_formation, change_formation):

实现了一个方法build_graph,用于根据原始编队和目标编队之间的距离计算无人机之间的通信关系,并返回一个邻接矩阵。

3.def find_path(self, i):

该方法的作用是在当前增广路图中寻找一条增广路,并将无人机之间的匹配关系存储在对象的match_right属性中。    没弄明白是什么意思。。。。。这里应该是KM算法的实现原理 。

def KM(self):该方法的作用是使用KM算法求解一个最大权匹配问题,并返回一个代表匹配结果的NumPy数组。

def get_new_formation(self, changed_id, change_formation):该方法的作用是根据KM算法的匹配结果生成一个新的编队,并返回一个代表新编队的NumPy数组。

def get_communication_topology(self, rel_posi):该方法的作用是根据新编队计算无人机之间的通信拓扑,并返回一个代表通信拓扑的NumPy数组。

  1. 要在XTDrone平台中的`leader.py`程序中加入几何跟踪控制器的代码,您可以按照以下步骤进行:
  2. 1. 导入必要的ROS消息类型和Python库:
  3. ```python
  4. from geometry_msgs.msg import PoseStamped, TwistStamped
  5. from tf.transformations import quaternion_from_euler
  6. import math
  7. ```
  8. 2. 在`class Leader`中增加一个`follow_trajectory`方法:
  9. ```python
  10. def follow_trajectory(self, t):
  11. # 计算领航者无人机的目标位置和速度
  12. x_desired = math.sin(0.1 * t)
  13. y_desired = math.cos(0.1 * t)
  14. z_desired = 1.5
  15. vx_desired = 0.1 * math.cos(0.1 * t)
  16. vy_desired = -0.1 * math.sin(0.1 * t)
  17. vz_desired = 0.0
  18. # 将目标位置和速度转换为ROS消息
  19. pose_msg = PoseStamped()
  20. pose_msg.header.stamp = rospy.Time.now()
  21. pose_msg.header.frame_id = "map"
  22. pose_msg.pose.position.x = x_desired
  23. pose_msg.pose.position.y = y_desired
  24. pose_msg.pose.position.z = z_desired
  25. quat = quaternion_from_euler(0.0, 0.0, 0.0)
  26. pose_msg.pose.orientation.x = quat[0]
  27. pose_msg.pose.orientation.y = quat[1]
  28. pose_msg.pose.orientation.z = quat[2]
  29. pose_msg.pose.orientation.w = quat[3]
  30. vel_msg = TwistStamped()
  31. vel_msg.header.stamp = rospy.Time.now()
  32. vel_msg.header.frame_id = "map"
  33. vel_msg.twist.linear.x = vx_desired
  34. vel_msg.twist.linear.y = vy_desired
  35. vel_msg.twist.linear.z = vz_desired
  36. # 发布目标位置和速度到ROS话题中
  37. self.local_position_pub.publish(pose_msg)
  38. self.local_velocity_pub.publish(vel_msg)
  39. ```
  40. 这段代码的作用是计算领航者无人机的目标位置和速度,并将其转换为ROS消息。然后,将目标位置和速度分别发布到`/uavX/mavros/setpoint_position/local`和`/uavX/mavros/setpoint_velocity/cmd_vel_unstamped`话题中,以控制领航者无人机的运动轨迹。
  41. 需要注意的是,在实际应用中,您需要根据具体的控制策略,修改`follow_trajectory`方法中的目标位置和速度计算方式,以确保编队能够稳定运动。
  42. 3. 在`run`方法中调用`follow_trajectory`方法:
  43. ```python
  44. def run(self):
  45. rate = rospy.Rate(10.0)
  46. t = 0
  47. while not rospy.is_shutdown():
  48. self.follow_trajectory(t)
  49. t += 1
  50. rate.sleep()
  51. ```
  52. 这段代码的作用是在主循环中调用`follow_trajectory`方法,并更新时间变量`t`。在本例中,我们假设领航者无人机需要沿着一条正弦曲线运动,因此我们将`t`作为正弦函数的参数。在实际应用中,您需要根据具体的控制策略,修改时间变量`t`的更新方式。
  53. 4. 启动ROS节点:
  54. ```bash
  55. roslaunch xtdrone leader.launch
  56. ```
  57. 运行以上代码后,领航者无人机将沿着一条正弦曲线运动,并尝试控制从跟随者无人机接收到的消息,以保持编队的稳定性。您可以根据需要修改`follow_trajectory`方法中的目标位置和速度计算方式,以实现不同的控制策略。

 

  1. 要在这段代码中加入几何跟踪控制器的代码,您可以按照以下步骤进行:
  2. 1. 导入必要的ROS消息类型和Python库:
  3. ```python
  4. from geometry_msgs.msg import PoseStamped, TwistStamped
  5. from tf.transformations import quaternion_from_euler
  6. import math
  7. ```
  8. 2. 在`while not rospy.is_shutdown():`循环中,修改领航者无人机的位置和速度:
  9. ```python
  10. # 计算领航者无人机的目标位置和速度
  11. x_desired = math.sin(0.1 * t)
  12. y_desired = math.cos(0.1 * t)
  13. z_desired = 1.5
  14. vx_desired = 0.1 * math.cos(0.1 * t)
  15. vy_desired = -0.1 * math.sin(0.1 * t)
  16. vz_desired = 0.0
  17. # 将目标位置和速度转换为ROS消息
  18. pose_msg = PoseStamped()
  19. pose_msg.header.stamp = rospy.Time.now()
  20. pose_msg.header.frame_id = "map"
  21. pose_msg.pose.position.x = x_desired
  22. pose_msg.pose.position.y = y_desired
  23. pose_msg.pose.position.z = z_desired
  24. quat = quaternion_from_euler(0.0, 0.0, 0.0)
  25. pose_msg.pose.orientation.x = quat[0]
  26. pose_msg.pose.orientation.y = quat[1]
  27. pose_msg.pose.orientation.z = quat[2]
  28. pose_msg.pose.orientation.w = quat[3]
  29. vel_msg = TwistStamped()
  30. vel_msg.header.stamp = rospy.Time.now()
  31. vel_msg.header.frame_id = "map"
  32. vel_msg.twist.linear.x = vx_desired
  33. vel_msg.twist.linear.y = vy_desired
  34. vel_msg.twist.linear.z = vz_desired
  35. # 发布目标位置和速度到ROS话题中
  36. self.local_position_pub.publish(pose_msg)
  37. self.local_velocity_pub.publish(vel_msg)
  38. # 更新时间变量
  39. t += 1
  40. ```
  41. 这段代码的作用是计算领航者无人机的目标位置和速度,并将其转换为ROS消息。然后,将目标位置和速度分别发布到`/uavX/mavros/setpoint_position/local`和`/uavX/mavros/setpoint_velocity/cmd_vel_unstamped`话题中,以控制领航者无人机的运动轨迹。在本例中,我们假设领航者无人机需要沿着一条正弦曲线运动,因此我们将`t`作为正弦函数的参数。在实际应用中,您需要根据具体的控制策略,修改时间变量`t`的更新方式。
  42. 3. 在`while not rospy.is_shutdown():`循环中,删除以下代码:
  43. ```python
  44. self.cmd_vel_enu.linear.x = self.cmd_vel_enu.linear.x
  45. self.cmd_vel_enu.linear.y = self.cmd_vel_enu.linear.y
  46. self.cmd_vel_enu.linear.z = self.cmd_vel_enu.linear.z
  47. ```
  48. 这些代码似乎是无用的,因为它们没有实际改变`self.cmd_vel_enu`对象的值。
  49. 4. 在`while not rospy.is_shutdown():`循环中,注释掉以下代码:
  50. ```python
  51. #self.vel_enu_pub.publish(self.cmd_vel_enu)
  52. #self.pose_pub.publish(self.pose)
  53. #self.cmd_pub.publish(self.cmd)
  54. ```
  55. 这些代码将无人机的速度、位置和指令发布到`/uavX/mavros/setpoint_velocity/cmd_vel`、`/uavX/mavros/local_position/pose`和`/uavX/mavros/cmd`话题中。在加入几何跟踪控制器之后,我们将直接发布目标位置和速度,因此不需要再发布这些信息。
  56. 5. 在`while not rospy.is_shutdown():`循环中,添加以下代码:
  57. ```python
  58. # 发布编队形态信息到ROS话题中
  59. formation_pattern = Int32MultiArray()
  60. formation_pattern.data = self.formation.flatten().tolist()
  61. self.formation_pattern_pub.publish(formation_pattern)
  62. # 发布通信拓扑信息到ROS话题中
  63. if not self.communication_topology is None:
  64. communication_topology = Int32MultiArray()
  65. communication_topology.data = self.communication_topology.flatten().tolist()
  66. self.communication_topology_pub.publish(communication_topology)
  67. ```
  68. 这段代码的作用是将编队形态信息和通信拓扑信息分别发布到`/formation_pattern`和`/communication_topology`话题中。这些信息可能会在其他节点中使用,以实现更复杂的编队控制策略。需要注意的是,在实际应用中,您需要根据需要修改这些信息的内容和格式,以确保它们能够被其他节点正确地解析和使用。
  69. 6. 在`while not rospy.is_shutdown():`循环中,添加以下代码:
  70. ```python
  71. # 等待一段时间
  72. rate.sleep()
  73. ```
  74. 这段代码的作用是让程序暂停一段时间,以控制程序的执行速度。在本例中,我们将程序的执行速度设置为10Hz,因此程序将每0.1秒执行一次主循环。在实际应用中,您需要根据需要修改程序的执行速度,以确保编队能够稳定运动。
  75. 最终修改后的`while not rospy.is_shutdown():`循环的代码如下所示:
  76. ```python
  77. while not rospy.is_shutdown():
  78. # 计算领航者无人机的目标位置和速度
  79. x_desired = math.sin(0.1 * t)
  80. y_desired = math.cos(0.1 * t)
  81. z_desired = 1.5
  82. vx_desired = 0.1 * math.cos(0.1 * t)
  83. vy_desired = -0.1 * math.sin(0.1 * t)
  84. vz_desired = 0.0
  85. # 将目标位置和速度转换为ROS消息
  86. pose_msg = PoseStamped()
  87. pose_msg.header.stamp = rospy.Time.now()
  88. pose_msg.header.frame_id = "map"
  89. pose_msg.pose.position.x = x_desired
  90. pose_msg.pose.position.y = y_desired
  91. pose_msg.pose.position.z = z_desired
  92. quat = quaternion_from_euler(0.0, 0.0, 0.0)
  93. pose_msg.pose.orientation.x = quat[0]
  94. pose_msg.pose.orientation.y = quat[1]
  95. pose_msg.pose.orientation.z = quat[2]
  96. pose_msg.pose.orientation.w = quat[3]
  97. vel_msg = TwistStamped()
  98. vel_msg.header.stamp = rospy.Time.now()
  99. vel_msg.header.frame_id = "map"
  100. vel_msg.twist.linear.x = vx_desired
  101. vel_msg.twist.linear.y = vy_desired
  102. vel_msg.twist.linear.z = vz_desired
  103. # 发布目标位置和速度到ROS话题中
  104. self.local_position_pub.publish(pose_msg)
  105. self.local_velocity_pub.publish(vel_msg)
  106. # 发布编队形态信息到ROS话题中
  107. formation_pattern = Int32MultiArray()
  108. formation_pattern.data = self.formation.flatten().tolist()
  109. self.formation_pattern_pub.publish(formation_pattern)
  110. # 发布通信拓扑信息到ROS话题中
  111. if not self.communication_topology is None:
  112. communication_topology = Int32MultiArray()
  113. communication_topology.data = self.communication_topology.flatten().tolist()
  114. self.communication_topology_pub.publish(communication_topology)
  115. # 更新时间变量
  116. t += 1
  117. # 等待一段时间
  118. rate.sleep()
  119. ```
  120. 运行以上代码后,领航者无人机将沿着一条正弦曲线运动,并尝试控制从跟随者无人机接收到的消息,以保持编队的稳定性。您可以根据需要修改`while not rospy.is_shutdown():`循环中的代码,以实现不同的编队控制策略。
  1. 要在XTDrone仿真平台中实现多无人机编队控制,并加入几何跟踪控制器的代码,您可以按照以下步骤进行:
  2. 1. 导入必要的ROS消息类型和Python库:
  3. ```python
  4. from geometry_msgs.msg import PoseStamped, TwistStamped
  5. from nav_msgs.msg import Path
  6. from std_msgs.msg import Int32MultiArray
  7. from tf.transformations import quaternion_from_euler
  8. import math
  9. ```
  10. 2. 在`class Follower`中增加一个`follow_leader`方法:
  11. ```python
  12. def follow_leader(self, t):
  13. # 计算领航者无人机的目标位置和速度
  14. x_desired = math.sin(0.1 * t) + self.leader_position.x
  15. y_desired = math.cos(0.1 * t) + self.leader_position.y
  16. z_desired = self.leader_position.z
  17. vx_desired = 0.1 * math.cos(0.1 * t)
  18. vy_desired = -0.1 * math.sin(0.1 * t)
  19. vz_desired = 0.0
  20. # 将目标位置和速度转换为ROS消息
  21. pose_msg = PoseStamped()
  22. pose_msg.header.stamp = rospy.Time.now()
  23. pose_msg.header.frame_id = "map"
  24. pose_msg.pose.position.x = x_desired
  25. pose_msg.pose.position.y = y_desired
  26. pose_msg.pose.position.z = z_desired
  27. quat = quaternion_from_euler(0.0, 0.0, 0.0)
  28. pose_msg.pose.orientation.x = quat[0]
  29. pose_msg.pose.orientation.y = quat[1]
  30. pose_msg.pose.orientation.z = quat[2]
  31. pose_msg.pose.orientation.w = quat[3]
  32. vel_msg = TwistStamped()
  33. vel_msg.header.stamp = rospy.Time.now()
  34. vel_msg.header.frame_id = "map"
  35. vel_msg.twist.linear.x = vx_desired
  36. vel_msg.twist.linear.y = vy_desired
  37. vel_msg.twist.linear.z = vz_desired
  38. # 发布目标位置和速度到ROS话题中
  39. self.local_position_pub.publish(pose_msg)
  40. self.local_velocity_pub.publish(vel_msg)
  41. ```
  42. 这段代码的作用是计算跟随者无人机需要沿着的轨迹,并将其转换为ROS消息。其中,目标位置的计算方式是在当前时刻沿着领航者无人机的轨迹前进一定距离。具体来说,我们将领航者无人机沿着正弦曲线运动,跟随者无人机沿着相同的正弦曲线运动,但是在每个时刻,跟随者无人机的位置比领航者无人机的位置向前推进了一定距离。这样,跟随者无人机就可以保持在领航者无人机的后面,形成一个编队。
  43. 需要注意的是,在实际应用中,您需要根据具体的控制策略,修改`follow_leader`方法中的目标位置和速度计算方式,以确保编队能够稳定运动。
  44. 3. 在`class Leader`中增加一个`follow_trajectory`方法:
  45. ```python
  46. def follow_trajectory(self, t):
  47. # 计算领航者无人机的目标位置和速度
  48. x_desired = math.sin(0.1 * t)
  49. y_desired = math.cos(0.1 * t)
  50. z_desired = 1.5
  51. vx_desired = 0.1 * math.cos(0.1 * t)
  52. vy_desired = -0.1 * math.sin(0.1 * t)
  53. vz_desired = 0.0
  54. # 将目标位置和速度转换为ROS消息
  55. pose_msg = PoseStamped()
  56. pose_msg.header.stamp = rospy.Time.now()
  57. pose_msg.header.frame_id = "map"
  58. pose_msg.pose.position.x = x_desired
  59. pose_msg.pose.position.y = y_desired
  60. pose_msg.pose.position.z = z_desired
  61. quat = quaternion_from_euler(0.0, 0.0, 0.0)
  62. pose_msg.pose.orientation.x = quat[0]
  63. pose_msg.pose.orientation.y = quat[1]
  64. pose_msg.pose.orientation.z = quat[2]
  65. pose_msg.pose.orientation.w = quat[3]
  66. vel_msg = TwistStamped()
  67. vel_msg.header.stamp = rospy.Time.now()
  68. vel_msg.header.frame_id = "map"
  69. vel_msg.twist.linear.x = vx_desired
  70. vel_msg.twist.linear.y = vy_desired
  71. vel_msg.twist.linear.z = vz_desired
  72. # 发布目标位置和速度到ROS话题中
  73. self.local_position_pub.publish(pose_msg)
  74. self.local_velocity_pub.publish(vel_msg)
  75. ```
  76. 这段代码的作用是计算领航者无人机的目标位置和速度,并将其转换为ROS消息。然后,将目标位置和速度分别发布到`/uavX/mavros/setpoint_position/local`和`/uavX/mavros/setpoint_velocity/cmd_vel_unstamped`话题中,以控制领航者无人机的运动轨迹。
  77. 需要注意的是,在实际应用中,您需要根据具体的控制策略,修改`follow_trajectory`方法中的目标位置和速度计算方式,以确保编队能够稳定运动。
  78. 4. 在`class FormationController`中增加一个`update`方法:
  79. ```python
  80. def update(self):
  81. # 计算编队形态误差
  82. formation_error = self.formation - self.current_formation
  83. formation_error_norm = np.linalg.norm(formation_error)
  84. # 计算通信拓扑误差
  85. if not self.communication_topology is None:
  86. topology_error = self.communication_topology - self.current_topology
  87. topology_error_norm = np.linalg.norm(topology_error)
  88. else:
  89. topology_error_norm = 0.0
  90. # 计算几何跟踪控制指令
  91. if formation_error_norm > self.threshold:
  92. # 如果编队形态误差较大,则执行几何跟踪控制
  93. self.follow_path()
  94. else:
  95. # 如果编队形态误差较小,则执行通信拓扑控制
  96. if topology_error_norm > self.threshold:
  97. self.adjust_topology()
  98. # 发布编队形态信息到ROS话题中
  99. formation_pattern = Int32MultiArray()
  100. formation_pattern.data = self.formation.flatten().tolist()
  101. self.formation_pattern_pub.publish(formation_pattern)
  102. # 发布通信拓扑信息到ROS话题中
  103. if not self.communication_topology is None:
  104. communication_topology = Int32MultiArray()
  105. communication_topology.data = self.communication_topology.flatten().tolist()
  106. self.communication_topology_pub.publish(communication_topology)
  107. ```
  108. 这段代码的作用是根据当前的编队形态误差和通信拓扑误差,选择执行几何跟踪控制还是通信拓扑控制。如果编队形态误差较大,则执行几何跟踪控制;如果编队形态误差较小,则执行通信拓扑控制。需要注意的是,在实际应用中,您需要根据具体的控制策略,修改阈值参数和控制方法。
  109. 5. 在`class FormationController`中增加一个`follow_path`方法:
  110. ```python
  111. def follow_path(self):
  112. # 计算路径点
  113. t = 0
  114. path = []
  115. for i in range(self.num_uavs):
  116. x = math.sin(0.1 * t + 2 * math.pi * i / self.num_uavs) + self.formation[i][0]
  117. y = math.cos(0.1 * t + 2 * math.pi * i / self.num_uavs) + self.formation[i][1]
  118. z = self.formation[i][2]
  119. path.append([x, y, z])
  120. path_msg = Path()
  121. path_msg.header.stamp = rospy.Time.now()
  122. path_msg.header.frame_id = "map"
  123. for p in path:
  124. pose_msg = PoseStamped()
  125. pose_msg.header.stamp = rospy.Time.now()
  126. pose_msg.header.frame_id = "map"
  127. pose_msg.pose.position.x = p[0]
  128. pose_msg.pose.position.y = p[1]
  129. pose_msg.pose.position.z = p[2]
  130. quat = quaternion_from_euler(0.0, 0.0, 0.0)
  131. pose_msg.pose.orientation.x =

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/385148
推荐阅读
相关标签
  

闽ICP备14008679号