COMPONENT_REBAR

Mesh commands

*COMPONENT_REBAR
"Optional title"
coid, pid, N${}_x$, N${}_y$, N${}_z$, csysid
$x_1$, $y_1$, $z_1$, $x_2$, $y_2$, $z_2$, $h$

Parameter definition

Variable
Description
coid
Component ID
pid
Part ID
N${}_x$
Number of rebar grids in local x-direction
N${}_y$
Number of rebar grids in local y-direction
N${}_z$
Number of rebar grids in local z-direction
csysid
Local coordinate system ID
default: global coordinates are used
$x_1$, $y_1$, $z_1$
Rebar cage corner coordinate 1
quantity: Length
$x_2$, $y_2$, $z_2$
Rebar cage corner coordinate 2
quantity: Length
$h$
Rebar element length (target)
quantity: Length

Description

This command defines a rectangular grid with rebars. Mechanical properties are defined with MAT_REBAR and the initial rebar diameter is defined in PART. The rebar element length will not necessarily be exactly equal to the specified value $h$. $h$ is to be seen as a target value. The actual element length is adapted to the rebar grid size.

Example

Generating a 3D grid
*UNIT_SYSTEM SI *COMPONENT_REBAR "3D grid" 1, 1, 6, 4, 2 0, 0, 0, 3, 2, 1, 0.1 *MAT_REBAR 1, 7800, 210e9 1 *FUNCTION 1 500e6 + 500e6*epsp^0.5 *PART 1, 1, 0, 0.02 *END
Generating multiple 2D grids
*UNIT_SYSTEM SI *COMPONENT_REBAR "Multiple 2D grids" 1, 1, 6, -4, 2 0, 0, 0, 3, 2, 1, 0.1 *MAT_REBAR 1, 7800, 210e9 1 *FUNCTION 1 500e6 + 500e6*epsp^0.5 *PART 1, 1, 0, 0.02 *END
Generating single 2D grid
*UNIT_SYSTEM SI *COMPONENT_REBAR "Single 2D grid" 1, 1, 6, 0, 2 0, 0, 0, 3, 0, 1, 0.1 *MAT_REBAR 1, 7800, 210e9 1 *FUNCTION 1 500e6 + 500e6*epsp^0.5 *PART 1, 1, 0, 0.02 *END
Generating parallel rebars in 3D
*UNIT_SYSTEM SI *COMPONENT_REBAR "Parallel rebars in 3D" 1, 1, 6, -4, -2 0, 0, 0, 3, 2, 1, 0.1 *MAT_REBAR 1, 7800, 210e9 1 *FUNCTION 1 500e6 + 500e6*epsp^0.5 *PART 1, 1, 0, 0.02 *END
Generating parallel rebars in 2D
*UNIT_SYSTEM SI *COMPONENT_REBAR "Parallel rebars in 2D" 1, 1, 6, -4, 0 0, 0, 0, 3, 2, 0, 0.1 *MAT_REBAR 1, 7800, 210e9 1 *FUNCTION 1 500e6 + 500e6*epsp^0.5 *PART 1, 1, 0, 0.02 *END
Generating single rebar
*UNIT_SYSTEM SI *COMPONENT_REBAR "Single rebar" 1, 1, 1, 0, 0 0, 0, 0, 3, 0, 0, 0.1 *MAT_REBAR 1, 7800, 210e9 1 *FUNCTION 1 500e6 + 500e6*epsp^0.5 *PART 1, 1, 0, 0.02 *END