Community
Fusion Support
Report issues, bugs, and or unexpected behaviors you’re seeing. Share Fusion (formerly Fusion 360) issues here and get support from the community as well as the Fusion team.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Problem with post processor

4 REPLIES 4
SOLVED
Reply
Message 1 of 5
Anonymous
553 Views, 4 Replies

Problem with post processor

I am using an old NUM750 cnc controller, and I am having sometimes problems with G02 and G03 commands.

This controller does not understand if both x and y values are not present after G02 or G03.

I am using post processor NUM. How can I force it to write always both X and Y values, even if one does not change from previous command?

 

4 REPLIES 4
Message 2 of 5
Tomek.G
in reply to: Anonymous

Hi @Anonymous,

 

You can simple add an forcing routine at the beginig of the onCircular() function like below

function onCircular(clockwise, cx, cy, cz, x, y, z, feed) {
  xOutput.reset();
  yOutput.reset();
...}

Tomek.G
Sr. Technical Consultant
Message 3 of 5
Anonymous
in reply to: Tomek.G

Great! Thank you very much! I will try it.

Question:

-Can I force also z-values in it , in case of circular interpolation in another plane by just adding 

 

zOutput.reset();

 

Message 4 of 5
Tomek.G
in reply to: Anonymous

Hi @Anonymous,

 

sure you can!
Or you can use function 

forceXYZ();

to force all (XYZ) in one line.


Tomek.G
Sr. Technical Consultant
Message 5 of 5
serge.quiblier
in reply to: Tomek.G

Hello @Anonymous 

 

For your information, the NUM library post had been updated for several potential issues on circular interpolation.

(XYZ should no be modal, as IJK)

We should not generate a negative radii for arc over 180 degrees....

 

Have a nice day

 

Regards.



Serge.Q
Technical Consultant
cam.autodesk.com

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report