InputsSqrt#

class ansys.dpf.core.operators.math.sqrt.InputsSqrt(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to sqrt operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.sqrt()
>>> my_field = dpf.Field()
>>> op.inputs.field.connect(my_field)

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.

Import detail#

from ansys.dpf.core.operators.math.sqrt import InputsSqrt

Property detail#

property InputsSqrt.field: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field | ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect field input to the operator.

Field or fields container containing numeric data for square root calculation

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.sqrt()
>>> op.inputs.field.connect(my_field)
>>> # or
>>> op.inputs.field(my_field)

Method detail#

InputsSqrt.__str__()#
InputsSqrt.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.

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