InputsDot#

class ansys.dpf.core.operators.math.dot.InputsDot(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to dot operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.dot()
>>> my_fieldA = dpf.Field()
>>> op.inputs.fieldA.connect(my_fieldA)
>>> my_fieldB = dpf.Field()
>>> op.inputs.fieldB.connect(my_fieldB)

Overview#

fieldA

Allows to connect fieldA input to the operator.

fieldB

Allows to connect fieldB input to the operator.

Import detail#

from ansys.dpf.core.operators.math.dot import InputsDot

Property detail#

property InputsDot.fieldA#

Allows to connect fieldA input to the operator.

Field or fields container with only one field is expected

Parameters:

my_fieldA (Field or FieldsContainer)

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.dot()
>>> op.inputs.fieldA.connect(my_fieldA)
>>> # or
>>> op.inputs.fieldA(my_fieldA)
property InputsDot.fieldB#

Allows to connect fieldB input to the operator.

Field or fields container with only one field is expected

Parameters:

my_fieldB (Field or FieldsContainer)

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.math.dot()
>>> op.inputs.fieldB.connect(my_fieldB)
>>> # or
>>> op.inputs.fieldB(my_fieldB)