Calculation
624
FH/FZ5 Processing Item Function Reference Manual
ANGL (first linear coefficient A,
first linear coefficient B,
first linear coefficient C,
second linear coefficient A,
second linear coefficient B,
second linear coefficient C)
Calculate the angle of Line 1 and Line 2 in the
p
art that does not go across the Y
axis. The same angle can be obtained from both Line 1 and Line 2.
(Example) Use line data at scan edge position 1 and scan edge position 2 to
o
b
tain the angle formed by the two lines
ANGL (U1.A, U1.B, U1.C, U2.A, U2.B,U2.C)
DIST (X-coordinate of first point,
Y-
coordinate of first point,
X-coordinate of second point,
Y-coordinate of second point)
Calculates the distance between 2 points (cen
te
r of gravity/center of model).
DIST (Linear coefficient A, linear
coefficie
nt B, linear coefficient C, X
coordinate, Y coordinate)
A line and a point are specified to obtain the vertical distance between the line
a
nd poi
nt.
(Example) Obtain the distance between the linear regression at scan edge
p
o
sition 1 and edge position 2
DIST (U1.A, U1.B, U1.C, U2.X, U2.Y)
X (first linear coefficient A,
first linear coefficient B,
first linear coefficient C,
second linear coefficient A,
second linear coefficient B,
second linear coefficient C)
Calculates intersection (X coordinate) of data for 2 lines
(Example) Obtain the X coordinate of the i
n
tersection between the lines at scan
edge position 1 and scan edge position 2
X (U1.A,U1.B,U1.C,U2.A,U2.B,U2.C)
Y (first linear coefficient A,
first linear coefficient B,
first linear coefficient C,
second linear coefficient A,
second linear coefficient B,
second linear coefficient C)
Calculates intersection (Y coordinate) of data for 2 lines
(Example) Obtain the Y coordinate of the i
n
tersection between the lines at scan
edge position 1 and scan edge position 2
Y (U1.A,U1.B,U1.C,U2.A,U2.B,U2.C)
Function Description
Line 1
Line2
Intersection
X axis
Y axis
(Example) When calculating the distance between
the gravity of Area 0 and that of Area 1.
DIST (R0.X,R0.Y,R1.X,R1.Y)
The following calculation will be performed internally.
(R1.X-R0.X)
2
+ (R1.Y-R0.Y)
2