Path Workbench/es

From FreeCAD Documentation
Revision as of 23:01, 17 January 2018 by EdgarRobles (talk | contribs)

Introducción

El banco de trabajo Trayectoria es usado para producir instrucciones maquina para maquinas CNC a partir de un modelo FreeCAD. Estos producen objetos 3D reales en maquinas CNC tales como fresadoras, tornos, cortadoras laser, o similares.Tipicamente, estas instruciones son dialeto de tipo código G.



El flujo de trabajo del banco de trabajo Trayectoria crea estas instrucciones maquina como sigue:

  • Un modelo 3D es la base del objeto, tipicamente creado utilizando uno o más de los bancos de trabajo Diseño de parte, Parte o Boceto.
  • Un Objeto trabajoes creado en el banco de trabajo Trayectoria. Este contiene toda la información necesaria para generar el código G para procesarlo el trabajo sobre una maquina CNC:Eso es material stock, la maquina de mecanizado tiene un cierto Conjunto de herramientas y estos siguen cierto comandos de control de velocidad y movimientos (Usualmente codigo G).
  • Herramientas son seleccionadas como son requeridas por las operaciones de trabajo.
  • Trayectorias de mecanizado son creadas utilizando por ejemplo, operaciones Contorno and Vaciado. Esos Objectos trayectoria utilizan una dialecto de código G el cual es independiente de la maquina. Esto permite al trabajo ser una salida para cualquier numero de diferentes de controladores CNC del mundo real invocando diferentes pos procesadores.
  • Desde que cada controladores habla un dialecto de código G especifico, Un pos procesador corrector de dialecto traduce la agnostica interna el codigo G de FreeCAD al dialeto codigo G de la maquina.

Varios pos procesadores estan incluidos permitiendo uso directo o como una plantilla para su modificación. Los pos procesadores contienen banderas de configuraciónes y son diseñadas para ser ajustadas agregando códigos G y M para proveer definiciones para:

    • Inicialización de maquina
    • Finalizción de trabajo
    • Cambios de herramientas
    • Refrigeración encendido/apagado
    • Etc...

Links for the impatient

Depending on your interest in the Path workbench there are different topics for further reading:

  • If you are a new new user trying to get familiar with Path, you might be interested in a fast walk-through tutorial.
  • If you have a special machine which cannot use one of the available postprocessors you may want to write your own postprocessor
  • As an experienced user you may want to write a macro for the Path Workbench
  • Power users may want to streamline processes.
  • New Developers might want to understand core concepts.

General concepts

The Path Workbench generates the G-Code defining the paths required to mill the Project represented by the 3D model on the destination mill—in a simple agnostic G-Code dialect which is later translated to the appropriate dialect for the target CNC controller by selecting the proper Postprocessor.

The G-Code is generated from directives and Operations contained in a Path Job. The Job Workflow lists these in the order they will be executed. The list is populated by adding Path Operations, Path Dressups, Path Partial Commands, and Path Modifications—from the Path Menu, or GUI buttons.

A summary of the contents of the Path Job includes:

  1. A list of Tool-Controller definitions, specifying the geometry, Feeds, and Speeds for the Path Operations Tools.
  2. A Workflow sequential list of Path Operations.
  3. A Base Body—a clone used for offset.
  4. A Stock, representing the raw material that will be milled to Path Workbench.
  5. A SetupSheet, containing inputs used by the Path Operations, including static values and formulas.
  6. Configuration parameters specifying the output G-Code job's destination path, file name, and extension, and the Postprocessor—used to generate the appropriate dialect for the target CNC Controller, and customize Units, Tool Changes, Parking, etc...

The Path Workbench provides a Tool Manager (Library, Table), and G-Code Inspection, and Simulation tools. It links the Postprocessor, and allows importing and exporting Job Templates.

The Path Workbench has external dependencies including:

  1. The FreeCAD 3D model units are defined in the Edit-> Preference...->General->Units tab's Units settings. The Postprocessor configuration defines the final G-Code units.
  2. The Macro file path, and Geometric tolerances, are defined in the Edit->Preferences...->Path->Job Preferences tab.
  3. Colors are defined in the Edit->Preferences...->Path->Path colors tab.
  4. Holding tag parameters are defined in the Edit->Preferences...->Path->Dressups tab.
  5. That the Base 3D model quality supports the Path WB requirements—passes Check Geometry.

FreeCAD Path Workbench internal G-Code dialect represents Feed rates in Units/Second—what the G-Code Inspection tool will show. The Postprocessor is configured to generate the appropriate Feed rates—either in Units/Second or Units/Minute for the target mill.

Herramientas de GUI

Template:Path Tools/es


Archivos de guión

El banco de trabajo Trayectoria ofrece un amplia API de archivos guión de python que tu puedes crear y modificar trayectorias de archivos guión de python, o extender las funciones disponibles del banco de trabajo.

Why does my operation not produce output?

Can Path Workbench perform 3D surfacing machining?

Can I modify an existing, or make my own Postprocessor?

How I can set metric/imperial to my path object?

How I can simulate my strategies?

El banco de trabajo Trayectoria todavía esta en estados tempranos de desarrollo.Algunas de las herramientas debajo tal ves no funcionan como se espera.}}