Страница 1 из 1

Rounded corners

Добавлено: 08 сен 2014, 23:50
narvf
Why is this happening - only because of diameter size - 1 mm? Or i am doing something wrong? How to avoind this in engraving?
I've used "area" to make pathes.
Изображение

Re: Rounded corners

Добавлено: 09 сен 2014, 00:29
michael-yurov
Your G-code is correct,
but LinuxCNC rounds the path to increase the processing speed.

You can use the G61 at the beginning of the program file, then LinuxCNC will move exactly along the path.

Or you can use the G64 P0.1 - in this case, rounding is not more than 0.1 mm.
for example:

Код: Выделить всё

%
G61 (exact path mode)
G01 X0 Y0 f3000
G01 X100
G64 P10 (rounding with a 10 mm tolerance)
G01 Y100
G64 P30 (rounding with a 30 мм tolerance)
G01 X0
G01 X0 Y0
%
emc lookahead blending.png (11136 просмотров) <a class='original' href='./download/file.php?id=32888&sid=69b5aeb32db87e5e5b21c7586d8384d1&mode=view' target=_blank>Загрузить оригинал (536.7 КБ)</a>
in Russian http://cnc-club.ru/forum/viewtopic.php?f=15&t=113

Re: Rounded corners

Добавлено: 09 сен 2014, 10:47
narvf
Thank you very much - will check when i will be at home :)
Looks like i need to learn Russian language to understand more :)

Re: Rounded corners

Добавлено: 10 сен 2014, 11:24
narvf
This heleped me a lot - now everything is like it should be but i think my machine now is not working good - those are some of first cut and engravings with my cnc.

Re: Rounded corners

Добавлено: 10 сен 2014, 14:48
michael-yurov
This problem is not the result of selecting rounding mode (G61 / G64).

Your machine (motors) lost steps.
Possible cause of of missed steps - is too high acceleration.
Perhaps the reason for the lost steps are electrical interference.

Re: Rounded corners

Добавлено: 11 сен 2014, 12:02
narvf
Now is much better, one screw was no tight :) now it's not perfect but ready for more testing and tunning my cnc -this one was without G61.
Thanks for your help! :)