Arbitrary Beam Section Definition

In addition to using predefined beam cross-sections selected by the TYPE field on the PBARL and PBEAML Bulk Data Entries, defining arbitrary beam cross-sections. This is referred to here as section definitions. To define an Arbitrary Beam Section, HYPRBEAM should be entered into the GROUP field on the PBARL and PBEAML Bulk Data Entries. Also, the ND field should specify the number of dimensions input during the definition of the arbitrary beam section in the DIMi fields of the PBARL and PBEAML Bulk Data Entries.

Section definitions are contained within the Bulk Data section of the input file. A section definition begins with the statement BEGIN and ends with the statement END. Section definitions are referenced from a PBARL or PBEAML definition through the NAME field. The NAME entered on the PBARL or PBEAML definition must match the NAME following the BEGIN statement.

The section is defined by a 2D finite element mesh. The finite element mesh is composed of nodes (specified by GRIDS entries), which are connected by 2-node, 3-node, 4-node, 6-node or 8-node elements (specified by CSEC2, CSEC3, CSEC4, CSEC6, or CSEC8 entries, respectively). These elements reference PSEC entries; these provide a material reference for all elements and thickness information for the 2-noded CSEC2 elements.

Example: Simple Thin-walled Section Definition Named SQUARE

$
BEGIN,HYPRBEAM,SQUARE
$
GRIDS,1,0.0,0.0
GRIDS,2,1.0,0.0
GRIDS,3,1.0,1.0
GRIDS,4,0.0,1.0
$
CSEC2,10,100,1,2
CSEC2,20,100,2,3
CSEC2,30,100,3,4
CSEC2,40,100,4,1
$
PSEC,100,1000,0.1
$
END,HYPRBEAM
$

arb_square
Figure 1.

Example: Solid Section Definition Named CUTOUT

$
BEGIN,HYPRBEAM,CUTOUT
$
GRIDS,1,0.0,0.0
GRIDS,2,0.05,0.0
...
...
GRIDS,895,0.35,1.18
GRIDS,896,0.38,1.19
$
CSEC3,806,100,887,873,872
CSEC3,809,100,868,820,885
CSEC3,812,100,813,803,817
$
CSEC4,1,100,147,148,149,157
CSEC4,2,100,157,149,150,158
...
...
CSEC4,813,100,648,712,895,896
CSEC4,814,100,647,646,896,895
$
PSEC,100,1000
$
END,HYPRBEAM
$

arb_cutout
Figure 2.