hexagon logo

find intersection of a generic circle and angled plane below the surface

Hi all, I am new to PC-DMIS (2021R1 CAD++) and have been working on trying to configure a measurement for a couple weeks now. I do apologize for my terminology ahead of time. This forum has helped tremendously with the other measurements for this part, however, I have not been able to find a post related to this special characteristic that can apply to what I am looking to accomplish.

I am looking for some advice regarding a special characteristic that I need to find the intersection measurement between a generic circle/cylinder (R=34.5) and -0.49 below the part surface on an angled plane of 10+/-0.5 deg from the center of the measured circle (R= 30.25). The whole part is in 3D space, but the SC i am looking for is shown in 2D (ZX) as a side view. (hopefully the pic is visible).

Ive experimented with different settings/methods for constructing lines, points, planes and generic constructions of cylinders/circles to try and program the needed measurement efficiently and accurately. I may be missing a step when trying to align the generic circle (34.5R @ Z-PLUS) to the smaller measured circle (which R=30.25) located below the angled plane. Another issue i have encountered is trying to create a stationary line from the center of the constructed circle intersecting at the desired measurement location (generic circle and angled plane intersection), in tolerance (0.49 +0.08/-0.02).

Please let me know if additional clarification. I am very grateful for any help and direction from the community Slight smile . Thanks in advance!

Parents
  • Create line on angled plane.
    Create pierce point by intersecting the line and the cylinder you have created with R34.5.
    Dimension the 0.49 to the pierce point.
    Profit.

    Don't use the 0.49 at all. That's the dimension you are looking for. The cylinder sets the rules @ [34.5]. The point where the angled line pierces the cylinder should be 0.49 ± tol from the plane.
  • How would I create the line centered on the angled plane? I created a line which got me the correct value after playing around with the line methods but the line is not on the correct angled plane(line is below the part but at the correct angle) even though the point is at the correct placement. Here is the code i used (also included an angled dimension check for line8):

    GF_CYL34.5R=GENERIC/CYLINDER,DEPENDENT,CARTESIAN,OUT,$
    NOM/XYZ,<0,0,0>,$
    MEAS/XYZ,<-150,-54,-0.57>,$
    NOM/IJK,<0,0,1>,$
    MEAS/IJK,<0,0,1>,$
    RADIUS/0,34.5,$
    DISTANCE/0,0.1

    LIN5 =FEAT/LINE,CARTESIAN,UNBOUNDED,YES
    THEO/<-150,-54,-0.49>,<1,0,0>
    ACTL/<-149.01,-54.002,-6.47>,<0.9847854,-0.0017986,0.1737654>
    CONSTR/LINE,PROJ,ANG_PLN_F,GF_CYL34.5R,50

    LIN8 =FEAT/LINE,CARTESIAN,UNBOUNDED,NO
    THEO/<-100,-54,-0.49>,<-1,0,0>
    ACTL/<-148.911,-54.002,-6.453>,<-0.9847854,0.0017986,-0.1737654>
    CONSTR/LINE,REV,LIN5,50

    PNT_PIERCE_W_LIN8=FEAT/POINT,CARTESIAN,NO
    THEO/<0,0,0>,<0,0,1>
    ACTL/<-115.5,-54.063,-0.557>,<-0.9847854,0.0017986,-0.1737654>
    CONSTR/POINT,PIERCE,LIN8,GF_CYL34.5R

    DIM ANGL10 CHECK FOR LINE8= 3D ANGLE FROM LINE LIN8 TO XAXIS ,$
    GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
    AX NOMINAL MEAS +TOL -TOL DEV OUTTOL
    A 10.000 10.007 0.500 0.500 0.007 0.000 --#-

    DIM DIST_PNT2_PIERCE= 3D DISTANCE FROM PLANE PLN2_FOR_SC TO POINT
    PNT_PIERCE_W_LIN8,SHORTEST=ON,NO_RADIUS UNITS=MM,$
    GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
    AX NOMINAL MEAS +TOL -TOL DEV OUTTOL
    M 0.490 0.542 0.080 0.020 0.052 0.000 --#-
Reply
  • How would I create the line centered on the angled plane? I created a line which got me the correct value after playing around with the line methods but the line is not on the correct angled plane(line is below the part but at the correct angle) even though the point is at the correct placement. Here is the code i used (also included an angled dimension check for line8):

    GF_CYL34.5R=GENERIC/CYLINDER,DEPENDENT,CARTESIAN,OUT,$
    NOM/XYZ,<0,0,0>,$
    MEAS/XYZ,<-150,-54,-0.57>,$
    NOM/IJK,<0,0,1>,$
    MEAS/IJK,<0,0,1>,$
    RADIUS/0,34.5,$
    DISTANCE/0,0.1

    LIN5 =FEAT/LINE,CARTESIAN,UNBOUNDED,YES
    THEO/<-150,-54,-0.49>,<1,0,0>
    ACTL/<-149.01,-54.002,-6.47>,<0.9847854,-0.0017986,0.1737654>
    CONSTR/LINE,PROJ,ANG_PLN_F,GF_CYL34.5R,50

    LIN8 =FEAT/LINE,CARTESIAN,UNBOUNDED,NO
    THEO/<-100,-54,-0.49>,<-1,0,0>
    ACTL/<-148.911,-54.002,-6.453>,<-0.9847854,0.0017986,-0.1737654>
    CONSTR/LINE,REV,LIN5,50

    PNT_PIERCE_W_LIN8=FEAT/POINT,CARTESIAN,NO
    THEO/<0,0,0>,<0,0,1>
    ACTL/<-115.5,-54.063,-0.557>,<-0.9847854,0.0017986,-0.1737654>
    CONSTR/POINT,PIERCE,LIN8,GF_CYL34.5R

    DIM ANGL10 CHECK FOR LINE8= 3D ANGLE FROM LINE LIN8 TO XAXIS ,$
    GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
    AX NOMINAL MEAS +TOL -TOL DEV OUTTOL
    A 10.000 10.007 0.500 0.500 0.007 0.000 --#-

    DIM DIST_PNT2_PIERCE= 3D DISTANCE FROM PLANE PLN2_FOR_SC TO POINT
    PNT_PIERCE_W_LIN8,SHORTEST=ON,NO_RADIUS UNITS=MM,$
    GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
    AX NOMINAL MEAS +TOL -TOL DEV OUTTOL
    M 0.490 0.542 0.080 0.020 0.052 0.000 --#-
Children
No Data