Path Workbench/es

From FreeCAD Documentation
Revision as of 00:49, 12 January 2018 by EdgarRobles (talk | contribs) (Created page with "Objetos trayectoria pueden ser creados en muchas formas, por entregarle manualmente los puntos a través el cual debe pasar, o derivando de ellos de un objeto alambre-formado,...")

Introducción

El banco de trabajo Trazo es usado para producir instrucciones Codigo-G a partir de un modelo FreeCAD. El lenguaje Codigo-G es utilizado por maquinas CNC y varias impresoras 3D para producir objetos 3D en el mundo real.

La primera herramienta del banco de trabajo trazo es el objeto trazo. Un objeto trazo describe el movimiento que una cabeza de maquina debe ejecutar para cortar a través de un bloque de material, dentro del gabinete de la maquinas CNCs, o agregar material una capa de material imprimible, dentro del gabinete de la impresora 3D. Los objetos trazo pueden contener no solo información de movimiento, sino también otras instrucciones para la maquina, tal como la velocidad de rotación que el cortador debe tener, o la cantidad de material que debe usado.

Objetos trayectoria pueden ser creados en muchas formas, por entregarle manualmente los puntos a través el cual debe pasar, o derivando de ellos de un objeto alambre-formado, o, mas interesante, o derivando de ellos automaticamente de objetos 3D existentes, o partes de el. Esto es una tarea compleja, y las herramientas debajo de la pagina son aquellas para hacer esto, en diferentes formas. Requiere algo de uso para conocer todas ellas, y elegir cual es mas adecuado para la tarea particular que tu necesitas. Algunas veces,tal ves prefieras construir sus trayectorias paso por paso, usando herramientas parciales, el lugar de utilizar las herramientas mas complejas.

Path objects can also be combined into Compounds or Arrays, allowing you to use different tools to do different parts of the whole cutting operation, and join them into one final path.

Project objects, finally, allow you to manage different cutting operations that have to be performed by a same machine, and add machine-specific information such as a table of cutting tools available on the machine, with their characteristics. Some Path tools will then be able to refer to that table to obtain information like the diameter of a certain cutting tool.

Finally, since each type of machine often speaks a different G-Code dialect, when exporting your final Paths to G-Code, you might want to use one of the included post-processing scripts, which translates the machine-agnostic FreeCAD G-Code into a particular flavor recognized by your machine.

FreeCAD is also able to import G-Code files, for which a pre-processing script can also be used.

The Principles of the Process

Warning

The documentation presented here is for FreeCAD V 0.17.

The Path workbench is still in early stages of development. Some of the tools below might not work as expected.


The bracket for the various path elements is the Job. You can think of it as a job you have to do at a real mill: The mill has a certain set of control codes (usually GCode), you use a certain set of tools, you have some stock material, and you start to mill by using the different tools. You can use the same tool for different paths, e.g. milling different pockets.

GUI tools

Template:Path Tools

Scripting

The Path workbench offers a broad python scripting API. With it, you can create and modify paths from python scripts, or extend the available functionality of the workbench.