InputsPow#

class ansys.dpf.core.operators.math.pow.InputsPow(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to pow operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.pow()
>>> my_field = dpf.Field()
>>> op.inputs.field.connect(my_field)
>>> my_factor = float()
>>> op.inputs.factor.connect(my_factor)

Overview#

connect

Connect any input (an entity or an operator output) to any input pin of this operator.

field

Allows to connect field input to the operator.

factor

Allows to connect factor input to the operator.

Import detail#

from ansys.dpf.core.operators.math.pow import InputsPow

Property detail#

property InputsPow.field: ansys.dpf.core.inputs.Input#

Allows to connect field input to the operator.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.pow()
>>> op.inputs.field.connect(my_field)
>>> # or
>>> op.inputs.field(my_field)
property InputsPow.factor: ansys.dpf.core.inputs.Input#

Allows to connect factor input to the operator.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.pow()
>>> op.inputs.factor.connect(my_factor)
>>> # or
>>> op.inputs.factor(my_factor)

Method detail#

InputsPow.__str__()#
InputsPow.connect(inpt)#

Connect any input (an entity or an operator output) to any input pin of this operator.

Searches for the input type corresponding to the output.

Deprecated since version Deprecated: in favor of explicit output-to-input connections.

Parameters:
  • inpt (str, int, double, bool, list[int], list[float], Field, FieldsContainer, Scoping, Enum,)

  • ScopingsContainer (E501) – Input of the operator.

  • MeshedRegion (E501) – Input of the operator.

  • MeshesContainer (E501) – Input of the operator.

  • DataSources (E501) – Input of the operator.

  • CyclicSupport (E501) – Input of the operator.

  • Outputs (E501) – Input of the operator.

  • noqa (os.PathLike #) – Input of the operator.

InputsPow.__call__(inpt)#
InputsPow.__getitem__(item) Input#