![]() | |
| Home Page | Mark Forums Read | Today's Posts | My Replies | Classifieds | Reviews | Photo Gallery | Web Links | Share Files | Advertise With Us | Ad List |
| |||||||
| Coding Post your Coding for opensource projects here. |
| This forum is sponsored by: |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
| |||
| |||
Hi, Can anybody help with an algorithm for generating circular interpolation for ARCs? I know the arc center (X,Y) the radius and the start angle and the end angle. I want to output either a G02 or G03 gcode line. TIA, -James Leonard '
__________________ James Leonard - www.DragonCNC.com - www.LeonardCNCSoftware.com - www.CorelDRAWCadCam.com - www.LeonardMusicalInstruments.com |
|
#2
| ||||
| ||||
| Are you just looking for a formula to find the start and endpoints? That's all you'll need to write G2 or G3 code.
__________________ Gerry Mach3 2010 Screenset http://home.comcast.net/~cncwoodworker/2010.html (Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management) |
|
#3
| |||
| |||
I need to calculate X, Y, I and J (relative) for both G02 and G03, do you have formulas to do that based on the arc center, radius and start and end angles? These are values from a DXF file. Thanks! -James Leonard
__________________ James Leonard - www.DragonCNC.com - www.LeonardCNCSoftware.com - www.CorelDRAWCadCam.com - www.LeonardMusicalInstruments.com |
|
#4
| ||||
| ||||
| You just need to find the start and endpoints using trig. I and J are the center point relative to the start point. From the little research I just did, arcs are always CCW in a dxf. It looks like you'd take the sine of the start angle times the radius will give you the Y value of the start point (relative to the center of the arc). for the X, take the sine of 90°- start angle times the radius (again relative to the center of the arc). You probably need to convert the angles from (or to) radians. Your previous line of code needs to get you to the start point. Do the same thing to find the endpoint, which is the X,Y in your G2/G3 line. I wrote an AutoCAD macro that outputs g-code, but it doesn't do arcs. But It will do G2 and G3 from polyline arcs. A polyline gives you the start and end points, and radius (bulge) but not the center. I find the center using a chord, and the rest is easy.
__________________ Gerry Mach3 2010 Screenset http://home.comcast.net/~cncwoodworker/2010.html (Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management) |
|
#5
| |||
| |||
Hi again, Thats good info, but I was hoping for explicit formulas. I really don't see how to calculate I and J, my math skills are not that good. Yes, DXF ARCs are always CCW, but for CNC purposes I may need to flip them to CW. I already know how to do this and how to derive the ARC center, radius and start and end angle from three points on the ARC (begin, end and middle) but I still don't see how to do the G02 / G03 stuff. -James Leonard
__________________ James Leonard - www.DragonCNC.com - www.LeonardCNCSoftware.com - www.CorelDRAWCadCam.com - www.LeonardMusicalInstruments.com |
| Sponsored Links |
|
#6
| ||||
| ||||
| Find the start point of the arc using the sin method like I said. You already know the centerpoint. I = Centerpoint X - Startpoint X J= Centerpoint Y - Startpoint Y
__________________ Gerry Mach3 2010 Screenset http://home.comcast.net/~cncwoodworker/2010.html (Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management) |
|
#7
| |||
| |||
| I will give it a fly tomorrow. -James
__________________ James Leonard - www.DragonCNC.com - www.LeonardCNCSoftware.com - www.CorelDRAWCadCam.com - www.LeonardMusicalInstruments.com |
|
#8
| ||||
| | ||||
| Here is an open source program to convert DXF to G-Code: http://www.dakeng.com/ace.html Here is my program to convert G-Code to DXF: G-Code to DXF
__________________ Wayne Hill www.codemangler.com |
|
#9
| |||
| |||
The ACE converter source code is the most difficult I have ever read. I had a LOT of trouble trying to follow the DXF load and conversion process. Also ACE won't process my DXF files (from the DXFTool for CorelDraw). So, I am trying to come to a deeper understanding of this. -James Leonard
__________________ James Leonard - www.DragonCNC.com - www.LeonardCNCSoftware.com - www.CorelDRAWCadCam.com - www.LeonardMusicalInstruments.com |
|
#11
| |||
| |||
All of these DXF files are pure LINE and ARC entities. This is to improve cutting over the many shortline segments CorelDraw generates for a polyline. Here is a circle, ellipse, star and rectangle. Both LazyCAM and SheetCAM are very happy with these DXF files. -James
__________________ James Leonard - www.DragonCNC.com - www.LeonardCNCSoftware.com - www.CorelDRAWCadCam.com - www.LeonardMusicalInstruments.com |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Algorithm? | CNCgr | OpenSource Software | 16 | 12-07-2009 06:23 PM |
| XY positioning algorithm needed | Tracid | PIC Programing / Design | 4 | 11-28-2006 11:26 AM |
| Need Help With Circular Pocketing Algorithm | lerman | G-Code Programing | 9 | 11-20-2006 05:41 PM |
| Blending algorithm of EMC2 | Hebert | LinuxCNC (formerly EMC2) | 1 | 10-21-2006 11:22 AM |
| Adaptive clearing algorithm video | davidmb | DIY-CNC Router Table Machines | 3 | 05-02-2006 02:13 PM |