Robot Workbench: Difference between revisions

From FreeCAD Documentation
m (png to svg)
(Updated Docnav. Ship WB is external in V0.19.)
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>

<!--T:40-->
<!--T:40-->
{{Docnav
{{Docnav
|[[Reverse Engineering Workbench|Reverse Engineering Workbench]]
|[[Reverse Engineering Workbench|Reverse Engineering Workbench]]
|[[Ship Workbench|Ship Workbench]]
|[[Sketcher Workbench|Sketcher Workbench]]
|IconL=Workbench_Reverse_Engineering.svg
|IconL=Workbench_Reverse_Engineering.svg
|IconR=Workbench_Ship.svg
|IconR=Workbench_Sketcher.svg
}}
}}


</translate>
[[Image:Workbench_Robot.svg|240px|center]]
<translate>
<!--T:42-->
<!--T:42-->
{{VeryImportantMessage|The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum].
{{Caption|align=center|The FreeCAD Robot Workbench Icon}}

{{VeryImportantMessage|The FreeCAD Robot Workbench is unmaintained. Please mention on the FreeCAD forum if you have an interest in maintaining this workbench.}}
<!--T:47-->
The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [[external_workbenches|external workbench]] and it could be moved to a separate repository.
}}


== Introduction == <!--T:37-->
== Introduction == <!--T:37-->

</translate>
[[Image:Workbench_Robot.svg|thumb|128px|<translate><!--T:46--> Robot workbench icon</translate>]]
<translate>


<!--T:2-->
<!--T:2-->
Line 34: Line 39:
</translate>
</translate>
{{TOCright}}
{{TOCright}}
[[Image:Robot_Workbench_example.jpg|600px]]
[[Image:Robot_Workbench_example.jpg|500px]]
<translate>
<translate>


Line 58: Line 63:
* [[Image:Robot_SetDefaultValues.svg|30px]] [[Robot_SetDefaultValues|Set the default speed parameter]]: Set the default values for way-point creation
* [[Image:Robot_SetDefaultValues.svg|30px]] [[Robot_SetDefaultValues|Set the default speed parameter]]: Set the default values for way-point creation
* [[Image:Robot_InsertWaypoint.svg|30px]] [[Robot_InsertWaypoint|Insert a waypoint]]: Insert a way-point from the current robot position into a trajectory
* [[Image:Robot_InsertWaypoint.svg|30px]] [[Robot_InsertWaypoint|Insert a waypoint]]: Insert a way-point from the current robot position into a trajectory
* [[Image:Robot_InsertWaypointPre.png|30px]] [[Robot_InsertWaypointPre|Insert a waypoint preselected]]: Insert a way-point from the current mouse position into a trajectory
* [[Image:Robot_InsertWaypointPre.svg|30px]] [[Robot_InsertWaypointPre|Insert a waypoint preselected]]: Insert a way-point from the current mouse position into a trajectory


==== Parametric trajectories ==== <!--T:9-->
==== Parametric trajectories ==== <!--T:9-->
* [[Image:Robot_Edge2Trac.png|30px]] [[Robot_Edge2Trac|Create a trajectory out of edges]]: Insert a new object which decompose edges to a trajectory
* [[Image:Robot_Edge2Trac.svg|30px]] [[Robot_Edge2Trac|Create a trajectory out of edges]]: Insert a new object which decompose edges to a trajectory
* [[Image:Robot_TrajectoryDressUp.png|30px]] [[Robot_TrajectoryDressUp|Dress-up a trajectory]]: Lets you override one or more properties of a trajectory
* [[Image:Robot_TrajectoryDressUp.svg|30px]] [[Robot_TrajectoryDressUp|Dress-up a trajectory]]: Lets you override one or more properties of a trajectory
* [[Image:Robot_TrajectoryCompound.png|30px]] [[Robot_TrajectoryCompound|Trajectory compound]]: Create a compound out of some single trajectories
* [[Image:Robot_TrajectoryCompound.svg|30px]] [[Robot_TrajectoryCompound|Trajectory compound]]: Create a compound out of some single trajectories


== Scripting == <!--T:10-->
== Scripting == <!--T:10-->
Line 73: Line 78:
* [[Robot 6-Axis|Robot 6-Axis]]
* [[Robot 6-Axis|Robot 6-Axis]]
* [[VRML Preparation for Robot Simulation|VRML Preparation for Robot Simulation]]
* [[VRML Preparation for Robot Simulation|VRML Preparation for Robot Simulation]]



<!--T:35-->
<!--T:35-->
{{Docnav
{{Docnav
|[[Reverse Engineering Workbench|Reverse Engineering Workbench]]
|[[Reverse Engineering Workbench|Reverse Engineering Workbench]]
|[[Ship Workbench|Ship Workbench]]
|[[Sketcher Workbench|Sketcher Workbench]]
|IconL=Workbench_Reverse_Engineering.svg
|IconL=Workbench_Reverse_Engineering.svg
|IconR=Workbench_Ship.svg
|IconR=Workbench_Sketcher.svg
}}
}}



</translate>
</translate>

{{Robot Tools navi{{#translation:}}}}
{{Robot Tools navi{{#translation:}}}}

{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

[[Category:Workbenches{{#translation:}}]]
[[Category:Workbenches{{#translation:}}]]

Revision as of 13:00, 7 August 2020

The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the FreeCAD forum.

The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an external workbench and it could be moved to a separate repository.

Introduction

Robot workbench icon

The Robot Workbench is a tool to simulate a standard 6-axis industrial robot, like Kuka.

You can do the following tasks:

  • Set up a simulation environment with a robot and work pieces.
  • Create and fill up movement trajectories.
  • Decompose features of a CAD part to a trajectory.
  • Simulate the robot movement and reaching distance.
  • Export the trajectory to a robot program file.

To get started try the Robot tutorial, and see the programming interface in the RobotExample.py example file.

Tools

Here the principal commands you can use to create a robot set-up.

Robots

The tools to create and manage the 6-Axis robots

Trajectories

Tools to create and manipulate trajectories. There are two kinds, the parametric and non parametric ones.

Non parametric trajectories

Parametric trajectories

Scripting

See the Robot API example for a description of the functions used to model the robot displacements.

Tutorials