Action Rule for Chamfering

This action rule computes the dimensions of the chamfer.

This page discusses:

See Also
Creating an Action Rule
Chamfering Split Plate Edges

Arguments

Name Type Description
Priv_Comp_VL LENGTH Gap between top or bottom faces of the target and adjacent plates. It is used to set the value of Priv_Comp_VL parameter in the chamfer contour.
TargetPlateThickness LENGTH Thickness of the target plate.
AdjacentPlateThickness LENGTH Thickness of the adjacent plate.
Priv_Comp_HL LENGTH Length of the chamfer along the target plate. It is used to set the value of Priv_Comp_HL parameter in the chamfer contour.

The values of the Priv_Comp_VL, TargetPlateThickness, and AdjacentPlateThickness arguments are computed by the system and are used as inputs to the action rule to calculate the value of the Priv_Comp_HL argument. If needed, you can modify the value of Priv_Comp_VL.

Sample

The following sample computes the value of Priv_Comp_HL, if the gap between top or bottom faces of the target and adjacent plates is greater than 3mm:

Priv_Comp_HL = 0m

if (Priv_Comp_VL > 0.003m)
Priv_Comp_HL = 4*Priv_Comp_VL + 0.4*TargetPlateThickness