hexagon logo

Plane line point vs plane plane plane

Hello everyone,

I am aligning and programming utilizing a J-corner fixture. In my experience i have been told that aligning to plane plane plane would be ideal for several reasons. My colleague believes that a plane line point is better. I do not have as much experience as he does but through all my training i have been told that whenever possible i should align to 3D features. Any insight, experience stories, or bits of wisdom are greatly appreciated.

Thank you!
  • Plane line point works for manual alignment, then if you want, use 3D features for your DCC alignment.
  • All 3 Datums are large enough to pick up a reliable plane, then I align them as planes. If one side is small I may choose to do a line instead, but only if it is not the Primary Datum.
    According to the ASME standard, a Plane-Line-Point is proper. The only issue with this when using a CMM is that ASME follows the rules of measuring on a surface plate, which a CMM would not be able to replicate easily, if at all. Datum A should rest on the 3 highest points on a theoretically perfect plane, and that plane would be your Datum. Datum B would rotate and origin it's edge on the 2 highest points on it's surface against a theoretically perfect and perpendicular plane in relation to A, and the 2 points would essentially be datum. The third datum would then rest it's furthest point against a theoretically perfectly plane perpendicular to A and B, and that point would be Datum C. (See the ASME standard for reference pics.) This is easy with hard gauges, but with the CMM you cannot guarantee that the areas you probe will be the high points. You could scan all of the surfaces, create a tangent plane and a bunch of if/else statements and flow control to try and mimic a hard gage as best as possible, or you can use 3 planes and do what the majority of people do. Is it proper? No. Is it more repeatable? Almost always yes.
  • Thank you! This is the sort of answer i was looking for. Something relateable back to some sort of industry standard. I am decently familiar with the ASME standard (obviously not as well as i should be) but that is where i will start. The man is as bullheaded as they come, im not intrested in whos right or wrong, im only interested in insuring things are as accurate and repeatable as possible. My word doesnt mean much to him but hopefully if i can reference some industry related guidlines among other things we can come to an agreement. I appreciate your input. Thank you again!
  • What said is right, but if you look at 2019R2 or some threads here, you can see that the 2nd datum (plane perp to the first and tangent to the surface, which minimizes the max distance is representated by a line. And the third by a point.
    The most difference with your colleague approach is that there are constructed features ansd not measured ones.

    For a manual pre-alignment, Plane - line - point is often enough, what said.

    And a line can be a primary if it's a cylinder axis...
  • Thank you very much for your input, your help is greatly appreciated. As I said I'm not very experienced I have two years of programming experience being taught by someone who never took any formal classes and I just took the level one class very recently. When you are thinking about programming a part in measuring the features to the gd&t how is it that you decide is the best method to measure something? Do you have a set of standards that you follow that give you a definitive guideline on how everything needs to be measured? Or are you simply using experience and your knowledge of gd&t ?
  • It really depends on what features are Datums and what the Feature Control Frame describes on the print. My reply was strictly about a 3 plane alignment, assuming ABC are planes. There are a lot of different datum structures and I'm sure many people will provide their version of what they believe is best practice. A manual alignment is pretty wide open. I, personally, use a single point alignment and then I pick up my Datums or part features twice in DCC to remove as much vector issues as possible. Our CMMs run 24/7 so it is all about having the operator do as little as possible. You can do a full 3-2-1 alignment in manual and you would only have to pick up the features one more time in DCC. As far as how to construct datums, I recommend checking out ASME Y14.5-1994 or above. It goes into more detail than you could ever want, but they essentially use what I described before, max inscribed holes and ID cylinders, min circumscribed OD circles and bosses, and describe what to do if the Feature Control Frame constrains less than 6 degrees of freedom. I also recommend formal training with Hexagon. They give you books you can bring back to work with you that, combined with the standard, will help both of you create your own best practices.
  • If you have PC-DMIS version 2019 R2 (or later), there's no reason not to do it as correct as possible, it's not much work:

    - measure primary plane
    - construct a "Primary datum plane" from that (this was called "Tangent plane" in earlier versions)
    - measure secondary plane
    - construct a "Secondary datum line" (new in 2019 R2)
    - measure tertiary plane
    - construct a "Tertiary datum Point" (new in 2019 R2)
    - align on the constructe features

    If you have an older version, it's still possible to get close to the same thing, with a bit more code. I can show it here if you need it...
  • I am absolutely intrested in doing it as correct as possible. I have 2018r1 and I dont really have any experience with variable, expressions, etc. As ive only taken level one but if you post the code that would be great and I'll do my best to understand. Im not gonna try to make you explain the next 2 levels through the forum lol
  • Ok, I'll repeat it here - have a nice read :-)
    Assuming ZPLUS is 'up', XPLUS is 'right', YPLUS is 'forward', measuring on the ZPLUS, YMINUS and XMINUS surfaces (because that's how my example was written). If your reality is different, you have to change things (left as exercise to the reader).




    Primary is easy
    - measure a primary plane PLN_Z

    - construct a "Tangent plane", PLN_TZ, math type CONSTRAINED_L2, BFRE (CONSTRAINED_MINMAX if you are in ISO)

    - align level PLN_TZ, Z-origin PLN_TZ




    Secondary is a bit more work
    - measure a secondary plane PLN_Y

    - construct a "Tangent plane", PLN_TY, math type CONSTRAINED_L2, BFRE

    - align rotate YMINUS around ZPLUS to PLN_TY

    - locate the 'highest' measuring point on the YMINUS surface:

    - ASSIGN/TPY = PLN_TY.HIT[1..PLN_TY.NUMHITS].Y

    - ASSIGN/YZ = MININDEX(TPY)

    - align Y-origin to PLN_TY

    - in the Edit Window, change PLN_TY in the alignment command to PLN_TY.HIT[YZ..YZ]

    NOTE: This will not rest the secondary on two or more points, just the highest one, so not exactly according to the standards. See note (1) for a refinement.





    Tertiary is quite similar to secondary...
    As the alignment is now locked in all directions, all we have to do is locate the 'highest' point in the XMINUS direction:

    - measure a tertiary plane PLN_X

    - locate the 'highest' measuring point on the XMINUS surface:

    - ASSIGN/TPX = PLN_X.HIT[1..PLN_X.NUMHITS].X

    - ASSIGN/XZ = MININDEX(TPX)

    - align X-origin to PLN_X

    - in the Edit Window, change PLN_X in the alignment command to PLN_X.HIT[XZ..XZ]





    Full code

    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]PLN_TZ     =FEAT/PLANE,CARTESIAN,OUTLINE,NO[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          THEO/<122.733,48.648,0>,<0,0,1>[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ACTL/<122.733,48.648,0>,<0,0,1>[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          CONSTR/PLANE,TANGENT,PLN_Z,,[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          MATH_TYPE/CONSTRAINED_MINMAX,BFRE[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A2         =ALIGNMENT/START,RECALL:A1,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/LEVEL,ZPLUS,PLN_TZ[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/TRANS,ZAXIS,PLN_TZ[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]PLN_TY     =FEAT/PLANE,CARTESIAN,OUTLINE,NO[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          THEO/<35.126,0,-21.7>,<0,-1,0>[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ACTL/<35.126,0,-21.7>,<0,-1,0>[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          CONSTR/PLANE,TANGENT,PLN_Y,,[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          MATH_TYPE/CONSTRAINED_MINMAX,BFRE[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A3         =ALIGNMENT/START,RECALL:A2,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/ROTATE,YMINUS,TO,PLN_TY,ABOUT,ZPLUS[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/TPY=PLN_TY.HIT[1..PLN_TY.NUMHITS].Y[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/YZ=MININDEX(TPY)[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A4         =ALIGNMENT/START,RECALL:A3,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/TRANS,YAXIS,PLN_TY.HIT[YZ..YZ][/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/TPX=PLN_X.HIT[1..PLN_X.NUMHITS].Y[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/XZ=MININDEX(TPX)[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A5         =ALIGNMENT/START,RECALL:A4,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/TRANS,XAXIS,PLN_X.HIT[XZ..XZ][/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    
    


    ------------------------------------------------------------------------------------------

    Note (1) - a 'slightly better' rotation of the secondary

    Now it's getting hairier...

    First do the secondary tangent plane exactly as above. Then comes the 'trick' part - move the origin temporarily to the found highest point, calculate the angle from this to all the other points and find the angle with the smallest absolute value. The signed value is how much we can rotate the coordinate system, touch [at least] two points of the secondary surface and still have all points on the same side of the calculated 'plane' (we are still 'tangent').




    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]PLN_TY     =FEAT/PLANE,CARTESIAN,TRIANGLE,NO[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          THEO/<108.5,0,-14.8333>,<0,-1,0>[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ACTL/<108.8335,0.1469,-14.8317>,<0.0017223,-0.9999006,0.0139948>[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          CONSTR/PLANE,TANGENT,PLN_Y,,[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          MATH_TYPE/CONSTRAINED_L2,BFRE[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A2         =ALIGNMENT/START,RECALL:A1,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/ROTATE,YMINUS,TO,PLN_TY,ABOUT,ZPLUS[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/VI2=MININDICES(PLN_TY.HIT[1..PLN_TY.NUMHITS].Y)[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/VI1=VI2[1][/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A3         =ALIGNMENT/START,RECALL:A2,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/TRANS,YAXIS,PLN_TY.HIT[VI1..VI1][/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          WORKPLANE/ZPLUS[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/ANG=RAD2DEG(ATAN(PLN_TY.HIT[1..PLN_TY.NUMHITS].Y/(PLN_TY.HIT[1..PLN_TY.NUMHITS].X - PLN_TY.HIT[VI1].X)))[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/AANG=ABS(ANG)[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/IANG=MININDEX(AANG)[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ASSIGN/ANGT=ANG[IANG][/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]A4         =ALIGNMENT/START,RECALL:A3,LIST=YES[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/TRANS,XAXIS,PLN_TY.HIT[VI1..VI1][/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]            ALIGNMENT/ROTATE_OFFSET,ANGT,ABOUT,ZPLUS[/SIZE][/FONT][/COLOR][/LEFT]
     
    [LEFT][COLOR=#000000][FONT=Arial][SIZE=12px]          ALIGNMENT/END[/SIZE][/FONT][/COLOR][/LEFT]
     
    
    This alignment should be compatible with the older ASME standard of 'candidate datum set', but is not the same as the CONSTRAINED_L2 of current ASME, or the CONSTRAINED_MINMAX of current ISO. Probably close, but not the same.