Hello Guest it is April 17, 2024, 10:56:17 PM

Author Topic: Delay between lines of code  (Read 5697 times)

0 Members and 1 Guest are viewing this topic.

Re: Delay between lines of code
« Reply #10 on: October 09, 2013, 11:33:46 AM »
Rotational soft limits is the only one that is checked.

Offline rcaffin

*
  •  1,054 1,054
    • View Profile
Re: Delay between lines of code
« Reply #11 on: October 09, 2013, 10:21:50 PM »
Quote
I continually get a slight delay between each line of code which causes major problems with our laser application.  Any help is appreciated.
%
g90 g64
g01 a-25. z0. f850.
g01 a-50. z.1 f850.
g01 a-75. z.15 f850.
g01 a-100. z.2 f850.
m30
%
I do not KNOW, but I suspect that the f850 may be causing the delay. Change your program to the following and see whether it gets any better. let us know.
%
g90 g64
f850
g01 a-25. z0.
g01 a-50. z.1
g01 a-75. z.15
g01 a-100. z.2
m30
%

Cheers
Roger
Re: Delay between lines of code
« Reply #12 on: October 11, 2013, 10:18:09 AM »
I tried moving the feed rate to a different line ahead of the code, and I increased the acceleration as high as I could get it before the steppers would skip steps.  This reduced the hesitation, but not completely.  To me, if the motion is to be linear, it shouldn't matter if there are a number of lines code to get from point A to point B, with look ahead, the motion should be absolutely smooth.  I can't figure out why there are these little hesitations.

Offline Fastest1

*
  •  920 920
  • Houston, TX
    • View Profile
Re: Delay between lines of code
« Reply #13 on: October 11, 2013, 11:35:46 AM »
How far is your look ahead?
I want to die in my sleep like my grandfather, not like the passengers in the car! :-)

Offline Fastest1

*
  •  920 920
  • Houston, TX
    • View Profile
Re: Delay between lines of code
« Reply #14 on: October 11, 2013, 11:36:46 AM »
Btw what computer? specs? OS? Have you ever had success with this combo of computer and machine? Have you followed the Mach optimization steps? Just checking everything.
« Last Edit: October 11, 2013, 11:38:32 AM by Fastest1 »
I want to die in my sleep like my grandfather, not like the passengers in the car! :-)

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Delay between lines of code
« Reply #15 on: October 11, 2013, 11:37:11 AM »
OK 1st question do you have your A axis setup as linear or angular(polar)?


Go to "Config" then "toolpath". Top right side there is a section that says rotations, what is checked.

You should have checked

Use radius for feedrate

A- rotations enabled

Axis of rotation.

NEXT go to the setting page, top right there is a section that allows you to set the radius of the part you are working with in A axis. SET the radius value.

NOW try your code again.

IF the A is not linked to a linear axis it may not have a look ahead function NOR will the feedrates be synced as a unit. Also the radius setting allow mach3 to define the blended feedrate correctly.

ALSO after you have changed everything Shut down mach3 and restart.

Just a thought, (;-) TP
« Last Edit: October 11, 2013, 11:39:28 AM by BR549 »