hybridmesh.HybridMesh.eltypes#

property HybridMesh.eltypes#

Return the element type of each block in the HybridMesh.

Returns#

list of elements.ElementType

A list containing the element type of each connectivity block.

Examples#

>>> coords = Coords([[0,0,0],[1,0,0],[0,1,0],[0,0,1]])
>>> edges = [[0,1],[1,2]]
>>> faces = [[0,1,3],[1,2,3]]
>>> H = HybridMesh(coords, elems=[edges, faces], eltypes=['line2', 'tri3'])
>>> H.eltypes
[Line2, Tri3]