fascinating feed rate override error
- crisiacuf
- Offline
- Junior Member
Less
More
- Posts: 24
- Thank you received: 0
21 Apr 2017 10:26 #91762
by crisiacuf
fascinating feed rate override error was created by crisiacuf
Hello there,
I just encountered a fascinating bug or user error, can't say yet.
I used Gmoccapy 1.5.5.3 with LinuxCNC 2.7.4 and the error remains in Gmoccapy 2.3.0 with LinuxCNC 2.80-pre1-2992.
I have an automatic tool length setup.
In this gcode demo test40X40.ngc there are 4 tools.
With the first tool, third and forth in this demo, my cnc follows the feed rates in the program.
With the second tool(T6) my machine disregards the feed rates in te program using my rapids speed(3000).
I also switched the second tool T6 with T3, to make sure it's not the tool and the problem is consistent.
I don't know where to start in discovering the problem, any idea?
I just encountered a fascinating bug or user error, can't say yet.
I used Gmoccapy 1.5.5.3 with LinuxCNC 2.7.4 and the error remains in Gmoccapy 2.3.0 with LinuxCNC 2.80-pre1-2992.
I have an automatic tool length setup.
In this gcode demo test40X40.ngc there are 4 tools.
With the first tool, third and forth in this demo, my cnc follows the feed rates in the program.
With the second tool(T6) my machine disregards the feed rates in te program using my rapids speed(3000).
I also switched the second tool T6 with T3, to make sure it's not the tool and the problem is consistent.
I don't know where to start in discovering the problem, any idea?
Please Log in or Create an account to join the conversation.
- newbynobi
- Offline
- Moderator
Less
More
- Posts: 2075
- Thank you received: 406
21 Apr 2017 21:33 - 21 Apr 2017 21:33 #91811
by newbynobi
Replied by newbynobi on topic fascinating feed rate override error
Wrong G Code,
Add in line N260 the missing G1 and it will work
Norbert
Add in line N260 the missing G1 and it will work
Norbert
Last edit: 21 Apr 2017 21:33 by newbynobi.
Please Log in or Create an account to join the conversation.
- cmorley
- Offline
- Moderator
Less
More
- Posts: 7772
- Thank you received: 2059
21 Apr 2017 22:44 - 21 Apr 2017 22:44 #91817
by cmorley
Replied by cmorley on topic fascinating feed rate override error
interesting ... looking at the program I would have thought you would be complaining about the program using feed rate after the tool change rather then rapid rate.
Th first G0 I see is at n440 everything before that should be at feed rate.
Is that what you intended - first rapid at n0440?
Chris M
Th first G0 I see is at n440 everything before that should be at feed rate.
Is that what you intended - first rapid at n0440?
Chris M
Last edit: 21 Apr 2017 22:44 by cmorley.
Please Log in or Create an account to join the conversation.
- dm17ry
- Offline
- Elite Member
Less
More
- Posts: 180
- Thank you received: 66
22 Apr 2017 12:29 #91839
by dm17ry
Replied by dm17ry on topic fascinating feed rate override error
it looks like (remapped?) M06 changes current motion mode to G0. is this ok or a bug?
Please Log in or Create an account to join the conversation.
- cmorley
- Offline
- Moderator
Less
More
- Posts: 7772
- Thank you received: 2059
22 Apr 2017 17:18 #91856
by cmorley
Replied by cmorley on topic fascinating feed rate override error
Ya I wondered about whether you were using a remap.
In my opinion it's a bug - tool changes shouldn't change modes.
Chris M
In my opinion it's a bug - tool changes shouldn't change modes.
Chris M
Please Log in or Create an account to join the conversation.
- dm17ry
- Offline
- Elite Member
Less
More
- Posts: 180
- Thank you received: 66
22 Apr 2017 17:37 #91857
by dm17ry
Replied by dm17ry on topic fascinating feed rate override error
i believe it's a vanilla gmocappy config, which has:
REMAP=M6 modalgroup=6 prolog=change_prolog ngc=change epilog=change_epilog
and change.ngc seems to be using G0:
github.com/LinuxCNC/linuxcnc/blob/af15a4...py/macros/change.ngc
REMAP=M6 modalgroup=6 prolog=change_prolog ngc=change epilog=change_epilog
and change.ngc seems to be using G0:
github.com/LinuxCNC/linuxcnc/blob/af15a4...py/macros/change.ngc
Please Log in or Create an account to join the conversation.
- newbynobi
- Offline
- Moderator
Less
More
- Posts: 2075
- Thank you received: 406
22 Apr 2017 20:29 #91860
by newbynobi
Replied by newbynobi on topic fascinating feed rate override error
It is not a bug!
If yo use code for remap, you should know what it is doing.
You can change the remap code to fit your needs.
IMHO it is bad style not to set speed, feed and G43 and cooling after a tool change.
Norbert
If yo use code for remap, you should know what it is doing.
You can change the remap code to fit your needs.
IMHO it is bad style not to set speed, feed and G43 and cooling after a tool change.
Norbert
Please Log in or Create an account to join the conversation.
- cmorley
- Offline
- Moderator
Less
More
- Posts: 7772
- Thank you received: 2059
23 Apr 2017 05:38 #91871
by cmorley
Replied by cmorley on topic fascinating feed rate override error
bad form or not .. changing feed modes after a tool change is unexpected behavior.
I wonder if it is easy to check the current g codes in the remap and then restore them?
Chris M
I wonder if it is easy to check the current g codes in the remap and then restore them?
Chris M
Please Log in or Create an account to join the conversation.
- newbynobi
- Offline
- Moderator
Less
More
- Posts: 2075
- Thank you received: 406
24 Apr 2017 07:14 #91936
by newbynobi
Replied by newbynobi on topic fascinating feed rate override error
Hallo Cris,
you are right, but the user uses a remap part, within that one G0 is used, so the behavior is correct.
He should change the remap code to fit his needs.
It is definitely not a gmoccapy problem.
Norbert
you are right, but the user uses a remap part, within that one G0 is used, so the behavior is correct.
He should change the remap code to fit his needs.
It is definitely not a gmoccapy problem.
Norbert
Please Log in or Create an account to join the conversation.
- crisiacuf
- Offline
- Junior Member
Less
More
- Posts: 24
- Thank you received: 0
25 Apr 2017 09:53 - 25 Apr 2017 10:26 #92041
by crisiacuf
Replied by crisiacuf on topic fascinating feed rate override error
Thank you guys.
As you noticed the problem is in the G code and the post-processor seems to be one problem.
Thank you for your support
As you noticed the problem is in the G code and the post-processor seems to be one problem.
Thank you for your support
Last edit: 25 Apr 2017 10:26 by crisiacuf.
Please Log in or Create an account to join the conversation.
Moderators: newbynobi, HansU
Time to create page: 0.277 seconds