585,555 active members*
3,067 visitors online*
Register for free
Login
Results 1 to 7 of 7
  1. #1
    Join Date
    Dec 2008
    Posts
    319

    Coord. Rot. using probe

    Can anybody tell me how to do this?

    Pick two points on a plane and then have it rotate the coords?

    Now the fun part.... With a Marposs probe?

    Even if it is a Renishaw....sheding some light will help.

    Tim

  2. #2
    Join Date
    Jun 2007
    Posts
    103
    The way we do it.

    find the two points using the probe. You'll have to store the x & y locations after probing each feature.

    Then write a macro statement to find the angle of error, which needs to be stored also.

    program each tool to run with coordinate rotation (G68), using the stored angle as the rotation angle.

    I'm sure they're are better ways to go about it, but this has been working good for us.

  3. #3
    Join Date
    Dec 2008
    Posts
    319
    Quote Originally Posted by dougtyler View Post
    The way we do it.

    find the two points using the probe. You'll have to store the x & y locations after probing each feature.

    Then write a macro statement to find the angle of error, which needs to be stored also.

    program each tool to run with coordinate rotation (G68), using the stored angle as the rotation angle.

    I'm sure they're are better ways to go about it, but this has been working good for us.
    Doug-

    Do you mind posting your Macro?

    Thanks

    Tim

  4. #4
    Join Date
    Jun 2007
    Posts
    103
    Are you using two holes to rotate to or a side surface?

  5. #5
    Join Date
    Dec 2008
    Posts
    319
    Side surface. I just want to understand the programming principal.

    Tim

  6. #6
    Join Date
    Jun 2007
    Posts
    103
    There is probably a probe macro for measuring a surface to find the angle, but if you want to program it out yourself.

    Let's say your going to measure two points, that are 2.00 apart and you measuring on the Y minus side of the part. The surface is at Y -1.0

    you'll position and measure one point at about X +1.0, Y -1.0
    after the measure macro you'll store the Y position in variable #500

    measure the second point at about X -1.0, Y -1.0
    after the measure macro you'll store the Y position in variable #501

    Now you'll have a line like this to get the angle

    #502 = ATAN[[#500-#501]/2.0]

    Now before each tool starts to cut you'll have to turn on the cord rotation.

    G68 X0 Y0 R#502

    That is, if you want to rotate about X0Y0.

    Does that help?

  7. #7
    Join Date
    Dec 2008
    Posts
    319
    Quote Originally Posted by dougtyler View Post
    There is probably a probe macro for measuring a surface to find the angle, but if you want to program it out yourself.

    Let's say your going to measure two points, that are 2.00 apart and you measuring on the Y minus side of the part. The surface is at Y -1.0

    you'll position and measure one point at about X +1.0, Y -1.0
    after the measure macro you'll store the Y position in variable #500

    measure the second point at about X -1.0, Y -1.0
    after the measure macro you'll store the Y position in variable #501

    Now you'll have a line like this to get the angle

    #502 = ATAN[[#500-#501]/2.0]

    Now before each tool starts to cut you'll have to turn on the cord rotation.

    G68 X0 Y0 R#502

    That is, if you want to rotate about X0Y0.

    Does that help?
    Doug-

    If there is a program for measuring a side (taking two points andgiving an angle, I have not found it).

    I will see what I can do with what you showed me here.

    Thanks

    Tim

Similar Threads

  1. Mach Probe plug in what is "maximum z height for stuck probe" option do?
    By Rich05 in forum Digitizing and Laser Digitizing
    Replies: 7
    Last Post: 04-11-2009, 06:05 PM
  2. 0-MD Machine loses absolute coord with reset
    By ILCORKILL in forum Fanuc
    Replies: 6
    Last Post: 02-25-2009, 06:41 PM
  3. fixturing and multi-sided coord sys
    By jmcglynn in forum SolidCAM for SolidWorks and SolidCAM for Inventor
    Replies: 4
    Last Post: 03-19-2008, 02:25 AM
  4. Super Probe 17 Functions in one probe
    By thegimpster in forum PIC Programing / Design
    Replies: 0
    Last Post: 01-25-2008, 07:46 PM
  5. Coord rotation and multiple coord systems
    By Shizzlemah in forum Fadal
    Replies: 2
    Last Post: 10-30-2007, 09:27 AM

Posting Permissions

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