Results 1 to 10 of 10

Thread: CNC G code - volkswagen logo

  1. #1
    Registered
    Join Date
    Aug 2011
    Location
    malaysia
    Posts
    4
    Downloads
    0
    Uploads
    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
    Attached Thumbnails Attached Thumbnails CNC G code - volkswagen logo-wg.jpg  


  2. #2
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2,501
    Downloads
    0
    Uploads
    0
    What machine/control is this for?
    Do you want to use an engraving tool or small end mill?


  3. #3
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2,501
    Downloads
    0
    Uploads
    0
    Here's a program for a Haas.
    Attached Files Attached Files


  4. #4
    Registered
    Join Date
    Aug 2011
    Location
    malaysia
    Posts
    4
    Downloads
    0
    Uploads
    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
    Registered
    Join Date
    Aug 2011
    Location
    malaysia
    Posts
    4
    Downloads
    0
    Uploads
    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
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2,501
    Downloads
    0
    Uploads
    0
    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
    Registered
    Join Date
    Aug 2011
    Location
    malaysia
    Posts
    4
    Downloads
    0
    Uploads
    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
    Registered
    Join Date
    Jul 2007
    Location
    Canada
    Posts
    1,271
    Downloads
    0
    Uploads
    0
    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
    hub
    hub is offline
    Registered
    Join Date
    Sep 2010
    Location
    Finland
    Posts
    435
    Downloads
    0
    Uploads
    0
    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.

    http://www.cnczone.com/forums/cnc_wood_router_project_log/125895-my_diy_cnc_cnc2011_%3B.html


  • #10
    Registered
    Join Date
    Feb 2006
    Location
    United States
    Posts
    293
    Downloads
    0
    Uploads
    0
    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.


  • Similar Threads

    1. MGi Logo
      By MysticMonkey in forum Fanuc
      Replies: 0
      Last Post: 11-03-2009, 10:11 PM
    2. Need A Quote- Logo RFQ
      By Erik W in forum Employment Opportunity
      Replies: 3
      Last Post: 08-05-2008, 11:16 PM
    3. Help doing logo
      By procnc in forum Vectric
      Replies: 2
      Last Post: 06-03-2008, 09:38 PM
    4. RFQ Logo
      By buckkillr8 in forum Employment Opportunity
      Replies: 17
      Last Post: 04-17-2007, 12:01 AM
    5. Need help with Logo
      By CRFultz in forum SheetCam
      Replies: 13
      Last Post: 05-01-2005, 07:23 PM

    Posting Permissions


     


    About CNCzone.com

      We are the largest and most active discussion forum from DIY CNC Machines to the Cad/Cam software to run them. The site is 100% free to join and use, so join today!

    Follow us on

    Facebook Dribbble RSS Feed


    Search Engine Friendly URLs by vBSEO ©2011, Crawlability, Inc.