I need to find the distance from my origin to the tip of the radius. I constructed the auto radius. How do I ask for the location of its south most point? See attached.
location of furthest point on radius?
Collapse
X
-
Create a generic point at XYZ zero and then do a distance dimension from the point to the circle. In the distance utility box use 3D and add radius.Please Join The Effort.
https://www.pcdmisforum.com/forum/pc...o-metric/page2 (Comment #17)
-
This is one way to do it
Code:F1 =GENERIC/POINT,DEPENDENT,CARTESIAN,$ NOM/XYZ,<CIR2.TX,CIR2.TY-CIR2.TR,CIR2.TZ>,$ MEAS/XYZ,<CIR2.X,CIR2.Y-CIR2.R,CIR2.Z>,$ NOM/IJK,<0,0,1>,$ MEAS/IJK,<0,0,1> DIM LOC2= LOCATION OF POINT F1 UNITS=MM ,$ GRAPH=OFF TEXT=OFF MULT=1.00 OUTPUT=BOTH HALF ANGLE=NO AX MEAS NOMINAL DEV +TOL -TOL OUTTOL Y -7.0000 -7.0000 0.0000 0.0500 0.0500 0.0000 ----#---- END OF DIMENSION LOC2
- Likes 1
Comment
-
Code:assign/v1=sqrt(dot(cir2.hit[1..cir2.numhits].xyz,cir2.hit[1..cir2.numhits].xyz)) assign/v2=maxindex(v1) f1 =generic/point,dependent,cartesian,$ nom/xyz,<cir2.hit[v2].x,cir2.hit[v2].y,cir2.hit[v2].z>,$ meas/xyz,<cir2.hit[v2].x,cir2.hit[v2].y,cir2.hit[v2].z>,$ nom/ijk,<cir2.hit[v2].i,cir2.hit[v2].j,cir2.hit[v2].k>,$ meas/ijk,<cir2.hit[v2].i,cir2.hit[v2].j,cir2.hit[v2].k1>
- Likes 1
Comment
-
In addition, the dot product is a product between two vectors.
Here, just using the coordinates of a point (or a set of points) is exactly the same than using the components of a vector between origin and the same point (because the vector PT1PT2 is constructed by PT2.XYZ-PT1.XYZ, so if PT1=<0,0,0> , PT2.XYZ-PT1.XYZ=PT2.XYZ !!!!!)
Comment
Related Topics
Collapse
-
by Ken8282I am trying to create a distance from a line to a outside radius. How do I do this?...
-
Channel: PC-DMIS for CMMs
11-16-2012, 02:49 PM -
-
I am trying to measure the distance between two half circle nubs on a part. I tried taking a point off the center of the nub but if the probe doesn't...
-
Channel: PC-DMIS for CMMs
05-15-2015, 03:11 PM -
-
by Lime192Hi!
Im quite new to CMM and PC DMIS, I have a part that has a measurment from one radius of a cylinder to the center point of a circle. I cant manage...-
Channel: PC-DMIS for CMMs
02-25-2021, 09:15 AM -
-
by Sl33stakLook at this picture. How do I get a distance from the center of Cir3 to the OUTER RADIUS of Cir2? Anyone.....Anyone......Bueller..............Buelle r..............Bueller...
-
Channel: PC-DMIS for CMMs
05-10-2006, 02:55 PM -
-
by PowerJunkieSomeone help me out with something please! I need to report from where my alignment is at right now to both the top and bottom radii in the picture (YAXIS)....
-
Channel: PC-DMIS for CMMs
08-10-2018, 12:10 PM -
Comment