Pracovní postup v pracovním prostředí CAM v programu FreeCAD vytváří tyto obráběcí pokyny následujícím způsobem:
3D model je základní objekt, který se obvykle vytváří pomocí jednoho nebo více nástrojů Part Design, Part nebo Draft.
V prostředí CAM se vytvoří CAM úloha. Ta obsahuje všechny informace potřebné k vygenerování G-kódu nezbytného pro zpracování úlohy na CNC frézce: je zde zadán výchozí materiál, frézka disponuje určitou sadou nástrojů a řídí se určitými příkazy, které určují rychlost a pohyby (obvykle G-kód).
Nástroje CAM se vybírají podle požadavků jednotlivých operací úlohy.
Frézovací dráhy se vytvářejí například pomocí operací Obrys a Kapsa. Tyto CAM objekty používají interní dialekt G-kódu programu FreeCAD, který je nezávislý na konkrétním CNC stroji.
Exportujte úlohu ve formátu G-kódu, který odpovídá vašemu stroji. Tento krok se nazývá post processing; k dispozici jsou různé postprocesory.
Obecné pojmy
The CAM Workbench generates G-code defining the paths required to mill the Project represented by the 3D model on the target mill in the CAM 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 CAM Job. The Job Workflow lists these in the order they will be executed. The list is populated by adding CAM Operations, Path Dressups, Supplemental Commands, and Path Modifications from the CAM Menu, or GUI buttons.
The CAM 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 CAM Workbench has external dependencies including:
The FreeCAD 3D model units are defined in the Edit → Preference → General → Default unit system. The Postprocessor configuration defines the final G-code units.
The Macro file path, and Geometric tolerances, are defined in the Edit → Preferences → CAM → Job Preferences tab.
Colors are defined in the Edit → Preferences → CAM → GUI tab.
Holding tag parameters are defined in the Edit → Preferences → CAM → Dressups tab.
That the Base 3D model quality supports the CAM workbench requirements, passes Check Geometry.
Limitations
Some current limitations of which you should be aware are:
Most of the CAM 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: 3D Pocket and 3D Surface.
Most of CAM workbench is designed for a simple, standard 3-axis (xyz) CNC mill/router, but lathe tools are supported through the Turning add-on.
Most operations in CAM workbench will return paths based on a standard endmill tool/bit only, regardless of the tool/bit type assigned in a given tool controller. introduced in 26.3: The Engrave, 3D Surface, and other operations now support tool shape awareness.
The operations within the CAM 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
Unit handling in CAM 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.
Schemas:
Changing schema in preferences changes default unit string for the input fields. If you're a CAM 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.
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 G-code (G20), set the correct argument in your job output configuration (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.
CAM Inspection:
If you use the CAM Inspect tool to look at G-code, you will see it in 'mm/s' because it is not being post-processed.
Heights and depths
Many of the commands have various heights and depths:
Visual reference for Depth properties (settings)
Commands
Some commands are experimental and not available by default. To enable them see CAM experimental.
CAM FAQ: The CAM 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.
CAM SetupSheet: You can use a SetupSheet to customize how various property values for operations are calculated.
CAM 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.