Hi All,
As a relatively new user, and with a physics rather than an engineering background, I have been trying to understand the angles reported by PCDMIS and have become rather confused.
To keep things simple, I started off by creating a generic line in the XY plane at +5 degrees to the +ve x axis and then report its angle to the x axis and to another generic line also along the +ve x axis. My confusion comes when I have 4 measurements of essentially the same thing, but 3 different answers of -5, +85 and +5 (see the code below). I understand that -5 and +85 are essentially the same number (give or take 90 degrees) although I cannot see why what looks like the same measurement gives two different answers. What really troubles me is the +5 degrees where I expected -5 degrees! Surely PCDMIS recognises the sign of the angle?
Has anyone out there experienced similar problems and have any solutions to offer?
I am using PCDMIS 3.7 MR2
Dave
*********Sample code********
LINE_X =GENERIC/LINE,DEPENDENT,RECT,$
NOM/XYZ,0,0,0,$
MEAS/XYZ,0,0,0,$
NOM/IJK,1,0,0,$
MEAS/IJK,1,0,0,$
DISTANCE/11,12
COMMENT/DOC,NO,
,Generic line in xy plane at ~+5 degrees to x axis
LINE_P5F =GENERIC/LINE,DEPENDENT,RECT,$
NOM/XYZ,0,0,0,$
MEAS/XYZ,0,0,0,$
NOM/IJK,0.995,0.1,0,$
MEAS/IJK,0.996,0.088,0,$
DISTANCE/12,10
COMMENT/REPT,********************************************* *********************
,Workplane ZPLUS...
,************************************************* *****************
DIM ANGL13= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO XAXIS ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A -5.739 0.010 0.010 -5.059 0.680 0.670 -------->
DIM ANGL19= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO XAXIS ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A 84.261 0.010 0.010 84.941 0.680 0.670 -------->
DIM ANGL5= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO LINE LINE_X ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A 5.739 0.010 0.010 5.059 -0.680 0.670 <--------
DIM ANGL14= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO LINE LINE_X ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A -5.739 0.010 0.010 -5.059 0.680 0.670 -------->
As a relatively new user, and with a physics rather than an engineering background, I have been trying to understand the angles reported by PCDMIS and have become rather confused.
To keep things simple, I started off by creating a generic line in the XY plane at +5 degrees to the +ve x axis and then report its angle to the x axis and to another generic line also along the +ve x axis. My confusion comes when I have 4 measurements of essentially the same thing, but 3 different answers of -5, +85 and +5 (see the code below). I understand that -5 and +85 are essentially the same number (give or take 90 degrees) although I cannot see why what looks like the same measurement gives two different answers. What really troubles me is the +5 degrees where I expected -5 degrees! Surely PCDMIS recognises the sign of the angle?
Has anyone out there experienced similar problems and have any solutions to offer?
I am using PCDMIS 3.7 MR2
Dave
*********Sample code********
LINE_X =GENERIC/LINE,DEPENDENT,RECT,$
NOM/XYZ,0,0,0,$
MEAS/XYZ,0,0,0,$
NOM/IJK,1,0,0,$
MEAS/IJK,1,0,0,$
DISTANCE/11,12
COMMENT/DOC,NO,
,Generic line in xy plane at ~+5 degrees to x axis
LINE_P5F =GENERIC/LINE,DEPENDENT,RECT,$
NOM/XYZ,0,0,0,$
MEAS/XYZ,0,0,0,$
NOM/IJK,0.995,0.1,0,$
MEAS/IJK,0.996,0.088,0,$
DISTANCE/12,10
COMMENT/REPT,********************************************* *********************
,Workplane ZPLUS...
,************************************************* *****************
DIM ANGL13= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO XAXIS ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A -5.739 0.010 0.010 -5.059 0.680 0.670 -------->
DIM ANGL19= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO XAXIS ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A 84.261 0.010 0.010 84.941 0.680 0.670 -------->
DIM ANGL5= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO LINE LINE_X ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A 5.739 0.010 0.010 5.059 -0.680 0.670 <--------
DIM ANGL14= 2D ANGLE (TRUE) FROM LINE LINE_P5F TO LINE LINE_X ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
A -5.739 0.010 0.010 -5.059 0.680 0.670 -------->
Comment