Path Workbench/it: Difference between revisions

From FreeCAD Documentation
(Created page with "=== Link per gli impazienti === Secondo il prorpio interesse per l'ambiente Path sono disponibili diversi argomenti per ulteriori letture:")
(Created page with "* Un nuovo utente che sta cercando di familiarizzare con Path, può essere interessato ad un tutorial per una Esercitazione rapida. *...")
Line 17: Line 17:
Secondo il prorpio interesse per l'ambiente Path sono disponibili diversi argomenti per ulteriori letture:
Secondo il prorpio interesse per l'ambiente Path sono disponibili diversi argomenti per ulteriori letture:


* If you are a new new user trying to get familiar with Path, you might be interested in a fast [[Path Walkthrough for the Impatient|walk-through]] tutorial.
* Un nuovo utente che sta cercando di familiarizzare con Path, può essere interessato ad un tutorial per una [[Path Walkthrough for the Impatient/it|Esercitazione rapida]].
* If you have a special machine which cannot use one of the available postprocessors you may want to learn about [[Path_Postprocessor_Customization|post-processor customization]]
* Se si dispone di una macchina speciale che non può utilizzare uno dei postprocessori disponibili, si consiglia di leggere[[Path_Postprocessor_Customization/it|Personalizzazione del post-processore]]
* As an experienced user you may want to write a macro or automate a process might need to learn about [[Path_scripting|scripting]]
* Un utente esperto potrebbe voler scrivere una macro o automatizzare un processo che richiede di conoscere lo [[Path_scripting/it|Scripting di Path]]
* Power users who want to streamline their workflow can learn about [[Path_Customization|customization]].
* Gli utenti esperti che desiderano semplificare il proprio flusso di lavoro possono dover imparare come [[Path_Customization/it|Personalizzare Path]].
* New developers who want to contribute to path might want to understand [[Path_Core_Concepts|core concepts]].
* I nuovi sviluppatori che vogliono contribuire a Path potrebbero voler capire [[Path_Core_Concepts/it|Concetti principali di Path]].


== General concepts ==
== General concepts ==

Revision as of 20:52, 30 January 2018

Introduzione

L'ambiente Path viene utilizzato per produrre delle istruzioni macchina di tipo CNC machines da un modello 3D di FreeCAD. Con questo si producono oggetti 3D reali su macchine CNC come fresatrici, torni, macchine a taglio laser o simili. In genere, le istruzioni sono in un dialetto G-Code



L'ambiente Path di FreeCAD crea queste istruzioni macchina con il seguente flusso di lavoro:

  • L'oggetto base è un modello 3D, che in genere viene creato utilizzando uno o più ambienti quali Part Design, Part o Draft.
  • L'ambiente Path crea una Lavorazione. Essa contiene tutte le informazioni necessarie per generare il codice G necessario per eseguire il lavoro su una fresatrice CNC: c'è materiale di base (Stock), la fresatrice possiede un certo set di utensili e segue determinati comandi che controllano la velocità ed i movimenti(solitamente G-Code).
  • Gli utensili sono selezionati come richiesto dalle operazioni di lavorazione.
  • I percorsi di fresatura vengono creati utilizzando, ad es. le operazioni di Contornatura e Tasca. Questi oggetti Path utilizzano il dialetto G-Code interno di FreeCAD, indipendente dalla macchina CNC.


Link per gli impazienti

Secondo il prorpio interesse per l'ambiente Path sono disponibili diversi argomenti per ulteriori letture:

  • Un nuovo utente che sta cercando di familiarizzare con Path, può essere interessato ad un tutorial per una Esercitazione rapida.
  • Se si dispone di una macchina speciale che non può utilizzare uno dei postprocessori disponibili, si consiglia di leggerePersonalizzazione del post-processore
  • Un utente esperto potrebbe voler scrivere una macro o automatizzare un processo che richiede di conoscere lo Scripting di Path
  • Gli utenti esperti che desiderano semplificare il proprio flusso di lavoro possono dover imparare come Personalizzare Path.
  • I nuovi sviluppatori che vogliono contribuire a Path potrebbero voler capire Concetti principali di Path.

General concepts

The Path Workbench generates G-Code defining the paths required to mill the Project represented by the 3D model on the target mill—in [the Path Job Operations FreeCAD G-Code dialect ], which is later translated to the appropriate dialect for the target CNC controller by selecting the appropriate 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.

The Path Workbench provides a Tool Manager (Library, Tool-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.

I comandi di Path

Questi comandi sono usati per impostare un progetto CNC e gestire i modelli.

  • Vestizione Dogbone: Aggiunge una modifica di vestizione osso-di-cane (dogbone) ad un percorso selezionato
  • Vestizione Dragknife: Aggiunge una modifica di vestizione trascina-lama (dragknife) a un percorso selezionato

Script

L'ambiente Path offre una vasta gamma di script API in python. Con gli script python è possibile creare e modificare i percorsi, o estendere le funzionalità disponibili nell'ambiente.

FAQ

The Path Workbench shares many concepts with other CAM software packages but has its own peculiarities. If something seems wrong, this might be a good place to start.