OutputsMesh#

class ansys.dpf.core.operators.utility.mesh.OutputsMesh(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from mesh operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.utility.mesh()
>>> # Connect inputs : op.inputs. ...
>>> result_incremented_result = op.outputs.incremented_result()

Overview#

incremented_result

Allows to get incremented_result output of the operator

Import detail#

from ansys.dpf.core.operators.utility.mesh import OutputsMesh

Property detail#

property OutputsMesh.incremented_result#

Allows to get incremented_result output of the operator

Return type:

my_incremented_result

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.utility.mesh()
>>> # Connect inputs : op.inputs. ...
>>> result_incremented_result = op.outputs.incremented_result()