. .

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    flute toolpaths.txt 100 mm OD circle, 100mm line and 100mm/10mm arc

    Hope that will help
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	test fluting 2.PNG 
Views:	1006 
Size:	240.0 KB 
ID:	14599   Click image for larger version. 

Name:	test fluting.PNG 
Views:	1008 
Size:	22.0 KB 
ID:	14600  
    project 1 , 2, Dust Shoe ...

  2. #2
    Wal's Avatar
    Lives in Stockport, United Kingdom. Last Activity: 31-03-2024 Has been a member for 9-10 years. Has a total post count of 491. Received thanks 71 times, giving thanks to others 29 times.
    Cheers Boyan. Much appreciated! As Neale said - new z value on each line, which is what I suspected.

    Thanks again!

    Wal.
    Last edited by Wal; 05-02-2015 at 12:21 PM.

  3. #3
    Just out of interest why would you want to arc in and out with the Z?

  4. #4
    Wal's Avatar
    Lives in Stockport, United Kingdom. Last Activity: 31-03-2024 Has been a member for 9-10 years. Has a total post count of 491. Received thanks 71 times, giving thanks to others 29 times.
    Quote Originally Posted by Rufe0 View Post
    Just out of interest why would you want to arc in and out with the Z?
    In my case it was for aesthetics - I was looking at engraving into 3-ply acrylic (black/white/black) with a ball-nose cutter, using this technique would have given me a variation in line thickness along the path. Kinda like this:

    Click image for larger version. 

Name:	spiral.gif 
Views:	473 
Size:	4.0 KB 
ID:	16551

    Wal.

  5. #5
    Ok yeah well if its exactly that shape you want to make (spiral) you should learn some gcode, its very simple to do in gcode. Something like
    Code:
    G0 X10 Y10
    G2 X20 R5 
    G2 X11 R4.5 
    G2 X19 R4 
    G2 X12 R3.5 
    G2 X18 R3 
    G2 X13 R2.5 
    G2 X17 R2 
    G2 X14 R1.5 
    G2 X16 R1
    Then it would be trivial to add your Z depth.

    If you wanted to use code generated by a program its probably going to be 1000s of tiny straight line moves. I could perhaps make a small program for you that will tack on the Z depth but it wouldn't be as good as hand written code.

  6. #6
    Wal's Avatar
    Lives in Stockport, United Kingdom. Last Activity: 31-03-2024 Has been a member for 9-10 years. Has a total post count of 491. Received thanks 71 times, giving thanks to others 29 times.
    Hi Rufe0,

    You're right, I should learn some G-code..! You're also right about my G-code being a series of thousands of smaller moves (as output by Vectric's cut 2D) so adding z-variation to existing code wouldn't be as straightforward as perhaps it ought to be. Unfortunately (heh, or fortunately, rather) it's not just spirals I need to do..!

    Out of interest - how would you go about adding the z-arc on the code you've used above..?

    Wal.

  7. #7
    Assuming 3mm thick with each ply being 1mm thick and the cutter just touching the surface at 0mm
    Code:
    G21
    M6 1
    M3 
    G0 Z20 
    G0 X10 Y10 
    G0 Z0.2 
    G1 Z1 F30 
    G2 X20 R5 F1000 Z-1.2
    G2 X11 R4.5 Z-1.4 
    G2 X19 R4 Z-1.6 
    G2 X12 R3.5 Z-1.8 
    G2 X18 R3 Z-1.8 
    G2 X13 R2.5 Z-1.6 
    G2 X17 R2 Z-1.4 
    G2 X14 R1.5 Z-1.2
    G2 X16 R1 Z1 
    G0 Z20 
    M30
    Last edited by Rufe0; 17-11-2015 at 07:29 PM.

  8. #8
    Quote Originally Posted by Rufe0 View Post
    Just out of interest why would you want to arc in and out with the Z?
    To save cutter wear would be another. It means Not plunging into material but still being able to have Arc lead-in. Something I use often when cutting out of material were tool can't avoid plunging into material and I don't want or can't ramp.

Thread Information

Users Browsing this Thread

There are currently 5 users browsing this thread. (0 members and 5 guests)

Similar Threads

  1. Going down the correct path, Amadeal AMD25LV mill conversion to CNC
    By StevenT in forum Milling Machines, Builds & Conversions
    Replies: 6
    Last Post: 20-07-2014, 08:23 AM
  2. Relationship between Guide rail length and ballscrew length
    By CharlieRam in forum Rails, Guideways & Bearings
    Replies: 6
    Last Post: 11-07-2014, 11:37 PM
  3. Romi EZ-Path S Lathe crt replacement
    By Nemo1966 in forum Monitors
    Replies: 5
    Last Post: 07-10-2013, 04:25 PM
  4. Cambium Code Web Tools – Parametric G-code Generation
    By CambiumMachines in forum Manufacturer News
    Replies: 0
    Last Post: 09-01-2013, 04:56 AM
  5. in calculating the tool path
    By Grumpy Mike in forum Programmers Corner
    Replies: 17
    Last Post: 31-07-2010, 10:18 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •