Navigation

section_profile_angle

EXPRESS specification:

ENTITY section_profile_angle
SUBTYPE OF ( section_profile_simple);
depth  :  positive_length_measure_with_unit;
width  :  OPTIONAL positive_length_measure_with_unit;
thickness  :  positive_length_measure_with_unit;
internal_fillet_radius  :  OPTIONAL positive_length_measure_with_unit;
edge_fillet_radius  :  OPTIONAL positive_length_measure_with_unit;
leg_slope  :  OPTIONAL ratio_measure_with_unit;
DERIVE
width_value  :  REAL :=  NVL(width.value_component, depth.value_component);
WHERE
WRS5  :  depth.value_component > thickness.value_component;
END_ENTITY;

References (1):

Name Type Referred through Express-G
section_profile_simple Entity
Subtype
No Diagram

Inheritance graph

ENTITY section_profile_angle;
ENTITY structural_frame_item;
item_number  :  INTEGER;
item_name  :  label;
item_description  :  OPTIONAL text;
DERIVE
item_ref  :  BAG OF identifier :=  get_item_ref(SELF);
cost_code  :  BAG OF label :=  get_item_cost_code(SELF);
object_id  :  globally_unique_id :=  get_instance_id(SELF);
ENTITY section_profile;
section_classification  :  OPTIONAL label;
cardinal_point  :  cardinal_point_ref;
mirrored  :  LOGICAL;
DERIVE
section_ref  :  BAG OF identifier :=  SELF\structural_frame_item.item_ref;
ENTITY section_profile_simple;
ENTITY section_profile_angle;
depth  :  positive_length_measure_with_unit;
width  :  OPTIONAL positive_length_measure_with_unit;
thickness  :  positive_length_measure_with_unit;
internal_fillet_radius  :  OPTIONAL positive_length_measure_with_unit;
edge_fillet_radius  :  OPTIONAL positive_length_measure_with_unit;
leg_slope  :  OPTIONAL ratio_measure_with_unit;
DERIVE
width_value  :  REAL :=  NVL(width.value_component, depth.value_component);
END_ENTITY;