Navigation

section_profile_rectangle

EXPRESS specification:

ENTITY section_profile_rectangle
SUBTYPE OF ( section_profile_simple);
overall_depth  :  positive_length_measure_with_unit;
overall_width  :  OPTIONAL positive_length_measure_with_unit;
external_fillet_radius  :  OPTIONAL positive_length_measure_with_unit;
DERIVE
overall_depth_value  :  REAL :=  overall_depth.value_component;
overall_width_value  :  REAL :=  NVL(overall_width.value_component, 
overall_depth.value_component);
external_fillet_value  :  REAL :=  NVL(external_fillet_radius.value_component, 0.0);
WHERE
WRS15  :  external_fillet_value < (overall_depth_value/2);
END_ENTITY;

References (2):

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

Inheritance graph

ENTITY section_profile_rectangle;
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_rectangle;
overall_depth  :  positive_length_measure_with_unit;
overall_width  :  OPTIONAL positive_length_measure_with_unit;
external_fillet_radius  :  OPTIONAL positive_length_measure_with_unit;
DERIVE
overall_depth_value  :  REAL :=  overall_depth.value_component;
overall_width_value  :  REAL :=  NVL(overall_width.value_component, 
overall_depth.value_component);
external_fillet_value  :  REAL :=  NVL(external_fillet_radius.value_component, 0.0);
END_ENTITY;