587,421 active members*
3,115 visitors online*
Register for free
Login
Page 5 of 5 345
Results 81 to 92 of 92
  1. #81
    Join Date
    Aug 2013
    Posts
    980
    Thanks for posting this, Ray.
    I have been doing this very same procedure but have only done one at a time then manually re-established my Z zero which is a pain.
    Anyone who uses Sprutcam - do you know if you can do this same function (G52) to get multiple parts milled/slitting saw?
    I assume you can just have never figured out how to do it.
    Thanks


    Quote Originally Posted by SCzEngrgGroup View Post
    I'll give you one other option you may want to consider. It's not the fastest method, but is very easy, and works extremely well:

    Use round bar stock, mounted vertically in a 3-jaw chuck mounted to the table. This allows you to machine 5 sides, then use a slitting saw to part it off. After doing one, use G52 to shift the Z origin down, and you can cut another one. I use this method often for cutting small parts that would otherwise be difficult to hold, and/or require turning the parts over part-way through machining. I can typically get about a half dozen parts from a single piece of stock, the limiting factor typically being the rigidity of the setup when the stock is at its longest. That can often be overcome by just using conservative cutting parameters.

    Here's a part I used this method with just a few days ago:

    http://www.cnczone.com/forums/attach...0&d=1441401980

    Regards,
    Ray L.

  2. #82
    Join Date
    Dec 2009
    Posts
    458

    Re: Seeking Milling Advice

    Quote Originally Posted by CadRhino View Post
    Thanks for posting this, Ray.
    I have been doing this very same procedure but have only done one at a time then manually re-established my Z zero which is a pain.
    Anyone who uses Sprutcam - do you know if you can do this same function (G52) to get multiple parts milled/slitting saw?
    I assume you can just have never figured out how to do it.
    Thanks
    I considered using this method for other parts I've made. In the end, the thing that kept me from doing so was that with my metal stock held in a vertical position, I would only have been able to machine one or two parts at a time.

    With the geometry of these small parts I've been making, I can't see this method working as well as holding my metal stock horizontally and milling them that way instead but, I can see the benefits of doing it as you've described for parts of certain shapes though. I think that in terms of machining and software issues, I've nearly gotten my small parts dialed in.

    I just need to make a couple more fraction-of-an-inch measurement adjustments and I'll be able to make batches of them with boring regularity; that's if demand for them increases. If not, well, it was a good learning experience.

    MetalShavings

  3. #83
    Join Date
    Apr 2013
    Posts
    1788

    Re: Seeking Milling Advice

    Did you use soft jaws to machine the back side of the piece?

  4. #84
    Join Date
    Feb 2006
    Posts
    7063

    Re: Seeking Milling Advice

    Quote Originally Posted by kstrauss View Post
    Did you use soft jaws to machine the back side of the piece?
    Was that question for me? If so, the answer is no. It was machined entirely from the top. The under-cut and parting were done with a slitting saw, so after parting, indiidual, fully finished parts were left sitting loose on the table.

    Regards,
    Ray L.

  5. #85
    Join Date
    Feb 2006
    Posts
    7063

    Re: Seeking Milling Advice

    Quote Originally Posted by CadRhino View Post
    Thanks for posting this, Ray.
    I have been doing this very same procedure but have only done one at a time then manually re-established my Z zero which is a pain.
    Anyone who uses Sprutcam - do you know if you can do this same function (G52) to get multiple parts milled/slitting saw?
    I assume you can just have never figured out how to do it.
    Thanks
    Worst case, you can hand-edit the g-code to do this. It requires only two lines of code:

    First, when you start a new piece of stock, manually do:

    #100 = 0

    Then, before each iteration of the code, do:

    #100 = [#100 - n.nnn] (n.nnn = the "step down" for the next part)
    G52 Z#100

    Regards,
    Ray L.

  6. #86
    Join Date
    Aug 2013
    Posts
    980
    Gulp, I guess I need to get my feet wet hand coding some time.
    Thanks for the code.


    Quote Originally Posted by SCzEngrgGroup View Post
    Worst case, you can hand-edit the g-code to do this. It requires only two lines of code:

    First, when you start a new piece of stock, manually do:

    #100 = 0

    Then, before each iteration of the code, do:

    #100 = [#100 - n.nnn] (n.nnn = the "step down" for the next part)
    G52 Z#100

    Regards,
    Ray L.

  7. #87
    Join Date
    Apr 2013
    Posts
    1788

    Re: Seeking Milling Advice

    Quote Originally Posted by SCzEngrgGroup View Post
    Was that question for me? If so, the answer is no. It was machined entirely from the top. The under-cut and parting were done with a slitting saw, so after parting, indiidual, fully finished parts were left sitting loose on the table.

    Regards,
    Ray L.
    Yes, it was for you! I just assumed that there were pockets, chamfers or other features on the bottom of the piece which would require milling from the bottom. Thanks for the clarification.

  8. #88
    Join Date
    Nov 2007
    Posts
    2151

    Re: Seeking Milling Advice

    Quote Originally Posted by CadRhino View Post
    do you know if you can do this same function (G52)
    FYI G52 Is not a valid g-code if you are using path pilot

  9. #89
    Join Date
    Aug 2013
    Posts
    980
    Thanks Mountain Dew
    I know you are really proficient in sprutcam.
    How would you go about programming it.
    Thanks

    Quote Originally Posted by mountaindew View Post
    FYI G52 Is not a valid g-code if you are using path pilot

  10. #90
    Join Date
    Apr 2013
    Posts
    1788

    Re: Seeking Milling Advice

    See MEW Issue 213 : March 2014 for some info on using G92 as an alternative to G52.

  11. #91
    Join Date
    Feb 2006
    Posts
    7063

    Re: Seeking Milling Advice

    Quote Originally Posted by mountaindew View Post
    FYI G52 Is not a valid g-code if you are using path pilot
    So you should be able to accomplish the same thing with G92. I believe this would do it:

    G0 Z1
    G92 Z[1.0 + n.nnn] (n.nnn = step-down for each part)

    I've never used G92, so I'd certainly test that before actually using it. It will also require re-setting the origin when you load a new piece of stock, presumably by doing:

    G0 Z1
    G92 Z[1.0 + [n.nnn * p] (n.nnn = step-down for each part, p = # parts cut in last run]

    Regards,
    Ray L.

  12. #92
    Join Date
    Aug 2013
    Posts
    980

    Re: Seeking Milling Advice

    Thanks, I will check it out.

Page 5 of 5 345

Similar Threads

  1. seeking some job advice
    By sublimegreen in forum Canadian Club House
    Replies: 0
    Last Post: 01-23-2014, 09:03 PM
  2. Seeking advice on GE/Fuji AF-300 VFD
    By jimjovan in forum Phase Converters
    Replies: 2
    Last Post: 04-05-2010, 02:21 AM
  3. seeking any and all advice
    By kling8 in forum Welding Brazing Soldering Sealing
    Replies: 2
    Last Post: 02-19-2010, 06:39 PM
  4. SEEKING ADVICE
    By kling8 in forum WoodWorking Topics
    Replies: 3
    Last Post: 11-19-2009, 09:19 AM

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
  •