SOLID

Defines geometric SOLIDS.

This page discusses:

See Also
In Other Guides
Defining Solids (Geometric Primitives)

ID_NAME

= <id_name_of_solid>

Name of the solid.

SOLID_PROP

= NEUTRAL

Defines a neutral area.

= VARIATION

Defines an area of variation.

= RESTRICTED

Defines a restriction area.

CS

= <name_of_coord_system>

Name of the reference coordinate system.

VAL_1_MIN

= <lowest_value_coord_1>

Defines lowest value for coordinate 1.

VAL_1_MAX

= <highest_value_coord_1>

Defines highest value for coordinate 1.

VAL_2_MIN

= <lowest_value_coord_2>

Defines lowest value for coordinate 2.

VAL_2_MAX

= <highest_value_coord_2>

Defines highest value for coordinate 2.

VAL_3_MIN

= <lowest_value_coord_3>

Defines lowest value for coordinate 3.

VAL_3_MAX

= <highest_value_coord_3>

Defines highest value for coordinate 3.

Remarks

  1. All coordinate axes must have: val_min < val_max.
  2. It is necessary that all operators are entered.

Examples

SOLID
 ID_NAME = UNIT_CUBE
 SOLID_PROP = RESTRICTED
 CS = CS_0
 VAL_1_MIN = 0.0
 VAL_1_MAX = 1.0
 VAL_2_MIN = 0.0
 VAL_2_MAX = 1.0
 VAL_3_MIN = 0.0
 VAL_3_MAX = 1.0
END_