FreeCAD-Doc/localwiki/VRML_Preparation_for_Robot_Simulation.html
2018-07-08 12:11:49 -05:00

585 lines
17 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html><head><title>VRML Preparation for Robot Simulation</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>VRML Preparation for Robot Simulation</h1></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><table class="fcinfobox wikitable ct" style="width: 230px; float: right; margin-left: 1em">
<tr>
<td class="ctTitle">
<h3><span class="mw-headline" id="Tutorial"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Base_ExampleCommandModel.png" class="image"><img alt="Base ExampleCommandModel.png" src="32px-Base_ExampleCommandModel.png" width="32" height="30" srcset="/wiki/images/thumb/9/93/Base_ExampleCommandModel.png/48px-Base_ExampleCommandModel.png 1.5x, /wiki/images/9/93/Base_ExampleCommandModel.png 2x" /></a> Tutorial</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Topic
</th></tr>
<tr>
<td class="ctEven">Robot Workbench
</td></tr>
<tr>
<th class="ctOdd">Level
</th></tr>
<tr>
<td class="ctEven">Intermediate
</td></tr>
<tr>
<th class="ctOdd">Time to complete
</th></tr>
<tr>
<td class="ctEven">
</td></tr>
<tr>
<th class="ctOdd">Author
</th></tr>
<tr>
<td class="ctEven">
</td></tr>
<tr>
<th class="ctOdd">FreeCAD version
</th></tr>
<tr>
<td class="ctEven">
</td></tr>
<tr>
<th class="ctOdd">Example File(s)
</th></tr>
<tr>
<td class="ctEven">
</td></tr>
<tr>
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1"><a href="#Tutorial"><span class="tocnumber">1</span> <span class="toctext">Tutorial</span></a></li>
<li class="toclevel-1 tocsection-1"><a href="#Open_a_file_or_create_one_with_FreeCAD"><span class="tocnumber">2</span> <span class="toctext">Open a file or create one with FreeCAD</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Measure_geometric_characteristics"><span class="tocnumber">3</span> <span class="toctext">Measure geometric characteristics</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Export_to_vrml"><span class="tocnumber">4</span> <span class="toctext">Export to vrml</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Preparation_of_the_vrml_file"><span class="tocnumber">5</span> <span class="toctext">Preparation of the vrml file</span></a></li>
</ul>
</div>
</td></tr></table>
<p><br />
</p><p><br />
This tutorial explains how to use FreeCAD and the Robot Simulation Workbench to simulate the motions of 6-axis serial robot. <b>The tutorial focuses on the creation of the vrml file</b> used as visualization. The base of the vrml file is a FreeCAD model. The version of FreeCAD used is 0.11.4252ppa1 on Ubuntu 32bit.
</p>
<h2><span class="mw-headline" id="Open_a_file_or_create_one_with_FreeCAD">Open a file or create one with FreeCAD</span></h2>
<p>The tutorial is based on a STEP-file of a Stäubli TX40 (TX40-HB.stp). You can download the file from <a rel="nofollow" class="external text" href="https://secure.staubli.com/Intranet_Applications/Robotics/Group/RobDoc.nsf/ea05b3f4b301f597c1256d5f005665e8/bc3707ec036c9f6bc12576c700327958/$FILE/page.html">Stäubli</a>. However, though I still didn't have time to check this, the method should also apply to a model completely made in FreeCAD.
After opening the file, you should obtain this:
</p><p><a href="https://www.freecadweb.org/wiki/index.php?title=File:Staeubli_step_import.png" class="image"><img alt="Staeubli step import.png" src="1024px-Staeubli_step_import.png" width="1024" height="587" srcset="/wiki/images/f/f6/Staeubli_step_import.png 1.5x" /></a>
</p><p>Notice, that on import, the robot is made of 8 shapes, directly on the root of the document tree. The structure of the exported vrml file may change if groups are used. The shapes are ordered from the base to the tool. The last shape contains the axes of rotations of all robot axes. The correlation shape name part name is given by (as for now (March 2011) FreeCAD doesn't import the names included in STEP files):
</p>
<table class="wikitable">
<tr>
<th> FreeCAD name
</th>
<th> STEP name
</th></tr>
<tr>
<td> TX40_HB
</td>
<td>HORIZONTAL BASE CABLE OUTLET
</td></tr>
<tr>
<td> TX40_HB001
</td>
<td> SHOULDER
</td></tr>
<tr>
<td> TX40_HB002
</td>
<td> ARM
</td></tr>
<tr>
<td> TX40_HB003
</td>
<td> ELBOW
</td></tr>
<tr>
<td> TX40_HB004
</td>
<td> FOREARM
</td></tr>
<tr>
<td> TX40_HB005
</td>
<td> WRIST
</td></tr>
<tr>
<td> TX40_HB006
</td>
<td> TOOL FLANGE
</td></tr>
<tr>
<td> TX40_HB007
</td>
<td>&#160;?
</td></tr></table>
<p>For this import, change the “Display Mode” of each shape, TX40_HB007 excepted, from “Flat Lines” to “Shaded” for the vrml export to look good. I also changed the colors to [245, 196, 0] and [204, 204, 204] to better correspond to Stäubli's yellow. Hide TX40_HB007 because it contains the axes of all joints and cannot be taken apart.
</p>
<h2><span class="mw-headline" id="Measure_geometric_characteristics">Measure geometric characteristics</span></h2>
<p>In order to build the Denavit-Hartenberg table (see <a href="Robot_6-Axis.html" title="Robot 6-Axis">Robot 6-Axis</a>) and prepare the vrml file, you need to get characteristics of the robot. For now, the measurement tool of FreeCAD is not ready, you can use the axes included in TX40_HB007 (the co-ordinates are indicated on the bottom left when you point an object with the mouse) or you have to use the Python console to get some information about the geometry. Note that the DH-table is only required if you need to use the inverse kinematics, i.e. get the Cartesian coordinates or drive the robot with Cartesian coordinates.
The DH-table for this robot is the following (mm, deg and deg/s):
</p>
<table class="wikitable">
<tr>
<th> i
</th>
<th> d
</th>
<th> θ
</th>
<th> r
</th>
<th> α
</th>
<th> θmin
</th>
<th> θmax
</th>
<th> Axis velocity
</th></tr>
<tr>
<td> 1
</td>
<td> 320
</td>
<td> q1
</td>
<td> 0
</td>
<td> -90
</td>
<td> -180
</td>
<td> 180
</td>
<td> 555
</td></tr>
<tr>
<td> 2
</td>
<td> 35
</td>
<td> q2 - 90
</td>
<td> 225
</td>
<td> 0
</td>
<td> -125
</td>
<td> 125
</td>
<td> 475
</td></tr>
<tr>
<td> 3
</td>
<td> 0
</td>
<td> q3 + 90
</td>
<td> 0
</td>
<td> 90
</td>
<td> -138
</td>
<td> 138
</td>
<td> 585
</td></tr>
<tr>
<td> 4
</td>
<td> 225
</td>
<td> q4
</td>
<td> 0
</td>
<td> -90
</td>
<td> -270
</td>
<td> 270
</td>
<td> 1035
</td></tr>
<tr>
<td> 5
</td>
<td> 0
</td>
<td> q5
</td>
<td> 0
</td>
<td> 90
</td>
<td> -120
</td>
<td> 133.5
</td>
<td> 1135
</td></tr>
<tr>
<td> 6
</td>
<td> 65
</td>
<td> q6
</td>
<td> 0
</td>
<td> 0
</td>
<td> -270
</td>
<td> 270
</td>
<td> 1575
</td></tr></table>
<p>The csv file is then:
</p>
<pre>a , alpha, d , theta, rotDir, maxAngle, minAngle, AxisVelocity
0 , -90, 320, 0, 1, 180, -180, 555
225, 0, 35, -90, 1, 125, -125, 475
0 , 90, 0, 90, 1, 138, -138, 585
0 , -90, 225, 0, 1, 270, -270, 1035
0 , 90, 0, 0, 1, 133.5, -120, 1135
0 , 0, 65, 0, 1, 270, -270, 1575
</pre>
<h2><span class="mw-headline" id="Export_to_vrml">Export to vrml</span></h2>
<p>Export the document to a vrml file. The structure of the vrml file is the following:
</p>
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> #VRML V2.0 utf8
Group {
children
Group {
children [
Group {
},
Group {
},
Group {
},
Group {
},
Group {
},
Group {
},
Group {
},
Group {
} ]
}
}</pre></div>
<p>You can notice that we have 8 independent groups corresponding to the 8 shapes.
</p>
<h2><span class="mw-headline" id="Preparation_of_the_vrml_file">Preparation of the vrml file</span></h2>
<p>All shapes in the vrml file are expressed in the base frame, independently from each other. For the Robot Simulation Workbench, we need to create a structure where a movement of a shape induces a movement of all shapes situated afterwards in the structure. The placement of the shapes will be relative to the preceding shape, so we need to include some translations from the absolute reference system to the relative one. The translations are described in the following picture:
</p><p><a href="https://www.freecadweb.org/wiki/index.php?title=File:Staeubli_important_points.png" class="image"><img alt="Staeubli important points.png" src="Staeubli_important_points.png" width="177" height="418" /></a>
</p><p>With
</p>
<dl><dd> A=(0, 0, 168)</dd>
<dd>B=(0, 107.8, 320)</dd>
<dd>C=(0, 104.15, 545)</dd>
<dd>D=(0, 35, 601)</dd>
<dd>E=(0, 35, 770)</dd>
<dd>F=(0, 35, 835).</dd></dl>
<p>Let's take the example of axis 4 between ELBOW and FOREARM, situated at D=(xd, yd, zd). The anchor for the FreeCAD axis is
</p>
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> "DEF FREECAD_AXIS4 Transform { rotation 0 1 0 0 children ["</pre></div>
<p>This corresponds to a rotation about the y-axis. In the CAD model, the rotation is about the z-axis. Thus, we need to a rotation about the x-axis of &lt;math&gt;\pi&lt;/math&gt; before the FreeCAD axis definition and of &lt;math&gt;-\pi&lt;/math&gt; after it. Also, a translation of (-xd, -yd, -zd) is needed just before the Group corresponding to the definition of FOREARM to express it in the relative reference frame centered at D. This means that a translation of (xd, yd, zd) must be inserted before the first rotation.
At the end, the vrml-file from the definition of ELBOW to the definition of FOREARM looks like this:
</p>
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> # ELBOW
Group {
… here comes the unmodified definition of ELBOW
},
Transform {
translation 0 35 601
rotation 1 0 0 1.5707963
children
DEF FREECAD_AXIS4 Transform { rotation 0 1 0 0 children
Transform {
rotation 1 0 0 -1.5707963
children
Transform {
translation 0 -35 -601
children [
# FOREARM
Group {
... here comes the unmodified definition of FOREARM
},</pre></div>
At the end of the document, the appropriate closing brackets must be inserted: <div class="mw-highlight mw-content-ltr" dir="ltr"><pre> ]}}}},</pre></div>
<p>for each of the 6 axes. Eventually, the document looks like this (I don't know if I can link the file here because of copyrights):
</p>
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> #VRML V2.0 utf8
Group {
children
Group {
children [
# HORIZONTAL BASE CABLE OUTLET
Group {
... here comes the unmodified definition of HORIZONTAL BASE CABLE OUTLET
},
Transform {
translation 0 0 168
rotation 1 0 0 1.5707963
children
DEF FREECAD_AXIS1 Transform { rotation 0 1 0 0 children
Transform {
rotation 1 0 0 -1.5707963
children
Transform {
translation 0 0 -168
children [
# SHOULDER
Group {
... here comes the unmodified definition of SHOULDER
},
Transform {
translation 0 107.8 320
#rotation 0 0 1 0
children
DEF FREECAD_AXIS2 Transform { rotation 0 1 0 0 children
Transform {
#rotation 0 0 1 0
children
Transform {
translation 0 -107.8 -320
children [
# ARM
Group {
... here comes the unmodified definition of ARM
},
Transform {
translation 0 104.15 545
#rotation 0 0 1 0
children
DEF FREECAD_AXIS3 Transform { rotation 0 1 0 0 children
Transform {
#rotation 0 0 1 0
children
Transform {
translation 0 -104.15 -545
children [
# ELBOW
Group {
... here comes the unmodified definition of ELBOW
},
Transform {
translation 0 35 601
rotation 1 0 0 1.5707963
children
DEF FREECAD_AXIS4 Transform { rotation 0 1 0 0 children
Transform {
rotation 1 0 0 -1.5707963
children
Transform {
translation 0 -35 -601
children [
# FOREARM
Group {
... here comes the unmodified definition of FOREARM
},
Transform {
translation 0 35 770
#rotation 0 0 1 0
children
DEF FREECAD_AXIS5 Transform { rotation 0 1 0 0 children
Transform {
#rotation 0 0 1 0
children
Transform {
translation 0 -35 -770
children [
# WRIST
Group {
... here comes the unmodified definition of WRIST
},
Transform {
translation 0 35 835
rotation 1 0 0 1.5707963
children
DEF FREECAD_AXIS6 Transform { rotation 0 1 0 0 children
Transform {
rotation 1 0 0 -1.5707963
children
Transform {
translation 0 -35 -835
children [
# TOOL FLANGE
Group {
... here comes the unmodified definition of TOOL FRAME
},
Group {
... here comes the unmodified definition of TX40_HB007
} # "]" was deleted from this line
]}}}},
]}}}},
]}}}},
]}}}},
]}}}},
]}}}},
] # this is the "]" deleted from the line above
}
}</pre></div>
<p>Here is a patch to obtain the vrml file suitable for robot simulation:
</p>
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> 7a8
> # HORIZONTAL BASE CABLE OUTLET
95968a95970,95981
> Transform {
> translation 0 0 168
> rotation 1 0 0 1.5707963
> children
> DEF FREECAD_AXIS1 Transform { rotation 0 1 0 0 children
> Transform {
> rotation 1 0 0 -1.5707963
> children
> Transform {
> translation 0 0 -168
> children [
> # SHOULDER
128428a128442,128453
> Transform {
> translation 0 107.8 320
> #rotation 0 0 1 0
> children
> DEF FREECAD_AXIS2 Transform { rotation 0 1 0 0 children
> Transform {
> #rotation 0 0 1 0
> children
> Transform {
> translation 0 -107.8 -320
> children [
> # ARM
206503a206529,206540
> Transform {
> translation 0 104.15 545
> #rotation 0 0 1 0
> children
> DEF FREECAD_AXIS3 Transform { rotation 0 1 0 0 children
> Transform {
> #rotation 0 0 1 0
> children
> Transform {
> translation 0 -104.15 -545
> children [
> # ELBOW
267111a267149,267160
> Transform {
> translation 0 35 601
> rotation 1 0 0 1.5707963
> children
> DEF FREECAD_AXIS4 Transform { rotation 0 1 0 0 children
> Transform {
> rotation 1 0 0 -1.5707963
> children
> Transform {
> translation 0 -35 -601
> children [
> # FOREARM
417854a417904,417915
> Transform {
> translation 0 35 770
> #rotation 0 0 1 0
> children
> DEF FREECAD_AXIS5 Transform { rotation 0 1 0 0 children
> Transform {
> #rotation 0 0 1 0
> children
> Transform {
> translation 0 -35 -770
> children [
> # WRIST
422053a422115,422126
> Transform {
> translation 0 35 835
> rotation 1 0 0 1.5707963
> children
> DEF FREECAD_AXIS6 Transform { rotation 0 1 0 0 children
> Transform {
> rotation 1 0 0 -1.5707963
> children
> Transform {
> translation 0 -35 -835
> children [
> # TOOL FLANGE
435627c435700,435707
&lt; } ]
---
> }
> ]}}}},
> ]}}}},
> ]}}}},
> ]}}}},
> ]}}}},
> ]}}}},
> ]</pre></div>
<p><br />
</p>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=VRML_Preparation_for_Robot_Simulation&amp;oldid=177698">http://www.freecadweb.org/wiki/index.php?title=VRML_Preparation_for_Robot_Simulation&amp;oldid=177698</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>