Tools not visible

Here's the place for discussion related to CAM/CNC and the development of the Path module.
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
oly
Posts: 29
Joined: Sun Feb 19, 2017 12:52 pm

Re: Tools not visible

Post by oly »

okay thanks for the offer file attached, its most obvious when you export the code and load it in gcode viewer or similar then you can see the real start position of the tool.
inner2.fcstd
(86.79 KiB) Downloaded 42 times
chrisb
Veteran
Posts: 54201
Joined: Tue Mar 17, 2015 9:14 am

Re: Tools not visible

Post by chrisb »

Your problem actually is a minor one: The green cross indicates where the tool comes from, not where it is going. On startup FreeCAD assumes that the machine's origin is at (0,0,0).

If you look at the GCode with "Inspect GCode" you see the following (I put some comments behind):

Code: Select all

G00 X-0.390000 Y-2.971000     (horizontal movement only, no vertical movement)
G00 Z14.000000                (go to height 14 mm)
G01 F0.000000 Z13.000000           (go down 1mm) 
G03 F0.000000 I0.390000 J2.971000  (first circle)
Besides the fact that I think it is somewhat ambitious to start milling just at the workpiece level it isn't a problem, if your machine's initial position is above this level.

You can follow the milling path in the "Inspect GCode" window, when you mark the text from the beginning.

There is another thing which bothers me although I think it is independent of Path WB: Your model is extremely CPU intensive, although the model seems to be reasonable. If I omit the polar pattern and put the holes in the first sketch everything is ok.
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
oly
Posts: 29
Joined: Sun Feb 19, 2017 12:52 pm

Re: Tools not visible

Post by oly »

Thanks for the help i will try this when i get a chance.

As for the cpu intensive part i have experienced this, it also bumps up the gcode file from a few hundred kb to a few mb.

when this has happens if i delete the job tools and path and start again the cpu usage is low and file size small, i dont know what causes it but after tweaking it to try and position the tool some where along the way i reproduce it bu i have not manged to pin point what i do yet :/
Post Reply