InputsCentroid
#
- class ansys.dpf.core.operators.math.centroid.InputsCentroid(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._Inputs
Intermediate class used to connect user inputs to centroid operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.centroid() >>> my_fieldA = dpf.Field() >>> op.inputs.fieldA.connect(my_fieldA) >>> my_fieldB = dpf.Field() >>> op.inputs.fieldB.connect(my_fieldB) >>> my_factor = float() >>> op.inputs.factor.connect(my_factor)
Overview#
Import detail#
from ansys.dpf.core.operators.math.centroid import InputsCentroid
Property detail#
- property InputsCentroid.fieldA: ansys.dpf.core.inputs.Input#
Allows to connect fieldA input to the operator.
field or fields container with only one field is expected
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.centroid() >>> op.inputs.fieldA.connect(my_fieldA) >>> # or >>> op.inputs.fieldA(my_fieldA)
- property InputsCentroid.fieldB: ansys.dpf.core.inputs.Input#
Allows to connect fieldB input to the operator.
field or fields container with only one field is expected
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.centroid() >>> op.inputs.fieldB.connect(my_fieldB) >>> # or >>> op.inputs.fieldB(my_fieldB)
- property InputsCentroid.factor: ansys.dpf.core.inputs.Input#
Allows to connect factor input to the operator.
Scalar
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.centroid() >>> op.inputs.factor.connect(my_factor) >>> # or >>> op.inputs.factor(my_factor)