Page 1 of 2 12 LastLast
Results 1 to 12 of 13

Thread: Way to tie Pcool height to tool length?

  1. #1
    Registered
    Join Date
    Aug 2006
    Location
    USA
    Posts
    67
    Downloads
    0
    Uploads
    0

    Way to tie Pcool height to tool length?

    Seems to be a fairly logical thing to do, have the pcool height be referenced to the tool length, especially for those of us with probing.. I find it annoying that I have to manually set pcool for each job, when the machine already knows the tool length.. Am I missing something?


  2. #2
    Registered
    Join Date
    May 2004
    Location
    United States
    Posts
    4519
    Downloads
    0
    Uploads
    0
    It is logical up to the point until additional logic kicks in and you realize that you do not always want the coolant stream to be aimed directly at the tool tip. So, if you do figure out a way to do this, be sure to incorporate a way to turn the function on and off.
    http://www.kirkcon.com/


  3. #3
    Registered
    Join Date
    Oct 2009
    Location
    United States
    Posts
    6
    Downloads
    0
    Uploads
    0
    Be pretty easy to implement if you feel so inclined. Just have to figure out angle delta between each coolant position and then do the geometry. You could make it part of your tool probing routine.

    But as txcncman said there are plenty of cases where the coolant stream should not be pointed at the tip.


  4. #4
    Registered KenFoulks's Avatar
    Join Date
    Aug 2010
    Location
    USA
    Posts
    569
    Downloads
    0
    Uploads
    0

    Haas Factory Support

    If you could incorporate the diameter as well for shell mills, you should be able to accommodate most situations.

    Here are the appropriate macro variables:

    #2001 - #2200 Tool Length
    #2401 - #2600 Tool Diameter
    #3201 - #3400 Actual Tool Diameter
    #3401 - #3600 PCool Position
    Last edited by KenFoulks; 04-30-2012 at 01:37 PM.
    Thanks,
    Ken Foulks


  • #5
    Registered BobWarfield's Avatar
    Join Date
    May 2005
    Location
    USA
    Posts
    2498
    Downloads
    0
    Uploads
    0
    Tool diameter and top of workpiece seem like the two key things that together with tool length would let you at least get a programmable nozzle into the right neighborhood.

    Can the pcool nozzle be controlled via g-code?

    Best,

    BW
    Try G-Wizard Machinist's Calculator for free:
    http://www.cnccookbook.com/CCGWizard.html


  • #6
    Registered KenFoulks's Avatar
    Join Date
    Aug 2010
    Location
    USA
    Posts
    569
    Downloads
    0
    Uploads
    0

    Haas Factory Support

    M34 and M35 will command the pcool position.
    Thanks,
    Ken Foulks


  • #7
    Registered
    Join Date
    May 2004
    Location
    United States
    Posts
    4519
    Downloads
    0
    Uploads
    0
    Thanks Ken.
    http://www.kirkcon.com/


  • #8
    Registered
    Join Date
    Jul 2005
    Location
    usa
    Posts
    176
    Downloads
    0
    Uploads
    0
    Here is a macro that can be added to the Renishaw macros to set P- Cool.

    Credits go to user pit202...

    Code:
    %
    O09880 ( spigot position calcutation ) 
    ( **************************** )
    ( * author : pit202@wp.pl    * ) 
    ( * date   : 2009.05.04      * )
    ( * usage  : G65 P9880 Txx   * ) 
    ( **************************** )
    #9= #[ 2000 + #20 ] 
    #10= 66. ( min. tool length ) 
    #11= 8. ( spig. pos. for min. tool ) 
    #12= 185. ( max. tool length ) 
    #13= 15. ( spig. pos. for max. tool ) 
    #14= [ #13 - #11 ] / [ #12 - #10 ] 
    #15= [ [ - #10 ] * [ #13 - #11 ] - [ #12 - #10 ] * [ - #11 ] ] / [ #12 - #10 ] 
    #16= FIX[ #14 * #9 + #15 ] 
    #[ 3400 + #20 ]= #16 
    M99 
    %

    look at the first lines :

    Code:
    #10= 66. ( min. tool length ) 
    #11= 8. ( spig. pos. for min. tool ) 
    #12= 185. ( max. tool length ) 
    #13= 15. ( spig. pos. for max. tool )
    all you need to do is change those lines , find a shortest tool , messure it and find out which coolant position is the best, the tool length put in #10 value , and spigot position in #11 , do the same with a long tool , and put the values into #12 and #13.

    get a code from VQC to messure the tool , after G65 Pxxxx line put

    Code:
    G00 G90
    G65 P9023 A12. T1
    G65 P9880 T1       < ----- line added manually
    to not writing every time this line I added a line in the O9996 VQC file like this :

    Code:
    N1301 
    (TEMPLATE) 
    (NAME Auto Length Only)
    
    ..................
    
    (GCODE) 
    
    (T#ToolNo M06) 
    (G00 G90) 
    (G65 P9023 A12. T#ToolNo) 
    (G65 P9880 T#ToolNo)             < ---- here is my line 
    (M30) 
    
    (END GCODE)


  • #9
    Registered
    Join Date
    Aug 2006
    Location
    USA
    Posts
    67
    Downloads
    0
    Uploads
    0
    Sweet, thanks for the help guys!


  • #10
    Registered Pondo's Avatar
    Join Date
    Apr 2010
    Location
    USA
    Posts
    188
    Downloads
    0
    Uploads
    0
    The amount of thought and effort that goes into avoiding a little task is amazing sometimes.

    ...not that I don't do the exact same thing constantly.

    I set the coolant as the first part is run. I watch the approach of each tool anyways, so when I let the coolant go on I just enter the coolant offset as it begins its cut.
    Apparently I don't know anything, so please verify my suggestions with my wife.


  • #11
    Registered
    Join Date
    May 2004
    Location
    United States
    Posts
    4519
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by Pondo View Post
    The amount of thought and effort that goes into avoiding a little task is amazing sometimes.

    ...not that I don't do the exact same thing constantly.

    I set the coolant as the first part is run. I watch the approach of each tool anyways, so when I let the coolant go on I just enter the coolant offset as it begins its cut.
    +1
    http://www.kirkcon.com/


  • #12
    Registered Machineit's Avatar
    Join Date
    Mar 2010
    Location
    USA
    Posts
    1062
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by Pondo View Post
    The amount of thought and effort that goes into avoiding a little task is amazing sometimes.

    ...not that I don't do the exact same thing constantly.

    I set the coolant as the first part is run. I watch the approach of each tool anyways, so when I let the coolant go on I just enter the coolant offset as it begins its cut.
    +1 too!

    Also, just because you have a 3 inch long 1/2 inch endmill, there is a difference between a shallow cut on a piece of aluminum and pocketing out a piece of aluminum to 2 1/2 inches deep. So it is not always the same and are your operators going to assume all is good and walk away?

    Anyway, a fun exercise.

    Mike
    Haas VF-2, HA5C, Hardinge CHNC 1, BobCAD V23


  • Page 1 of 2 12 LastLast

    Similar Threads

    1. Need Help!- set up tool length offset and ref tool on mill
      By buklattt in forum CNC Machining Centers
      Replies: 2
      Last Post: 04-01-2012, 12:01 PM
    2. Tool Tip Length
      By eliot15 in forum General Metalwork Discussion
      Replies: 4
      Last Post: 11-13-2010, 08:07 PM
    3. Tool Height Reference Tool
      By Don Clement in forum Tormach Personal CNC Mill
      Replies: 0
      Last Post: 03-14-2009, 04:24 PM
    4. G43.1 - Tool Axis Direction Tool Length Compensatioin
      By EngTech in forum Mazak, Mitsubishi, Mazatrol
      Replies: 8
      Last Post: 12-06-2007, 05:01 AM

    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.