OutputsField
#
- class ansys.dpf.core.operators.utility.field.OutputsField(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._Outputs
Intermediate class used to get outputs from field operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.utility.field() >>> # Connect inputs : op.inputs. ... >>> result_incremented_result = op.outputs.incremented_result()
Overview#
Allows to get incremented_result output of the operator |
Import detail#
from ansys.dpf.core.operators.utility.field import OutputsField
Property detail#
- property OutputsField.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.field() >>> # Connect inputs : op.inputs. ... >>> result_incremented_result = op.outputs.incremented_result()