Control multiple manipulators ur3e simultaneously [closed]

asked 2022-10-30 02:39:46 -0500

Osal22 gravatar image

updated 2022-11-14 00:12:45 -0500

ROS2 HUMBLE Ubuntu 22.04

I am trying to

Control multiple manipulators ur3e simultaneously

in rviz with moveit interface class I have made urdf file with two robots ur3e in it and created package with moveit setup assistant In package I have defined two planning groups for each manipulator(ur1_group and ur2_group and a third planning group which includes both groups (co_bot_control) now the problem i am facing is when i control individual groups from cpp node it works fine. when i control both groups simultaneously it did not work. I am not getting it. Please help here is my srdf file i created for moveit setup assistant

<?xml version="1.0" encoding="UTF-8"?>
<!--This does not replace URDF, and is not an extension of URDF.
    This is a format for representing semantic information about the robot structure.
    A URDF file must exist for this robot as well, where the joints and the links that are referenced are defined
-->
<robot name="ur3e">
    <!--GROUPS: Representation of a set of joints and links. This can be useful for specifying DOF to plan for, defining arms, end effectors, etc-->
    <!--LINKS: When a link is specified, the parent joint of that link (if it exists) is automatically included-->
    <!--JOINTS: When a joint is specified, the child link of that joint (which will always exist) is automatically included-->
    <!--CHAINS: When a chain is specified, all the links along the chain (including endpoints) are included in the group. Additionally, all the joints that are parents to included links are also included. This means that joints along the chain and the parent joint of the base link are included in the group-->
    <!--SUBGROUPS: Groups can also be formed by referencing to already defined group names-->
    <group name="ur1_group">
        <joint name="shoulder_pan_joint"/>
        <joint name="shoulder_lift_joint"/>
        <joint name="elbow_joint"/>
        <joint name="wrist_1_joint"/>
        <joint name="wrist_2_joint"/>
        <joint name="wrist_3_joint"/>
        <chain base_link="base_link" tip_link="tool0"/>
    </group>
    <group name="ur2_group">
        <joint name="shoulder_pan_joint_1"/>
        <joint name="shoulder_lift_joint_1"/>
        <joint name="elbow_joint_1"/>
        <joint name="wrist_1_joint_1"/>
        <joint name="wrist_2_joint_1"/>
        <joint name="wrist_3_joint_1"/>
        <chain base_link="base_link_1" tip_link="tool1"/>
    </group>
    <group name="co_bot_control">
        <group name="ur1_group"/>
        <group name="ur2_group"/>
    </group>
    <!--END EFFECTOR: Purpose: Represent information about an end effector.-->
    <end_effector name="tool0" parent_link="tool0" group="ur1_group"/>
    <end_effector name="tool1" parent_link="tool1" group="ur2_group"/>
    <!--VIRTUAL JOINT: Purpose: this element defines a virtual joint between a robot link and an external frame of reference (considered fixed with respect to the robot)-->
    <virtual_joint name="virtual_joint" type="fixed" parent_frame="world" child_link="base_link"/>
    <!--DISABLE COLLISIONS: By default it is assumed that any link of the robot could potentially come into collision with any other link in the robot. This tag disables collision checking between a specified pair of links. -->
    <disable_collisions link1="base_link" link2="base_link_1" reason="Adjacent"/>
    <disable_collisions link1="base_link" link2="shoulder_link ...
(more)
edit retag flag offensive reopen merge delete

Closed for the following reason duplicate question by Osal22
close date 2022-11-14 00:12:17.812317