OutputsIntersect#

class ansys.dpf.core.operators.scoping.intersect.OutputsIntersect(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from intersect operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.scoping.intersect()
>>> # Connect inputs : op.inputs. ...
>>> result_intersection = op.outputs.intersection()
>>> result_scopingA_min_intersection = op.outputs.scopingA_min_intersection()

Overview#

intersection

Allows to get intersection output of the operator

scopingA_min_intersection

Allows to get scopingA_min_intersection output of the operator

Import detail#

from ansys.dpf.core.operators.scoping.intersect import OutputsIntersect

Property detail#

property OutputsIntersect.intersection#

Allows to get intersection output of the operator

Returns:

my_intersection

Return type:

Scoping

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.scoping.intersect()
>>> # Connect inputs : op.inputs. ...
>>> result_intersection = op.outputs.intersection()
property OutputsIntersect.scopingA_min_intersection#

Allows to get scopingA_min_intersection output of the operator

Returns:

my_scopingA_min_intersection

Return type:

Scoping

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.scoping.intersect()
>>> # Connect inputs : op.inputs. ...
>>> result_scopingA_min_intersection = op.outputs.scopingA_min_intersection()