## page was renamed from pilz_robots/Tutorials/Model your application with the Pilz Manipulator Module PRBT ## For instruction on writing tutorials ## http://www.ros.org/wiki/WritingTutorials #################################### ##FILL ME IN #################################### ## for a custom note with links: ## note = ## for the canned note of "This tutorial assumes that you have completed the previous tutorials:" just add the links ## note.0= ## descriptive title for the tutorial ## title = Model your application with the Pilz Manipulator Module PRBT ## multi-line description to be displayed in search ## description = Model your first application including an object from a stl file and a table, on which the Manipulator Module PRBT is mounted and move the robot in this virtual environment. ## the next tutorial description (optional) ## next = ## links to next tutorial (optional) ## next.0.link= [[pilz_robots/Tutorials/MoveRobotWithPilzCommand_planner|Move your robot with the Pilz Industrial Motion Planner]] ## next.1.link= ## what level user is this tutorial for ## level= BeginnerCategory ## keywords = PRBT, URDF #################################### <<IncludeCSTemplate(TutorialCSHeaderTemplate)>> {{{#!wiki note '''Note: Please be aware that the Pilz command planner has moved to MoveIt and http://wiki.ros.org/pilz_robots and http://wiki.ros.org/pilz_industrial_motion are unmaintained. These tutorials are outdated and might or might not work dependent on the ROS distro.''' }}} <<TableOfContents(4)>> == Introduction == [[http://wiki.ros.org/|ROS]] offers standardized interfaces and components for the integration of complex algorithms. Different robot arms can inter-operate easily with 3D-sensors and enable you to implement challenging applications. {{http://wiki.ros.org/pilz_robots?action=AttachFile&do=get&target=Complex+intergration}} This tutorial is intended for everyone interested in the Pilz Manipulator Module PRBT and the [[pilz_robots]] ROS packages. It guides you through modelling your first application including an object described by an stl file and a table, on which the PRBT is mounted. In a virtual environment, you can move the robot manipulator around using the mouse. Once you completed this tutorial, you are able to model your own machine layout and test, if a PRBT manipulator placed inside the application can reach your machine. {{{#!wiki note '''Note:''' You can also control a real robot manipulator with the same procedure but we limit this tutorial to a virtual environment. }}} {{{#!wiki note '''Note:''' The files of this tutorials are also available for download from [[https://github.com/PilzDE/pilz_tutorials/tree/master/pilz_robots_tutorials/pilz_tutorial_1/pilz_tutorial|GitHub/pilz_tutorials]]. But we recommend to create the files on your own during this tutorial. }}} {{http://wiki.ros.org/pilz_robots/Tutorials/ModelYourApplicationWithPRBT?action=AttachFile&do=get&target=ROS_Enviroment.png}} == Prerequisites == In order to complete this tutorial, you need the following: * A workstation or a [[https://en.wikipedia.org/wiki/Virtual_machine|Virtual machine]] (VM) with [[http://releases.ubuntu.com/releases/16.04/|Linux Ubuntu 16.04 LTS]] and [[http://wiki.ros.org/|ROS kinetic]] installed. <<BR>> Or [[http://releases.ubuntu.com/releases/18.04/|Ubuntu 18.04 LTS]] and [[http://wiki.ros.org/melodic|ROS melodic]] installed. * Basic command line knowledge (see e.g. in the ROS-I training [[https://industrial-training-master.readthedocs.io/en/melodic/_source/prerequisites/The-Linux-Terminal.html|Using the terminal]]) For ROS-commands, every section below contains the links to corresponding tutorials * Completed the first ROS tutorial [[catkin/Tutorials/create_a_workspace|create a catkin workspace]] == Install Pilz robot package == The 3D-model of the PRBT manipulator and configuration for an empty planning environment is available in packages ready to install using apt. Update your package list and install the pilz_robots meta-package in a terminal: <<Version()>> {{{{#!wiki version kinetic {{{ sudo apt update sudo apt install ros-kinetic-pilz-robots }}} }}}} {{{{#!wiki version melodic {{{ sudo apt update sudo apt install ros-melodic-pilz-robots }}} }}}} This installs the prbt_support and prbt_moveit_config and prbt_ikfast_manipulator_plugin packages. To test the successful installation (and your ROS environment) you can run: {{{ roslaunch prbt_moveit_config moveit_planning_execution.launch }}} To stop the application, press Ctrl+c in the terminal. {{{#!wiki note '''Note:''' If you want to use the real robot directly without modelling an application, you can skip this tutorial and have a look at the configuration options on our [[https://github.com/PilzDE/pilz_robots|Readme on Github]]. The next steps of this tutorial place the robot on a table and demonstrate how you can model your custom application. }}} == Create your application ROS package == For the configuration and launch files describing your application, create a package ([[ROS/Tutorials/CreatingPackage|Create ROS package]]): {{{ cd ~/catkin_ws/src catkin_create_pkg pilz_tutorial prbt_moveit_config }}} This command generates a folder, where you place the files later on. pilz_tutorial is your package name specifically for this application. == Load the stl file == Create a new directory for the model files and a subdirectory meshes for the CAD data: {{{ cd ~/catkin_ws/src/pilz_tutorial mkdir -p urdf/meshes }}} Please download the file [[https://github.com/PilzDE/pilz_tutorials/blob/master/pilz_robots_tutorials/pilz_tutorial_1/pilz_tutorial/urdf/meshes/PNOZ.stl|PNOZ.stl]] and save it in the meshes folder you just created. == Describe the robot and its environment == To describe the robot manipulator and its environment, create a [[urdf|configuration file:]] {{{ cd ~/catkin_ws/src/pilz_tutorial/urdf gedit my_first_application.xacro }}} Copy the following content into the ''[[https://github.com/PilzDE/pilz_tutorials/blob/master/pilz_robots_tutorials/pilz_tutorial_1/pilz_tutorial/urdf/my_first_application.xacro|my_first_application.xacro]]'' file and save it: {{{ #!python block=urdf <?xml version="1.0" ?> <robot name="prbt" xmlns:xacro="http://www.ros.org/wiki/xacro"> <!-- macro definition of pilz lwa --> <xacro:include filename="$(find prbt_support)/urdf/prbt_macro.xacro" /> <!-- coloring from the stl file --> <material name="yellow"> <color rgba="1 1 0 1"/> </material> <!-- coloring from the table --> <material name="grey"> <color rgba="0.75 0.75 0.75 1"/> </material> <!-- instantiate the robot --> <xacro:prbt prefix="prbt_"/> <link name="table"> <visual> <origin rpy="0 0 0" xyz="0 -0.45 -0.03"/> <geometry> <box size="0.6 1.2 0.05"/> </geometry> <material name="grey"/> </visual> </link> <link name="pnoz"> <visual> <origin rpy="1.5708 0 0" xyz="0 -0.5 0"/> <geometry> <mesh filename="package://pilz_tutorial/urdf/meshes/PNOZ.stl" scale="0.001 0.001 0.001"/> </geometry> <material name="yellow"/> </visual> </link> <joint name="table_joint" type="fixed"> <parent link="table"/> <child link="prbt_base_link"/> </joint> <joint name="pnoz_joint" type="fixed"> <parent link="table"/> <child link="pnoz"/> </joint> </robot> }}} For the syntax and options please refer to the [[urdf/Tutorials|URDF]] and [[urdf/Tutorials/Using Xacro to Clean Up a URDF File|xacro]] documentation. The robot name can be chosen arbitrarily; we name it `prbt` to be consistent with the moveit_config files we include unchanged later on: <<CodeRef(urdf,3,3)>> The following line includes the robot model PRBT as macro, so that you can simply instantiate the robot afterwards: <<CodeRef(urdf,6,6)>> <<CodeRef(urdf,19,19)>> Now you start modelling the environment. For a simple table, you can use a box geometry with size in x-/y-/and z-direction. The origin-tag moves the box so that the manipulator isn't centred. <<CodeRef(urdf,21,29)>> To connect the table with the robot you add a joint between the Frames: table and prbt_base_link <<CodeRef(urdf,42,45)>> The file can be enhanced with CAD-models and more environment structures using stl or dae files. The following lines show the inclusion of a PNOZ described by an stl file. <<CodeRef(urdf,31,40)>> For a more detailed description refer to the URDF tutorial [[urdf/Tutorials/Building a Visual Robot Model with URDF from Scratch#Finishing_the_Model|Building a visual Robot]]. To connect the PNOZ with the table you add a joint between the frames: table and pnoz. <<CodeRef(urdf,47,50)>> == Create a launch file to start up the robot environment == {{{ cd ~/catkin_ws/src/pilz_tutorial mkdir launch gedit launch/my_application.launch }}} To tell the ROS system which programs (nodes) it should start, it needs a [[ROS/Tutorials/UsingRqtconsoleRoslaunch#Using_roslaunch|launch file:]] ''[[https://github.com/PilzDE/pilz_tutorials/blob/master/pilz_robots_tutorials/pilz_tutorial_1/pilz_tutorial/launch/my_application.launch|launch/my_application.launch]] (copy and save)'' <<Version()>> {{{{#!wiki version lunar_and_older {{{#!python <?xml version="1.0"?> <launch> <arg name="sim" default="true" /> <!-- send urdf to param server --> <param name="robot_description" command="$(find xacro)/xacro --inorder '$(find pilz_tutorial)/urdf/my_first_application.xacro'"/> <include file="$(find prbt_moveit_config)/launch/moveit_planning_execution.launch"> <arg name="load_robot_description" value="false"/> <arg name="sim" value="$(arg sim)"/> </include> </launch> }}} }}}} {{{{#!wiki version melodic_and_newer {{{#!python <?xml version="1.0"?> <launch> <arg name="sim" default="true" /> <!-- send urdf to param server --> <param name="robot_description" command="$(find xacro)/xacro '$(find pilz_tutorial)/urdf/my_first_application.xacro'"/> <include file="$(find prbt_moveit_config)/launch/moveit_planning_execution.launch"> <arg name="load_robot_description" value="false"/> <arg name="sim" value="$(arg sim)"/> </include> </launch> }}} }}}} The first ''<param>'' loads the robot model you created in the previous section. It tells xacro, to parse the file ''urdf/my_first_application.xacro'' and publish it onto the [[Parameter Server|parameter server]], where it is available for all other programs. Then you include the ''moveit_planning_execution.launch'' file which loads the default configuration from the prbt_moveit_config package and starts the RViz visualization tool. If you need further modifications, please have look at the [[prbt_moveit_config|package documentation]] or the code on [[https://github.com/PilzDE/pilz_robots|Github]]. == Run the visualization in RViz == Execute the launch file from a terminal to startup the application: {{{ roslaunch pilz_tutorial my_application.launch }}} Now you should see RViz started with the robot manipulator mounted on a table as shown in the following picture. For all options including camera placement and editing the view, see the [[rviz/UserGuide|RViz]] user manual. {{http://wiki.ros.org/pilz_robots/Tutorials/ModelYourApplicationWithPRBT?action=AttachFile&do=get&target=RVIZ.png}} The moveit motion planning plugin is enabled in the prbt_moveit_config default configuration. It puts a marker at the flange to move the robot manipulator. Drag the blue sphere to your desired position: {{http://wiki.ros.org/pilz_robots/Tutorials/ModelYourApplicationWithPRBT?action=AttachFile&do=get&target=moving_the_manipulator.png}} If you want to move the flange in a certain Cartesian direction, use the arrows. If you move the robot into a pose, where one link collides with the table, the kinematics module automatically tries to re-orient the arm out of the collision. If it cannot avoid the collision, the corresponding links turn red. == Conclusion == In this tutorial, you have learned to edit a xacro URDF file to model your robot application and to write a launch file that includes other launch files to start moving a robot manipulator inside your custom environment model. In the next tutorial, you will learn to [[pilz_robots/Tutorials/MoveRobotWithPilzCommand_planner|move your robot with the Pilz command_planner]] ## AUTOGENERATED DO NOT DELETE ## TutorialCategory ## FILL IN THE STACK TUTORIAL CATEGORY HERE