ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

kaujag's profile - activity

2017-03-25 12:50:09 -0500 received badge  Student (source)
2016-01-24 10:28:11 -0500 received badge  Famous Question (source)
2015-10-20 22:34:36 -0500 received badge  Notable Question (source)
2015-10-20 22:34:36 -0500 received badge  Popular Question (source)
2015-10-07 06:15:35 -0500 received badge  Famous Question (source)
2015-09-14 09:17:45 -0500 asked a question Calibrating turtlebot(create) can not find turtlebot.launch

I am performing calibration of Turtlebot. When the calibration is complete , system tell me to update turtlebot.launch file. which I am not able to find. SLAM results are scattered and I suspect it is because of the my inability to update the correction values in Turtlebot.launch

2015-08-11 12:49:12 -0500 received badge  Popular Question (source)
2015-08-11 12:49:12 -0500 received badge  Notable Question (source)
2015-05-07 23:07:17 -0500 commented question creating URDF using the D-H parameters.

@manipulator: I am using Meshlab which accept number of file formats including .obj. You can export your mesh to .stl or .dae

2015-04-29 06:05:48 -0500 received badge  Enthusiast
2015-04-23 03:27:05 -0500 commented question creating URDF using the D-H parameters.

I want to know how to use a ,d alpha and theta in URDF tags. I have tried using it in Joint tag. Am I just need to use Joint tag or Also the link tag?

2015-04-13 22:50:18 -0500 received badge  Supporter (source)
2015-04-13 22:34:36 -0500 asked a question creating URDF using the D-H parameters.

I am trying to build a URDF model in rviz for simulation purpose. I have developed a URDF model which is working fine if I move the joints manually. I am not sure if I have done the conversion from DH to URDF correctly. Can someone help?

<?xml version="1.0"?>
<robot name="adept_model_detailed">
<link name="base_link">
<visual>
  <geometry>
    <mesh filename="file:///home/viki/catkin_ws/src/adept_model_detailed/meshes/adept1.dae"/>
  </geometry>
</visual>
</link>

<link name="link_one">
<visual>
  <geometry>
   <mesh filename="file:///home/viki/catkin_ws/src/adept_model_detailed/meshes/adept2.dae"/>
  </geometry>
<origin rpy="0 0 0" xyz="0.425 0 0"/>
</visual>
</link>

<link name="link_two">
<visual>
  <geometry>
    <mesh filename="file:///home/viki/catkin_ws/src/adept_model_detailed/meshes/adept3.dae"/>
  </geometry>
<origin rpy="0 0 0" xyz="0.375 0 0"/>
</visual>
</link>
<link name="link_three">
<visual>
<origin rpy="0 0 0" xyz="0.375 0 0"/>
</visual>
</link>

<link name="link_four">
<visual>
  <geometry>
    <mesh filename="file:///home/viki/catkin_ws/src/adept_model_detailed/meshes/adept4.dae"/>
  </geometry>
<origin rpy="1.57080 0 0" xyz="0 0 0.4"/>
</visual>
</link>

<link name="link_five">
<visual>
  <geometry>
   <mesh filename="file:///home/viki/catkin_ws/src/adept_model_detailed/meshes/adept5.dae"/>
  </geometry>
<origin rpy="3.14 0 0" xyz="0 0 0"/>    
 </visual>
 </link>

 <joint name="joint_1" type="revolute">
<parent link="base_link"/>
<child  link="link_one"/>
<limit lower="2.6179" upper="-2.6179" effort="30" velocity=".15" />
<axis xyz="0 0 1"/>
  </joint>

<joint name="joint_2" type="revolute">
<parent link="link_one"/>
<child  link="link_two"/>
<origin xyz="0.375 0 0"/>
<axis xyz="0 0 1"/>
<limit lower="2.5656" upper="-2.5656" effort="30" velocity=".15" />
 </joint>

<joint name="joint_3" type="revolute">
<parent link="link_two"/>
<child  link="link_three"/>
<origin xyz="0.375 0 0"/>
<axis xyz="0 0 1"/>
<limit lower="4.8345" upper="-4.8345" effort="30" velocity=".15" />
 </joint>

 <joint name="joint_4" type="prismatic">
<parent link="link_three"/>
<child  link="link_four"/>
<axis xyz="0 0 1"/>
<origin xyz="0 0 0" rpy="0 0 0.4"/>
<limit effort="1000" lower="0.20" upper="-0.1" velocity="1"/>
 </joint>

 <joint name="joint_5" type="revolute">
<parent link="link_four"/>
<child  link="link_five"/>
<origin xyz="0 0 0.4"/>
<axis xyz="0 1 0"/>
<limit lower="2.5656" upper="-2.5656" effort="30" velocity=".15" />
  </joint>  
 </robot>

This is the URDF and the DH parameters for these joints for Adept1 robot are

a       d            alpha     theta
0.42500       0     0       0  
0.37500       0     0       0  
0       0.30000     0       0 
0       0       1.57080     0 
0       0       1.57080     0

Please I would like to know if I am going in the right direction. Otherwise please give me guidelines to use DH parameters in URDF. Thank you.