InputsMac
#
- class ansys.dpf.core.operators.math.mac.InputsMac(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._Inputs
Intermediate class used to connect user inputs to mac operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.mac() >>> my_fields_containerA = dpf.FieldsContainer() >>> op.inputs.fields_containerA.connect(my_fields_containerA) >>> my_fields_containerB = dpf.FieldsContainer() >>> op.inputs.fields_containerB.connect(my_fields_containerB) >>> my_weights = dpf.Field() >>> op.inputs.weights.connect(my_weights)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect fields_containerA input to the operator. |
|
Allows to connect fields_containerB input to the operator. |
|
Allows to connect weights input to the operator. |
Import detail#
from ansys.dpf.core.operators.math.mac import InputsMac
Property detail#
- property InputsMac.fields_containerA: ansys.dpf.core.inputs.Input#
Allows to connect fields_containerA input to the operator.
Fields Container A.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.mac() >>> op.inputs.fields_containerA.connect(my_fields_containerA) >>> # or >>> op.inputs.fields_containerA(my_fields_containerA)
- property InputsMac.fields_containerB: ansys.dpf.core.inputs.Input#
Allows to connect fields_containerB input to the operator.
Fields Container B.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.mac() >>> op.inputs.fields_containerB.connect(my_fields_containerB) >>> # or >>> op.inputs.fields_containerB(my_fields_containerB)
- property InputsMac.weights: ansys.dpf.core.inputs.Input#
Allows to connect weights input to the operator.
Field M, optional weighting for MAC Matrix computation.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.math.mac() >>> op.inputs.weights.connect(my_weights) >>> # or >>> op.inputs.weights(my_weights)
Method detail#
- InputsMac.__getattr__(name)#
- InputsMac.__str__()#
- InputsMac.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.
- InputsMac.__call__(inpt)#