FreeCAD Logo FreeCAD 1.0
  • English Afrikaans Arabic Belarusian Catalan Czech German Greek Spanish Spanish Basque Finnish Filipino French Galician Croatian Hungarian Indonesian Italian Japanese Kabyle Korean Lithuanian Dutch Norwegian Bokmal Polish Portuguese Portuguese Romanian Russian Slovak Slovenian Serbian Swedish Turkish Ukrainian Valencian Vietnamese Chinese Chinese
  • Features
  • Download
  • Blog
  • Documentation
    Documentation index Getting started Users documentation The FreeCAD manual Workbenches documentation Python coding documentation C++ coding documentation Tutorials Frequently asked questions Privacy policy About FreeCAD
  • Contribute
    How to help Sponsor Report a bug Make a pull request Jobs and funding Contribution guidelines Developers handbook Translations
  • Community
    Code of conduct Forum The FPA GitHub GitLab Codeberg Mastodon Matrix IRC IRC via Webchat Gitter Discord Reddit Twitter Facebook LinkedIn Calendar
  • ♥ Donate

Donate

$
SEPA Information
Please set up your SEPA bank transfer to:
Beneficiary: The FreeCAD project association
IBAN: BE04 0019 2896 4531
BIC/SWIFT: GEBABEBBXXX
Bank agency: BNP Paribas Fortis
Address: Rue de la Station 64, 1360 Perwez, Belgium

While Stripe doesn't support monthly donations, you can still become a sponsor! Simply make a one-time donation equivalent to 12 months of support, and you'll gain access to the corresponding sponsoring tier. It's an easy and flexible way to contribute.

If you are not sure or not able to commit to a regular donation, but still want to help the project, you can do a one-time donation, of any amount.

Choose freely the amount you wish to donate one time only.

You can support FreeCAD by sponsoring it as an individual or organization through various platforms. Sponsorship provides a steady income for developers, allowing the FPA to plan ahead and enabling greater investment in FreeCAD. To encourage sponsorship, we offer different tiers, and unless you choose to remain anonymous, your name or company logo will be featured on our website accordingly.

from 1 USD / 1 EUR per month. You will not have your name displayed here, but you will have helped the project a lot anyway. Together, normal sponsors maintain the project on its feet as much as the bigger sponsors.

from 25 USD / 25 EUR per month. Your name or company name is displayed on this page.

from 100 USD / 100 EUR per month. Your name or company name is displayed on this page, with a link to your website, and a one-line description text.

from 200 USD / 200 EUR per month. Your name or company name and logo displayed on this page, with a link to your website and a custom description text. Companies that have helped FreeCAD early on also appear under Gold sponsors.

Instead of donating each month, you might find it more comfortable to make a one-time donation that, when divided by twelve, would give you right to enter a sponsoring tier. Don't hesitate to do so!

Choose freely the amount you wish to donate each month.

Please inform your forum name or twitter handle as a notein your transfer, or reach to us, so we can give you proper credits!

CAM Development Roadmap

Purpose

This page will discuss the strategic objectives for the CAM Workbench. This shouldn\'t be a list of features to implement but broader objectives that will steer the overall direction of CAM development.

Core Objectives

These things make CAM a reliable, performant, and flexible tool. Work in this area is never-ending and always high priority. New Developers should consider helping here before developing new features.

  • Broad test coverage
  • DRY and well documented code base
  • Bug fixes
  • Support for many CNC machines (postprocessors)

Workflow

The goal is a workflow that is efficient and resists human errors. However, the specific workflow can vary depending on the type of machine the user is working with and the type of geometry they are working on.

Job Types

CAM is optimized for 2.5D milling. It needs the concept of job \'types\' to handle other kinds of workflows like Lathe, 4th Axis, and pure 2D machines. Additional job types would help narrow the choices a user must make and eliminate the visual noise and confusion that comes from options that don\'t apply to the desired task.

Selection of Job Type should be something the user can add to a Job Template so that the selection can be automatic.

2D workflow

2D workflows like laser/waterjet/plasma have some unique requirements.

  • Nesting of parts into cut sheets
  • marking for part ID, fold lines, stitching, etc.
  • Efficient import from DXF

Additional 2D strategies

  • Engrave - Engrave by following a set of 2D edges. We support this partly now but the workflow is rough and keeping the 2D elements oriented with the shape is nearly impossible.
  • Hatch Fill - Fill an arbitrary boundary with a hatching pattern

Lathe Workflow

Lathe setup is different from milling. The user is generally viewing the coordinate system with Z axis pointing right and X axis pointing toward the user. Toolpaths are viewed as 2D relative to one side of the work or relative to the end for facing operations.

Lathe operations

  • Center Drill
  • Contour Roughing - Remove material to approximate
  • Contour Finishing - Contour finishing pass
  • Facing
  • Boring
  • Threading External
  • Threading Internal

4/5 axis workflow

Multi-axis is the broad category of strategies that involve working on a model from direction other than the typical top-down orientation in 2.5D strategies.

Multi-axis can be broken into two more narrow categories.

Indexed Multi-axis is where the part is rotated to a specific orientation and then held in place while traditional 2.5D operations are performed. 4th axis rotation means a single additional degree-of-freedom is added to allow the part to rotate, usually around the X axis (A rotation) or Y axis (B rotation).

Continuous 4 and 5 axis rotations mean that the part is rotating while the cutter is engaged in the material. These kinds of operations will need to visualize the toolpath relative to the part. Continuous 4/5 axis operations will require vastly new operations and toolpath generation logic. As a result, continuous 4/5 operations are out of scope at this time.

2.5D (milling) workflow

This is CAM\'s strongest area. But there\'s room to improve.

Additional strategies

  • Threading
  • Boring - Straightline Boring Canned operation (G85/G89)
  • Slitting Saw - Slot cutting with saw tool on the side of the work

3D surface milling

Additional strategies

  • Constant scallop
  • Pencil

Multi-Job Context

Some parts require multiple setups to complete. Each setup is represented by a separate job but no structure links them together other than the top-level document. This is insufficient because the document may contain multiple parts that have completely independent manufacturing steps/jobs/setups.

Commercial CNC users usually produce a document called a \'setup sheet\' which describes to the CNC operator how to set up the machine in order to manufacture the part. This \'setup sheet\' is not at all related to the CAM setupsheet concept. It is a human-readable document meant to communicate assumptions and notes required to correctly execute the gcode. The setup sheet usually contains the following information:

  • tools required
  • lowest z level
  • Part name/number/version
  • customer
  • rough stock or starting condition
  • operations
  • estimated run time
  • critical dimensions and inspection criteria
  • notes about previous runs
  • gcode program name
  • Fixtures and workholding information

CAM Sanity is CAM\'s solution to the \'setup sheet\' CAM Sanity is currently an experimental feature. Moving this to production should be a priority.

Low Level Libraries

CAM makes use of several libraries to generate toolpaths based on part geometry. These include libarea/patharea/clipper, Open CASCADE Technology, and OpenCamLib. Other libraries are available and more will likely be written in the future. We should include these whenever possible and when a native (OCCT) solution is unavailable.

Deepnest or an equivalent nesting/bin packing library would allow us to efficiently arrange parts in a cut-sheet to minimize stock usage.

Cavalier Contours is a modern 2D offsetting library. It is fast and actively developed and should be considered as a replacement ot libarea. It is written in Rust so additional involvement of the development community is needed to support its use.

CAM Modifications

Some of the operations/strategies offer features and tools that are useful but not available for other op/strategies. We should work to make things more consistent.

Pocket/3D Pocket has a boundary extension tool. This should be available to all operations where it makes sense. For example adaptive, surface, waterline,

Representation of remaining material

CAM should have a more robust state for the remaining material. This would be useful for visualization, collision avoidance, and REST milling.

Post Processing & Advanced Gcode

  • modular output for older machines with limited memory.

Many old machines have an extremely limited capacity for gcode. While physically able to produce more complex paths, the very large output from surfacing and adaptive toolpaths make them unusable. It would be useful to post-process the output with an eye on the size of the resulting file. As a file reaches a maximum size, the post-processor could insert a spindle retraction and stop gracefully, then the next file could continue. Output files would be numbered to indicate sequence.

  • Support for Macros, subprograms, variables.

CAM Analysis

  • Tip up Prediction / avoidance

When 2D cutting (laser/waterjet/plasma) of material supported on a grating, small parts cut out of the main stock can \'tip up\' creating a crash hazard for the cutting tool during subsequent moves. Being able to predict these events or avoid them by ordering paths would be desirable. (Further reading)

  • Visualization of remaining material after each operation could be improved

List of shortcomings

The following list is not individual bugs but shows how CAM is inconsistent in its application of concepts.

  • Inconsistent use of cut direction. We should be talking about climb/conventional everywhere and not using language like CW/CCW. (I\'m not sure I agree with this. What if you got a really good deal on left-hand end mills? What if you\'re using a plasma cutter? An EDM machine? A lathe? -KimK)
  • Inconsistent use of stepover. I wish we had used the terminology of DOC/WOC (depth of cut / width of cut) from the beginning but we didn\'t. We use \'stepdown\' and \'stepover\' but inconsistently apply it. Sometimes it is an absolute value and other times a percent of cutter diameter.
  • Inconsistent implementation of the ObjectOp class hierarchy. Some of the ops can\'t be toggled off.
  • Finishing Passes. I think we should add an additional ObjectOp.Feature for FeatureFinishPass. This would give a new tab where a user could configure the final finishing pass with a different tool controller, direction, etc.
  • Inconsistent control of performance vs. accuracy. Many operations have poorly named or inconsistent controls for tolerance. At a minimum these could be grouped into a consistently named property group.
  • Inconsistent use of stock shapes and extensions.
  • No high level path optimization / automatic grouping of disjunct cutting areas.
  • G17, G18, G19 not supported, G17 is active by default (circles and arcs must be in XY plane). This not only prevents milling in G18 and G19 modes (circles and arcs in XZ plane and YZ plane, respectively), but is an obstacle to lathe CAM, which requires G18. (This bullet point is according to the list of supported g-codes here: https://wiki.freecad.org/CAM_scripting -KimK)

{{CAM_Tools_navi

}}


⏵ documentation index > Roadmap > CAM > CAM Development Roadmap

This page is retrieved from https://github.com/FreeCAD/FreeCAD-documentation/blob/main/wiki/CAM_Development_Roadmap.md

Get in touch!
Forum GitHub Mastodon Matrix IRC Gitter.im Discord Reddit Twitter Facebook LinkedIn

© The FreeCAD Team. Homepage image credits (top to bottom): ppemawm, r-frank, epileftric, regis, rider_mortagnais, bejant.

This project is supported by: , KiCad Services Corp. and other sponsors

GitHubImprove this page on GitHub