Path Workbench/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== I comandi di Path ==")
(Redirected page to CAM Workbench/it)
Tag: New redirect
 
(378 intermediate revisions by 9 users not shown)
Line 1: Line 1:
#REDIRECT [[CAM_Workbench/it]]
==Introduzione==

L'ambiente Path viene utilizzato per produrre delle istruzioni macchina di tipo [https://en.wikipedia.org/wiki/CNC_router 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 [https://en.wikipedia.org/wiki/G-Code G-Code]


[[Image:pathwb.png|frameless|center|upright=2.8]]


L'ambiente Path di FreeCAD crea le 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 [[PartDesign Workbench/it|Part Design]], [[Part Workbench/it|Part]] o [[Draft Workbench/it|Draft]].
* L'ambiente Path crea una [[Path_Job/it|Lavorazione]]. Essa contiene tutte le informazioni necessarie per generare il codice G necessario per eseguire il lavoro su una fresatrice CNC: c'è il pezzo di base (Stock), la fresatrice possiede un certo [[Path_EditToolsTable|set di utensili]] e segue determinati comandi che controllano la velocità ed i movimenti (solitamente G-Code).
* Gli utensili vengono selezionati come richiesto dalle operazioni di lavorazione.
* I percorsi di fresatura sono creati utilizzando, ad es. le operazioni di [[Path_Profile/it|Contornatura]] e [[Path_Pocket_3D/it|Tasca]]. Questi [[Path objects/it|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 [[Path Walkthrough for the Impatient/it|Esercitazione rapida]].
* Se si dispone di una macchina speciale che non può utilizzare uno dei postprocessori disponibili, si consiglia di leggere come [[Path_Postprocessor_Customization/it|Personalizzare il post-processore]]
* Un utente esperto potrebbe voler scrivere una macro o automatizzare un processo che richiede di conoscere lo [[Path_scripting/it|Scripting di Path]]
* Gli utenti esperti che desiderano semplificare il proprio flusso di lavoro possono aver bisogno di imparare come [[Path_Customization/it|Personalizzare Path]].
* I nuovi sviluppatori che vogliono contribuire a Path possono voler capire i [[Path_Core_Concepts/it|Concetti principali di Path]].

== Concetti generali ==
L'ambiente Path genera un codice G che definisce i percorsi richiesti per fresare il progetto rappresentato dal modello 3D in codice interno, [[https://www.freecadweb.org/wiki/Path_scripting#FreeCAD.27s_internal_GCode_format the Path Job Operations FreeCAD G-Code dialect ]], che viene successivamente tradotto nel dialetto appropriato per il controller CNC di destinazione selezionando il Postprocessore appropriato.
Il codice G è generato dalle direttive e dalle operazioni contenute in un percorso di lavorazione. Il flusso di lavorazione li elenca nell'ordine in cui verranno eseguiti. L'elenco può essere popolato aggiungendo Operazioni sui percorsi, Vestizioni dei percorsi, Comandi parziali dei percorsi e Modifiche ai percorsi, dal menu Path o dai pulsanti della GUI.

Path offre un Gestore degli utensili (Libreria, Tabella utensili), un ispettore del G-Code e strumenti di simulazione. Collega il Post Processore e consente di importare ed esportare i modelli di lavoro.

L'ambiente Path ha dipendenze esterne tra cui:
# Le unità del modello 3D di FreeCAD sono definite nelle impostazioni Unità-> Preferenze ...-> Generale-> Unità di misura. La configurazione del postprocessore definisce le unità G-Code finali.
# Il percorso del file macro e le tolleranze geometriche sono definiti nella scheda Modifica-> Preferenze ...-> Path-> Preferenze lavorazione.
# I colori sono definiti in Modifica-> Preferenze ...-> Path-> scheda Colori Path.
# I parametri dei tag sono definiti nella scheda Modifica-> Preferenze ...-> Path-> Dressups.
# Se la qualità del modello Base 3D supporta i requisiti del Path, supera la Verifica della geometria.

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.


{{Path_Commands/it}}

== I comandi di Path ==

These commands are used for seting up a CNC project and manage your templates.

* [[Image:Path-Job.png|32px]] [[Path_Job|Job]]: Creates a new CNC job

* [[Image:Path_PostProcess.png|32px]] [[Path_Post|Post Process]]: Exports a project to G-code

* [[Image:Path-ExportTemplate.png|32px]] [[Path_ExportTemplate|Export Template]]: Export the current job as a template

* [[File:Path_Inspect.png|32px]] [[Path_Inspect|G-Code Inspector]]: Shows the G-code for checking

* [[File:Path_Simulator.png|32px]] [[Path_Simulator|Simulator]]: Shows the milling operation like it's done on the machine

* [[Image:Path_ToolLibraryEdit.png|32px]] [[Path_ToolLibraryEdit|Tool Manager]]: Edit the Tool Manager

* [[File:Path-CompleteLoop.png|32px]] [[Path_SelectLoop|Complete Loop]]: Completes a loop from two selected edges

* [[File:Path_Contour.png|32px]] [[Path_Contour|Contour]]: Creates a path of the contour of the base object

* [[Image:Path-Profile-Face.png|32px]] [[Path_ProfileFace|Profile from Face]]: Creates a profiling path from a selected face

* [[Image:Path-Profile-Edges.png|32px]] [[Path_ProfileEdges|Profile from Edges]]: Creates a profiling path from selected edges

* [[Image:Path_Pocket.png|32px]] [[Path_Pocket_Shape|Pocket]]: Creates a pocketing operation from one ore more selected pocket(s)

* [[Image:Path_Drilling.png|32px]] [[Path_Drilling|Drilling]]: Performs a drilling cycle

* [[Image:Path-Engrave.png|32px]] [[Path_Engrave|Engrave]]: Creates a engraving path

* [[Image:Path-Face.png|32px]] [[Path_MillFace|Mill Face]]: Creates a surfacing path

* [[Image:Path-Helix.png|32px]] [[Path_Helix|Helix]]: Creates a helical path

* [[Image:Path-3DPocket.png|32px]] [[Path_Pocket_3D|3D Pocket]]: Creates a path for a 3D pocket

===Path Dressup===

* [[Image:Path_Dressup.png|32px]] [[Path_DressupDogbone|Dogbone Dressup]]: Adds a dogbone dressup modification to a selected path

* [[Image:Path_Dressup.png|32px]] [[Path_DressupDragKnife|Dragknife Dressup]]: Adds a dragknife dressup modification to a selected path

* [[Image:Path_Dressup.png|32px]] [[Path_DressupLeadInOut|Lead In Dressup]]: Adds a lead-in and/or lead-out point to a selected path

* [[Image:Path_Dressup.png|32px]] [[Path_DressupRampEntry|Ramp Entry Dressup]]: Adds ramp entry dressup modification to a selected path

* [[Image:Path_Dressup.png|32px]] [[Path_DressupTag|Tag Dressup]]: Adds a holding tag dressup modification to a selected path

===Partial Commands===

* [[Image:Path_SelectionPlane.png|32px]] [[Path_Plane|Plane]]: Changes the working plane of the machine

* [[Image:Path_Fixture.png|32px]] [[Path_Fixture|Fixture]]: Changes the fixture position

* [[Image:Path_ToolLenthOffset.png|32px]] [[Path_ToolLengthOffset|Tool Length Offset]]: Changes the offset of the current tool

* [[Image:Path_Comment.png|32px]] [[Path_Comment|Comment]]: Inserts a comment in the G-code of a path

* [[Image:Path_Stop.png|32px]] [[Path_Stop|Stop]]: Inserts a full stop of the machine

* [[Image:Path_Custom.png|32px]] [[Path_Custom|Custom]]: Inserts custom G-code

* [[Image:Path_GcodeFromShape.png|32px]] [[Path_FromShapes|Gcode From a Shape]]: Creates a path object from a selected Part object

===Path Modification===

* [[Image:Path_Copy.png|32px]] [[Path_Copy|Copy]]: Creates a parametric Copie of a selected path object

* [[Image:Path_Array.png|32px]] [[Path_Array|Array]]: Creates an array by duplicating a selected path

* [[Image:Path_SimpleCopy.png|32px]] [[Path_SimpleCopy|Simple Copy]]: Creates a non-parametric copy of a selected path object

===Other===

* [[Image:Path-3DSurface.png|32px]] [[Path_Surface|3D Surface]]: Creates a path for a 3D surface

* [[Image:Path-Area.png|32px]] [[Path_Area|Feature area]]: Creates a feature area from selected objects

* [[Image:Path-Area-Workplane.png|32px]] [[Path_Area_Workplane|Feature area workplane]]: Creates a feature area workplane

* [[File:Path_Sanity.png|32px]] [[Path_Sanity|Path Errors]]: Checks the selected Job for missing values

==Script==

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

== FAQ ==

[[Path_FAQ|FAQ]]

L'ambiente Path condivide molti concetti con altri pacchetti software CAM ma ha le sue peculiarità. Se qualcosa sembra sbagliato, questo potrebbe essere un buon punto di partenza.

[[Category:User Documentation/it]]
{{clear}}
<languages/>

Latest revision as of 19:45, 17 March 2024

Redirect to: