section_profile_rectangle_hollow
EXPRESS specification:
ENTITY
section_profile_rectangle_hollow
SUBTYPE
OF
(
section_profile_rectangle
);
wall_thickness
:
positive_length_measure_with_unit
;
internal_fillet_radius
:
OPTIONAL
positive_length_measure_with_unit
;
DERIVE
wall_thickness_value
:
REAL
:= wall_thickness.value_component;
internal_radius_value
:
REAL
:= NVL(internal_fillet_radius.value_component, 0.0);
WHERE
WRS16
:
wall_thickness_value < ((SELF\section_profile_rectangle.overall_depth_value)/2);
WRS17
:
internal_radius_value < ((SELF\section_profile_rectangle.overall_depth_value)/2);
END_ENTITY
;
References (1):
Name
Type
Referred through
Express-G
section_profile_rectangle
Entity
Subtype
No Diagram
Inheritance graph
ENTITY
section_profile_rectangle_hollow;
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);
ENTITY
section_profile_rectangle_hollow
;
wall_thickness
:
positive_length_measure_with_unit
;
internal_fillet_radius
:
OPTIONAL
positive_length_measure_with_unit
;
DERIVE
wall_thickness_value
:
REAL
:= wall_thickness.value_component;
internal_radius_value
:
REAL
:= NVL(internal_fillet_radius.value_component, 0.0);
END_ENTITY
;