Path Workbench/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Lo strumento principale dell'ambiente Path è l'oggetto Percorso. Un oggetto Percorso descrive il movimento che la testa della macchina deve eseguire per lavorare un blocco di...")
(Created page with "Gli oggetti Percorso possono essere creati in molti modi, fornendo loro manualmente i punti attraverso i quali essi devono passare, o derivandoli da un oggetto filiforme di Fr...")
Line 5: Line 5:
Lo strumento principale dell'ambiente Path è l'oggetto Percorso. Un oggetto Percorso descrive il movimento che la testa della macchina deve eseguire per lavorare un blocco di materiale, nel caso di macchine a controllo numerico, o per aggiungere uno strato di materiale, nel caso di stampanti 3D. Gli oggetti Percorso possono contenere informazioni di movimento, ma anche altre istruzioni per la macchina, come la velocità di rotazione della fresa.
Lo strumento principale dell'ambiente Path è l'oggetto Percorso. Un oggetto Percorso descrive il movimento che la testa della macchina deve eseguire per lavorare un blocco di materiale, nel caso di macchine a controllo numerico, o per aggiungere uno strato di materiale, nel caso di stampanti 3D. Gli oggetti Percorso possono contenere informazioni di movimento, ma anche altre istruzioni per la macchina, come la velocità di rotazione della fresa.


Gli oggetti Percorso possono essere creati in molti modi, fornendo loro manualmente i punti attraverso i quali essi devono passare, o derivandoli da un oggetto filiforme di FreeCAD, o, più interessante, ricavandoli automaticamente da un oggetto 3D esistente, o da parti di esso. Questo è un compito complesso e gli strumenti descritti in seguito servono per fare questo, o in parte, in modi diversi. Per conoscerli tutti, e scegliere quale è il più adatto a svolgere il compito particolare di cui si ha bisogno serve un pò di esperienza.
Path objects can be created in may ways, by giving them manually the points through which they must pass, or deriving them from a wire-shaped FreeCAD object, or, more interestingly, by deriving them automatically from an existing 3D object, or parts of it. This is a complex task, and the tools below are there to do this, or part of this, in different ways. It requires some use to know them all, and choose which one is more suited to the particular task you need.


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

Revision as of 21:10, 14 October 2015

Introduzione

L'ambiente Path viene utilizzato per produrre delle istruzioni di tipo Codice G da un modello di FreeCAD. Il linguaggio G-Code è usato dalle macchine CNC e da alcune stampanti 3D per produrre oggetti 3D reali.

Lo strumento principale dell'ambiente Path è l'oggetto Percorso. Un oggetto Percorso descrive il movimento che la testa della macchina deve eseguire per lavorare un blocco di materiale, nel caso di macchine a controllo numerico, o per aggiungere uno strato di materiale, nel caso di stampanti 3D. Gli oggetti Percorso possono contenere informazioni di movimento, ma anche altre istruzioni per la macchina, come la velocità di rotazione della fresa.

Gli oggetti Percorso possono essere creati in molti modi, fornendo loro manualmente i punti attraverso i quali essi devono passare, o derivandoli da un oggetto filiforme di FreeCAD, o, più interessante, ricavandoli automaticamente da un oggetto 3D esistente, o da parti di esso. Questo è un compito complesso e gli strumenti descritti in seguito servono per fare questo, o in parte, in modi diversi. Per conoscerli tutti, e scegliere quale è il più adatto a svolgere il compito particolare di cui si ha bisogno serve un pò di esperienza.

Path objects can also be combined into Compounds, 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 cutting 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.

Strumenti dell'interfaccia grafica

Warning

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


Template:Path Tools/it

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.