Announcements
Autodesk Community will be read-only between April 26 and April 27 as we complete essential maintenance. We will remove this banner once completed. Thanks for your understanding

Heidenhain 426 post processor bad toolpath

reisaXWBA5
Participant

Heidenhain 426 post processor bad toolpath

reisaXWBA5
Participant
Participant

Hi.

Im trying to machine  in a Heidenhain 426 control with the toolpath generated with Fusion 360 and the simulation at the machine was bad.

Some  of the circular interpolations make no sense.

I attach photos of the Fusion 360 toolpath and the simulation on Heidenhain 426.

¿Why do i get those bad moves?¿The circular interpolations are not correct?

(I had the same issue on a Fidia control and the solution was...... manage IJK in absolute values and circular interpolation only on G17XY plane, linearising other planes and helicals.)

 

¿What can i do?

¿Can i configure the post processor for  write Linear moves only? To make all the curves formed by lines.

 Please, i have a big milling machine waiting for an answer.

Thank you.Fusion 360 generated toolpathFusion 360 generated toolpathHeidenhain 426 simulationHeidenhain 426 simulation

0 Likes
Reply
Accepted solutions (1)
347 Views
2 Replies
Replies (2)

boopathi.sivakumar
Autodesk
Autodesk
Accepted solution

Hi @reisaXWBA5..

To linearize the arc moves and helical moves. open the .cps file in any editor and search for this two line in any editor

allowHelicalMoves = true;
allowedCircularPlanes = undefined; // allow any circular motion

 

 And make it to something will linearize the arc and helical moves

allowHelicalMoves = false;         // False to linearize the helical moves
allowedCircularPlanes = 0;         // disallow any circular motion

 

if you want to have arcs only on XY you can also set the post to do so for that

allowedCircularPlanes = (1 << PLANE_XY);

Let me know how it works for you

 


Boopathi Sivakumar
Senior Technology Consultant

0 Likes

reisaXWBA5
Participant
Participant

Thank you for the rapid answer.

The simulation seems ok.

Im going to start machining in a few moments.

 

0 Likes