etdele#

Mapdl.etdele(ityp1='', ityp2='', inc='', **kwargs)[source]#

APDL Command: ETDELE

Deletes element types.

Parameters:
ityp1, ityp2, inc

Deletes element types from ityp1 to ityp2 (defaults to ityp1) in steps of inc (defaults to 1). If ityp1='ALL', ityp2 and inc are ignored and all element types are deleted. Element types are defined with the et command.

Return type:

Optional[str]

Examples

Create and delete an element type.

>>> mapdl.et(1, 'SOLID186')
>>> mapdl.etdele(1)