OutputsPhase#

class ansys.dpf.core.operators.math.phase.OutputsPhase(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from phase operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.phase()
>>> # Connect inputs : op.inputs. ...
>>> result_field = op.outputs.field()

Overview#

field

Allows to get field output of the operator

Import detail#

from ansys.dpf.core.operators.math.phase import OutputsPhase

Property detail#

property OutputsPhase.field#

Allows to get field output of the operator

Returns:

my_field

Return type:

Field

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.phase()
>>> # Connect inputs : op.inputs. ...
>>> result_field = op.outputs.field()