emore#

Mapdl.emore(q='', r='', s='', t='', u='', v='', w='', x='', **kwargs)[source]#

Add more nodes to the just-defined element.

APDL Command: EMORE

Repeat this method for up to 4 additional nodes (20 maximum). Nodes are added after the last nonzero node of the element. Node numbers defined with this command may be zeroes.

Parameters:
q, r, s, t, u, v, w, x

Numbers of nodes typically assigned to ninth (node Q) through sixteenth (node X) nodal positions, if any.

Return type:

Optional[str]

Examples

Generate a single quadratic element.

>>> mapdl.prep7()
>>> mapdl.et(1, 'SOLID186')
>>> mapdl.n(1, -1, -1, -1)
>>> mapdl.n(2,  1, -1, -1)
>>> mapdl.n(3,  1,  1, -1)
>>> mapdl.n(4, -1,  1, -1)
>>> mapdl.n(5, -1, -1,  1)
>>> mapdl.n(6,  1, -1,  1)
>>> mapdl.n(7,  1,  1,  1)
>>> mapdl.n(8, -1,  1,  1)
>>> mapdl.n(9,  0, -1, -1)
>>> mapdl.n(10,  1,  0, -1)
>>> mapdl.n(11,  0,  1, -1)
>>> mapdl.n(12, -1,  0, -1)
>>> mapdl.n(13,  0, -1,  1)
>>> mapdl.n(14,  1,  0,  1)
>>> mapdl.n(15,  0,  1,  1)
>>> mapdl.n(16, -1,  0,  1)
>>> mapdl.n(17, -1, -1,  0)
>>> mapdl.n(18,  1, -1,  0)
>>> mapdl.n(19,  1,  1,  0)
>>> mapdl.n(20, -1,  1,  0)
>>> mapdl.e(1, 2, 3, 4, 5, 6, 7, 8)
>>> mapdl.emore(9, 10, 11, 12, 13, 14, 15, 16)
>>> output = mapdl.emore(17, 18, 19, 20)
'ELEMENT 1  1  2  3  4  5  6  7  8
            9 10 11 12 13 14 15 16
           17 18 19 20