lsel#

Query.lsel(n)[source]#

Returns selection status of a line.

Returns a SelectionStatus object with values:

1 - SELECTED 0 - UNDEFINED -1 - UNSELECTED

Parameters:
nint

Line number

Returns:
mapdl.ansys.core.inline_functions.SelectionStatus

Status of line

Return type:

SelectionStatus

Examples

Here we create a single line and interrogate its selection status.

>>> from ansys.mapdl.core import launch_mapdl
>>> mapdl = launch_mapdl()
>>> mapdl.prep7()
>>> k1 = mapdl.k(1, 0, 0, 0)
>>> k2 = mapdl.k(2, 1, 1, 1)
>>> L1 = mapdl.l(k1, k2)
>>> L1
1

We can use Query.lsel to interrogate the selection status of the line. The response is an enum.IntEnum object. If you query a line that does not exist, it will return a status SelectionStatus.UNDEFINED.

>>> q = mapdl.queries
>>> q.lsel(L1)
<SelectionStatus.SELECTED: 1>
>>> mapdl.lsel('NONE')
>>> q.lsel(L1)
<SelectionStatus.UNSELECTED: -1>
>>> q.lsel(0)
<SelectionStatus.UNDEFINED: 0>