Card 5c - Third Level Element Generation
This optional card generates a 3D matrix of elements.
Parameters: KODE
, NC
, NDC
,
(NDVC(I), I = 1, MM
)
A Card 5c preceded by a Card 5b and a Card 5a generates a matrix of NA*NB*NC elements with the properties of the Card 5a element. Card 5b defines the elements to be generated in the A and B directions, Card 5c defines them for the C direction.
KODE
KODE
is the code GEN3RD
(or –7) generates a 3D
matrix of elements.
NC
NC
is the number of elements in the C direction.
NDC
NDC
is the element number increment in the C direction.
NDVC(I)
NDVC(I)
is the I'th node number increment in the C direction.
MM
MM
is the number of nodes in each element, which may be from 1 to 8,
and must be equal to the number of nodes of the starting element.
Code example
The following example generates 8 solid elements 1, 2, 11, 12, 101, 102, 111, 112.

$ CARD 4 CARDS – GLOBAL CARTESIAN COORDINATE SYSTEM
$ IS IN EFFECT.
1 0 0 0
$ STARTING NODE
GEN 3 3 1 10 1 0 0 0 1 0
$ CARD 4B GENERATES 3*3 = 9 NODES
GEN3RD 3 100 0 0 1
$ CARD 4C GENERATES 3*9 = 27 NODES
–1
$ CARD 5 CARDS. 8 SOLID ELEMENTS ARE GENERATED.
1 SOLID M1 0 P1 1 2 12 11 101 102 112 111
$ CARD5A STARTING EL.
GEN 2 2 1 10 1 1 1 1 1 1 1 1 10 10 10 10 10 10 10 10
$CARD5B 4 EL.
GEN3RD 2 100 100 100 100 100 100 100 100 100
$CARD 5C 8 EL.