587,914 active members*
3,865 visitors online*
Register for free
Login
Results 1 to 11 of 11
  1. #1
    Join Date
    Aug 2011
    Posts
    0

    CNC G code - volkswagen logo

    hey guys, i had an assignment appointed by my lecturer, but i have 0 idea on how to do it wasn't really clear of what the lecturer explain about the coding, and have been trying out many many times but still fail i'm given a 9cm by 9cm workpiece to do it, have to milling the VW on it any of u guys can help me on this? i'm really deperately need help i've attach a 2d model which i drew in my inventor, can help me on the coding part?i'm dead(chair)
    Attached Thumbnails Attached Thumbnails wg.jpg  

  2. #2
    Join Date
    Mar 2003
    Posts
    2932
    What machine/control is this for?
    Do you want to use an engraving tool or small end mill?

  3. #3
    Join Date
    Mar 2003
    Posts
    2932
    Here's a program for a Haas.
    Attached Files Attached Files

  4. #4
    Join Date
    Aug 2011
    Posts
    0
    thanks alot for the info.. i'm suppose to do a G coding, on a small machine with only 3-5 cutting tools for milling only

  5. #5
    Join Date
    Aug 2011
    Posts
    0
    is there any simple coding for this?? because we're stilll new to this and just learn it in lecture class, never learn about engraving yet.. i need a simpler coding for milling anyone can help me? thanks alot guys can u help me, dcoupar?? i really appreciate your help so so muchthanks alot

  6. #6
    Join Date
    Mar 2003
    Posts
    2932
    Quote Originally Posted by eric_spelon View Post
    is there any simple coding for this?? because we're stilll new to this and just learn it in lecture class, never learn about engraving yet.. i need a simpler coding for milling anyone can help me? thanks alot guys can u help me, dcoupar?? i really appreciate your help so so muchthanks alot
    Sorry, that's as simple as it gets. Engraving is just milling.

  7. #7
    Join Date
    Aug 2011
    Posts
    0
    Quote Originally Posted by dcoupar View Post
    Sorry, that's as simple as it gets. Engraving is just milling.
    okie okie thanks alot dcoupar u really helped me alot god bless once again, a million thank you again

  8. #8
    Join Date
    Jul 2007
    Posts
    1602
    I can understand being stuck but you aren't going to learn anything by having others to do your homework for you.

    Are you supposed to use CAM to generate the GCode or write it by hand? This is a pretty simple logo so, assuming that you aren't going to pocket it, you should be able to write this by hand in about 21 lines of GCode not counting Z up and down or rapids (assuming you aren't cutting the enclosing square).

    This is what I would do (assume the centre of your drawing is 0,0).
    1) Describe each of your components in terms of coordinates. For example the enclosing circle can be described as:
    an arc of radius 4.4 cm centered on (0,0)

    The top pie slice can be described as follows:
    a straight line from (0,1) to (-1.2, 3.4)
    an arc from of radius 3.6 cm from (-1.2, 3.4) to (1.2, 3.4) centered on (0,0)
    a straight line from (1.2, 3.4) to (0,1)

    So from there you can start writing gCode. Using the two above examples:

    Draw the circle:
    G0 X-4.4 Y0
    G2 X-4.4 I4.4

    Draw the pie slice:
    G0 X0 Y1
    G1 X-1.2 Y3.4
    G2 X1.2 I1.2 J-3.4
    G1 X0 Y1

    Note that this doesn't include any preparatory moves, Z moves etc... but it should be enough to get you going. Simply repeat the above process for all of the components.

    Good luck!
    bob

  9. #9
    Join Date
    Sep 2010
    Posts
    717
    As this is an assignment you want to understand and learn.. So I'm not posting the G-Code for a copy - paste But I can give you some ideas on how to do it.
    (I'm assuming manual coding)

    - Look at it and split it into (in your mind):
    * Lines
    * Circles
    * Arcs
    - For each LINE; it has 2 points. Start and end. Check the coordinates for each point. Then write code to go from point 1 to point 2.

    - For each CIRCLE; it has a center point and a diameter. You have 2 options; either drill or mill (in this case mill). Write the code knowing center point and diameter.

    - For each ARC; it has a center point, a starting point, an end point, a start angle, an end angle and a diameter. Check/calculate those necessary, and write the code.

    Current build: http://www.cnczone.com/forums/diy-cnc-router-table-machines/264838-new-machine-desing-quot-cnm13-quot.html

  10. #10
    Join Date
    Feb 2006
    Posts
    338
    An expansion on what rowbare and hub offered.

    Your dealing with a 3D XYZ cartesian coordinate system. Your image is showing the logo in the X and Y axis with Z being up and down. X plus is to the right. Y plus is to the top. and Z plus is up out of the image.

    G0 is a rapid move (non cutting)
    G1, G2 and G3 are modal feed moves that require a feedrate at least once on or befre the first one.

    G1 moves in a line from the current position to the X Y Z position given
    G2 is an clockwise arc from the current position to the X Y Z position given with I J K as the center of the arc (I is an X axis value, J a Y and K a Z)
    G3 is the same as G2 but counter clockwise.

    Follow rowbare's suggestion and figure out you points. Arc/line endpoints, and arc centers. Then start putting them into a g-code format.

  11. #11
    Join Date
    Jan 2024
    Posts
    1

    Red face Re: CNC G code - volkswagen logo

    Quote Originally Posted by dcoupar View Post
    Here's a program for a Haas.
    May I know is this code fits exactly for a 9cm*9cm workpiece?

Similar Threads

  1. Need a logo
    By Jorge101 in forum MetalWork Discussion
    Replies: 1
    Last Post: 06-15-2014, 06:35 PM
  2. Looking for a BP logo
    By TarHeelTom in forum Bridgeport / Hardinge Mills
    Replies: 3
    Last Post: 05-14-2014, 08:50 PM
  3. 3D Logo
    By johnno10 in forum Complaints and Praise Discussions
    Replies: 2
    Last Post: 06-16-2010, 12:07 PM
  4. MGi Logo
    By MysticMonkey in forum Fanuc
    Replies: 0
    Last Post: 11-04-2009, 04:11 AM
  5. DWG/DXF Car Logo's
    By Gujustud in forum Community Club House
    Replies: 2
    Last Post: 08-24-2006, 06:34 PM

Tags for this Thread

Posting Permissions

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