Path Workbench: Difference between revisions

From FreeCAD Documentation
(Dressup menu items do not have "Dressup" in menu text.)
(Redirected page to CAM Workbench)
Tag: New redirect
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
#REDIRECT [[CAM_Workbench]]
<languages/>
<translate>

<!--T:86-->
{{Docnav
|[[PartDesign_Workbench|PartDesign Workbench]]
|[[Points_Workbench|Points Workbench]]
|IconL=Workbench_PartDesign.svg
|IconR=Workbench_Points.svg
}}

<!--T:94-->
[[Image:Workbench_Path.svg|thumb|128px|Path workbench icon]]

</translate>
{{TOCright}}
<translate>

== Introduction == <!--T:1-->

<!--T:2-->
The [[Image:Workbench_Path.svg|24px]] [[Path_Workbench|Path Workbench]] is used to produce machine instructions for [https://en.wikipedia.org/wiki/CNC_router CNC machines] from a FreeCAD 3D model. These produce real-world 3D objects on CNC machines such as mills, lathes, lasercutters, or similar. Typically, instructions are a [https://en.wikipedia.org/wiki/G-code G-code] dialect. A [https://www.ange-softs.com/SIMULCNCHTML/index.html general CNC lathe tool path sequence simulation example] is presented here.

</translate>
[[Image:pathwb.png|600px]]
<translate>

<!--T:3-->
The FreeCAD Path Workbench workflow creates these machine instructions as follows:
* A 3D model is the base object, typically created using one or more of the [[Image:Workbench_PartDesign.svg|24px]] [[PartDesign_Workbench|Part Design]], [[Image:Workbench_Part.svg|24px]] [[Part_Workbench|Part]] or [[Image:Workbench_Draft.svg|24px]] [[Draft_Workbench|Draft]] Workbenches.
* A [[Path_Job|Path Job]] is created in the Path Workbench. This contains all the information required to generate the necessary G-code to process the Job on a CNC mill: there is Stock material, the mill has a certain [[Path_ToolLibraryEdit|set of tools]] and it follows certain commands controlling speed and movements (usually G-code).
* [[Path_Tools|Path Tools]] are selected as required by the Job Operations.
* Milling paths are created using e.g. [[Path_Profile|Contour]] and [[Path_Pocket_3D|Pocket]] Operations. These Path objects use internal FreeCAD G-code dialect, independent of the CNC machine.
* Export the job with a G-code, matching to your machine. This step is called ''post processing''; there are different post processors available.

== General concepts == <!--T:108-->

<!--T:20-->
The Path Workbench generates G-code defining the paths required to mill the Project represented by the 3D model on the target mill in [[Path_scripting#The_FreeCAD_Internal_GCode_Format|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.

<!--T:109-->
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 Supplemental Commands, and Path Modifications from the Path Menu, or GUI buttons.

<!--T:22-->
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.

<!--T:23-->
The Path Workbench has external dependencies including:
# The FreeCAD 3D model units are defined in the {{MenuCommand|Edit → Preference → General → Units tab's Units settings}}. The Postprocessor configuration defines the final G-code units.
# The Macro file path, and Geometric tolerances, are defined in the {{MenuCommand|Edit → Preferences → Path → Job Preferences}} tab.
# Colors are defined in the {{MenuCommand|Edit → Preferences → Path → Path colors}} tab.
# Holding tag parameters are defined in the {{MenuCommand|Edit → Preferences → Path → Dressups}} tab.
# That the Base 3D model quality supports the Path workbench requirements, passes Check Geometry.

== Limitations == <!--T:91-->

<!--T:92-->
Some current limitations of which you should be aware are:
* Most of the Path Tools are not true 3D tools but only 2.5D capable. This means that they take a fixed 2D shape and can cut it down to a given depth. However, there are two tools which produce true 3D paths: {{KEY|[[Image:Path_3DPocket.svg|24px]] [[Path_Pocket_3D|3D Pocket]]}} and {{KEY|[[Image:Path_Surface.svg|24px]] [[Path_Surface|3D Surface]]}} (which is still an [[Path_experimental|experimental feature]] as of November 2020).
* Most of Path workbench is designed for a simple, standard 3-axis (xyz) CNC mill/router, but lathe tools are under development in 0.19_pre.
* Most operations in Path workbench will return paths based on a standard endmill tool/bit only, regardless of the tool/bit type assigned in a given tool controller with the exception of the {{KEY|[[Image:Path_Engrave.svg|24px]] [[Path_Engrave|Engrave]]}} and {{KEY|[[Image:Path_Surface.svg|24px]] [[Path_Surface|3D Surface]]}} operations.
* The operations within the Path workbench are not aware of clamping mechanisms in use to secure the model to your machine. Consequently, please review and simulate the paths you generate prior to sending the code to your machine. If necessary, model your clamping mechanisms in FreeCAD in order to better inspect the paths generated. Look for possible collisions with clamps or other obstacles along the paths.

== Units == <!--T:78-->

<!--T:79-->
Unit handling in Path can be confusing. There are several points to understand:
# FreeCAD base units for length and time are 'mm' and 's' respectively. Velocity is thus 'mm/s'. This is what FreeCAD stores internally regardless of anything else
# The default unit schema uses the default units. If you're using the default schema and you enter a feed rate without a unit string, it will get entered as 'mm/s'
# Most CNC machines expect feed rate in the form of either 'mm/min' or 'in/min'. Most post-processors will automatically convert the unit when generating gcode.

<!--T:80-->
Schemas:
# Changing schema in preferences changes default unit string for the input fields. If you're a Path user and prefer to design in metric, it's highly recommended that you use the "Metric Small Parts & CNC" schema. If you design in US units, either the Imperial Decimal and Building US will work
# Changing your preferred unit schema will have no effect on output but will help avoid input errors

<!--T:81-->
Output:
# Generating the correct unit in output is the responsibility of the post-processor and is done only at that time
# Machine output unit is completely unrelated to your selected unit schema
# Post-processors produce either metric (G21) output, Imperial (G20) output or are configurable.
# Configurable post-processors default to metric (G21)
# If you want your configurable post-processor to output imperial gcode (G20), Set the correct argument in your job output configation (ie --inches for linuxcnc). This can be stored in a job template and set as your default template to make it automatic for all future jobs

<!--T:82-->
Path Inspection:
# If you use the Path Inspect tool to look at g-code, you will see it in 'mm/s' because it is not being post-processed

== Heights and depths == <!--T:110-->

<!--T:37-->
Many of the commands have various heights and depths:

<!--T:132-->
[[File:Path-DepthsAndHeights.gif|500px]]
{{Caption|Visual reference for Depth properties (settings)}}

== Commands == <!--T:112-->

<!--T:113-->
Some commands are experimental and not available by default. To enable them see [[Path_experimental|Path experimental]].

=== Project Commands === <!--T:114-->

<!--T:39-->
* [[Image:Path_Job.svg|32px]] [[Path_Job|Job]]: Creates a new CNC job.

<!--T:40-->
* [[Image:Path_Post.svg|32px]] [[Path_Post|Post Process]]: Exports a project to G-code.

<!--T:77-->
* [[File:Path_Sanity.svg|32px]] [[Path_Sanity|Check the path job for common errors]]: Checks the selected job for missing values.

<!--T:41-->
* [[Image:Path_ExportTemplate.svg|32px]] [[Path_ExportTemplate|Export Template]]: Export the current job as a template.

=== Tool Commands === <!--T:115-->

<!--T:42-->
* [[File:Path_Inspect.svg|32px]] [[Path_Inspect|Inspect Path Commands]]: Shows the G-code for checking.

<!--T:43-->
* [[File:Path_Simulator.svg|32px]] [[Path_Simulator|CAM Simulator]]: Shows the milling operation like it's done on the machine.

<!--T:45-->
* [[File:Path_SelectLoop.svg|32px]] [[Path_SelectLoop|Finish Selecting Loop]]: Completes a loop from two selected edges.

<!--T:89-->
* [[Image:Path_OpActiveToggle.svg|32px]] [[Path_OpActiveToggle|Toggle the Active State of the Operation]]: Activates or de-activates a path operation.

<!--T:116-->
* [[Image:Path_ToolBitLibraryOpen.svg|32px]] [[Path_ToolBitLibraryOpen|ToolBit Library editor]]: Opens an editor to manage ToolBit libraries.

<!--T:117-->
* [[Image:Path_ToolBitDock.svg|32px]] [[Path_ToolBitDock|ToolBit Dock]]: Toggles the ToolBit Dock.

=== Basic Operations === <!--T:98-->

<!--T:99-->
* [[Image:Path_Profile.svg|32px]] [[Path_Profile|Profile]]: Creates a profile operation of the entire model, or from one or more selected faces or edges.

<!--T:49-->
* [[Image:Path_Pocket_Shape.svg|32px]] [[Path_Pocket_Shape|Pocket Shape]]: Creates a pocketing operation from one or more selected pocket(s).

<!--T:50-->
* [[Image:Path_Drilling.svg|32px]] [[Path_Drilling|Drilling]]: Performs a drilling cycle.

<!--T:52-->
* [[Image:Path_Face.svg|32px]] [[Path_MillFace|Face]]: Creates a surfacing path.

<!--T:53-->
* [[Image:Path_Helix.svg|32px]] [[Path_Helix|Helix]]: Creates a helical path.

<!--T:90-->
* [[Image:Path_Adaptive.svg|32px]] [[Path_Adaptive|Adaptive]]: Creates an adaptive clearing and profiling operation.

<!--T:100-->
* [[Image:Path_Slot.svg|32px]] [[Path_Slot|Slot]]: Creates a slotting operation from selected features or custom points. [[Path_experimental|{{Emphasis|Experimental}}]].

<!--T:51-->
* [[Image:Path_Engrave.svg|32px]] [[Path_Engrave|Engrave]]: Creates an engraving path.

<!--T:131-->
* [[Image:Path_Deburr.svg|32px]] [[Path_Deburr|Deburr]]: Creates a deburr path.

<!--T:55-->
* [[Image:Path_Vcarve.svg|32px]] [[Path_Vcarve|Vcarve]]: Creates an engraving path using a V tool shape.

=== 3D Operations === <!--T:118-->

<!--T:54-->
* [[Image:Path_3DPocket.svg|32px]] [[Path_Pocket_3D|3D Pocket]]: Creates a path for a 3D pocket.

<!--T:74-->
* [[Image:Path_Surface.svg|32px]] [[Path_Surface|3D Surface]]: Creates a path for a 3D surface. [[Path_experimental|{{Emphasis|Experimental}}]].

<!--T:106-->
* [[Image:Path_Waterline.svg|32px]] [[Path_Waterline|Waterline]]: Creates a waterline path for a 3D surface. [[Path_experimental|{{Emphasis|Experimental}}]].

=== Path Dressup === <!--T:104-->

* [[Image:Path_DressupAxisMap.svg|32px]] [[Path_DressupAxisMap|Axis Map]]

<!--T:93-->
* [[Image:Path_DressupPathBoundary.svg|32px]] [[Path_DressupPathBoundary|Boundary]]: Adds a boundary dressup modification to a selected path.

<!--T:56-->
* [[Image:Path_DressupDogbone.svg|32px]] [[Path_DressupDogbone|Dogbone]]: Adds a dogbone dressup modification to a selected path.

<!--T:57-->
* [[Image:Path_DressupDragKnife.svg|32px]] [[Path_DressupDragKnife|DragKnife]]: Adds a dragknife dressup modification to a selected path.

<!--T:58-->
* [[Image:Path_DressupLeadInOut.svg|32px]] [[Path_DressupLeadInOut|LeadInOut]]: Adds a lead-in and/or lead-out point to a selected path.

<!--T:59-->
* [[Image:Path_DressupRampEntry.svg|32px]] [[Path_DressupRampEntry|RampEntry]]: Adds ramp entry dressup modification to a selected path.

<!--T:60-->
* [[Image:Path_DressupTag.svg|32px]] [[Path_DressupTag|Tag]]: Adds a holding tag dressup modification to a selected path.

* [[Image:Path_DressupZCorrect.svg|32px]] [[Path_DressupZCorrect|Z Depth Correction]]

=== Supplemental Commands === <!--T:61-->

<!--T:63-->
* [[Image:Path_Fixture.svg|32px]] [[Path_Fixture|Fixture]]: Changes the fixture position.

<!--T:65-->
* [[Image:Path_Comment.svg|32px]] [[Path_Comment|Comment]]: Inserts a comment in the G-code of a path.

<!--T:66-->
* [[Image:Path_Stop.svg|32px]] [[Path_Stop|Stop]]: Inserts a full stop of the machine.

<!--T:67-->
* [[Image:Path_Custom.svg|32px]] [[Path_Custom|Custom]]: Inserts custom G-code.

* [[Image:Path_Probe.svg|32px]] [[Path_Probe|Probe]]:

<!--T:68-->
* [[Image:Path_Shape.svg|32px]] [[Path_Shape|From Shape]]: Creates a path object from a selected Part object. [[Path_experimental|{{Emphasis|Experimental}}]].

=== Path Modification === <!--T:69-->

<!--T:70-->
* [[Image:Path_Copy.svg|32px]] [[Path_Copy|Copy the operation in the job]]: Creates a parametric Copy of a selected path object.

<!--T:71-->
* [[Image:Path_Array.svg|32px]] [[Path_Array|Array]]: Creates an array by duplicating a selected path.

<!--T:72-->
* [[Image:Path_SimpleCopy.svg|32px]] [[Path_SimpleCopy|Simple Copy]]: Creates a non-parametric copy of a selected path object.

=== Miscellaneous === <!--T:119-->

<!--T:75-->
* [[Image:Path_Area.svg|32px]] [[Path_Area|Area]]: Creates a feature area from selected objects. [[Path_experimental|{{Emphasis|Experimental}}]].

<!--T:76-->
* [[Image:Path_Area_Workplane.svg|32px]] [[Path_Area_Workplane|Area workplane]]: Creates a feature area workplane. [[Path_experimental|{{Emphasis|Experimental}}]].

=== Obsolete === <!--T:120-->

<!--T:44-->
* [[Image:Path_ToolLibraryEdit.svg|32px]] [[Path_ToolLibraryEdit|Tool Manager]]: Edit the Tool Manager. 'Legacy' tool system. {{VersionMinus|0.18}}

== ToolBit architecture == <!--T:121-->

<!--T:122-->
Manage tools, bits, and the Tool Library. Based on the ToolBit architecture.

<!--T:123-->
* [[Path_Tools|Path Tools]]
* [[Path_ToolShape|Path ToolShape]]
* [[Path_ToolBit|Path ToolBit]]
* [[Path_ToolBit_Library|Path ToolBit Library]]
* [[Path_ToolController|Path ToolController]]

== Other == <!--T:124-->

<!--T:33-->
* [[Path_FAQ|Path FAQ]]: The Path Workbench shares many concepts with other CAM software packages but has its own peculiarities. If something seems wrong this is a good place to start.
* [[Path_SetupSheet|Path SetupSheet]]: You can use a SetupSheet to customize how various property values for operations are calculated.
* [[Path_Postprocessor_Customization|Path Postprocessor Customization]]: If you have a special machine which cannot use one of the available post-processors you may need to write your own post-processor.
* [[Path_fourth_axis|Path fourth axis]]: Experimental four axis milling.

== Preferences == <!--T:83-->

<!--T:84-->
* [[Image:Preferences-path.svg|32px]] [[Path_Preferences|Preferences...]]: Preferences available for the Path Workbench.

== Scripting == <!--T:12-->

<!--T:85-->
See [[Path_scripting|Path scripting]].

== Tutorials == <!--T:125-->

<!--T:126-->
* [[Path_Walkthrough_for_the_Impatient|Path Walkthrough for the Impatient]]: a quick tutorial to get familiar with Path.

== Videos == <!--T:127-->

<!--T:128-->
* [https://www.youtube.com/playlist?list=PLEuOia-QxyFKgzAeTyH62GKqWKVURiWJL FreeCAD Path: Custom paths with Python - Part 1 - 5]: a playlist with a series of 5 videos in English by sliptonic. This series shows how to work with the [[Path_Workbench|Path Workbench]].
* [https://www.youtube.com/playlist?list=PLUrr_kHPp4vhGdLlj6IemtF-OPUlRvSTC FreeCAD CAM Path Workbench]: a playlist with a series of 7 videos in English by CAD CAM Lessons.
* [https://www.youtube.com/playlist?list=PLUrr_kHPp4vh2n6DcIlegK4dEKIFjmISJ FreeCAD CAM CNC] a playlist with a series of 8 videos in English by CAD CAM Lessons.

== Roadmap == <!--T:129-->

<!--T:130-->
* [[Path_Development_Roadmap|Path Development Roadmap]]: Read this if you are a developer and want to contribute to Path.


<!--T:34-->
{{Docnav
|[[PartDesign_Workbench|PartDesign Workbench]]
|[[Points_Workbench|Points Workbench]]
|IconL=Workbench_PartDesign.svg
|IconR=Workbench_Points.svg
}}

</translate>
{{Path_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
[[Category:Workbenches{{#translation:}}]]

Latest revision as of 19:43, 17 March 2024

Redirect to: