svenhb / GRBL-Plotter

A GCode sender (not only for lasers or plotters) for up to two GRBL controller. SVG, DXF, HPGL import. 6 axis DRO.
https://grbl-plotter.de/
GNU General Public License v3.0
647 stars 172 forks source link

4 axis tangential knife #397

Closed abd97khateeb closed 1 month ago

abd97khateeb commented 2 months ago

Hi, When i start the 4D A tangential machine, A axis rotates correctly in linear shapes, but in curved shapes it rotates differently than the simulation. What is the reason for this? video: https://drive.google.com/file/d/1kFYyj0nKejBGwWmeREaVROWiceNVjwZd/view?usp=drive_link Kopy video: https://drive.google.com/file/d/1kFYyj0nKejBGwWmeREaVROWiceNVjwZd/view?usp=drivesdk

svenhb commented 2 months ago

I asked for access to see the video...

abd97khateeb commented 2 months ago

İ accept

svenhb commented 2 months ago

Ok, my first thoughts:

svenhb commented 2 months ago

you didn't define a pen up/down-translation (no code before "(PD)"

perhaps it is a bug, did you enable "Process meta data for SVG graphic? image

abd97khateeb commented 2 months ago

When the code is like this: G02 x10 y10 I0 J10 A90, it executes the xy section first, then A. I think the problem is in the code generation because it gave the same problem in another simulation program.

abd97khateeb commented 2 months ago

Is there another way to write code that contains a circular shape?

svenhb commented 2 months ago

When the code is like this: G02 x10 y10 I0 J10 A90, it executes the xy section first, then A.

If the command is in one line, X,Y and A will move at the same time

Is there another way to write code that contains a circular shape?

E.g. Import circle from SVG (Inkscape) and enable this image

svenhb commented 2 months ago

If I use your settings, my code looks like this - with Z axis: image

When you experimenting with settings, you should disable "code add on" - the "old" code stays on top.... image

abd97khateeb commented 2 months ago

Ok thanks i well try.

abd97khateeb commented 1 month ago

can I convert Z axis to A axis when creating the code because i used Z axis for tangential knife ? Ekran görüntüsü 2024-05-12 033949

svenhb commented 1 month ago

If you use Z axis for tangential, you may use a servo (controlled via PWM) to lift the knife. Then you need to select this options: image image

Also note: https://grbl-plotter.de/index.php?id=tangential-knife-1 Units per turn: if using 'Z' as tangential axis, the feedrates will slow down the rotation speed. Using just e.g. 36 units per turn may increase the performance. - Then you need also to adapt setting $102: https://github.com/gnea/grbl/wiki/Grbl-v1.1-Configuration#100-101-and-102--xyz-stepsmm

https://grbl-plotter.de/index.php?id=tangential-knife&setlang=en Calculation of $102 (instead of step/mm I use step/1°), If the knife is connected directly to the Z stepper motor: One revolution = usually 200 steps - times microstep (m = 2, 4, 8, 16 or 32) $102 = 200 m / 360° = 0.555 m. For “units per revolution” use “360”. This can lead to poor performance due to low acceleration rates. To get around this: $102 = 200 m / 3.6° = 55.5 m. For “units per revolution” use “3.6”.

abd97khateeb commented 1 month ago

ok i will try this options, thanks.

abd97khateeb commented 1 month ago

How can I modify the drawing to combine with the black drawing? ![image](https://github.com/svenhb/GRBL-Plotter/assets/169066818/29e1aff5-add8-4cdd-ba4d-7ef3c672cdeb

svenhb commented 1 month ago

What do you mean with "combine"? For SVG graphic changes I would use Inkscape...

abd97khateeb commented 1 month ago

My gcode is difrent than svg shape.

IMG_20240512_211659

svenhb commented 1 month ago

I assume you enabled some additional options, please check code and GUI: image

abd97khateeb commented 1 month ago

thanke you for helping