InputsScopingOnCoordinates#
- class ansys.dpf.core.operators.mapping.scoping_on_coordinates.InputsScopingOnCoordinates(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to scoping_on_coordinates operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.scoping_on_coordinates() >>> my_coordinates = dpf.Field() >>> op.inputs.coordinates.connect(my_coordinates) >>> my_mesh = dpf.MeshedRegion() >>> op.inputs.mesh.connect(my_mesh)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect coordinates input to the operator. |
|
Allows to connect mesh input to the operator. |
Import detail#
from ansys.dpf.core.operators.mapping.scoping_on_coordinates import InputsScopingOnCoordinates
Property detail#
- property InputsScopingOnCoordinates.coordinates: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field]#
Allows to connect coordinates 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.mapping.scoping_on_coordinates() >>> op.inputs.coordinates.connect(my_coordinates) >>> # or >>> op.inputs.coordinates(my_coordinates)
- property InputsScopingOnCoordinates.mesh: ansys.dpf.core.inputs.Input[ansys.dpf.core.meshed_region.MeshedRegion]#
Allows to connect mesh 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.mapping.scoping_on_coordinates() >>> op.inputs.mesh.connect(my_mesh) >>> # or >>> op.inputs.mesh(my_mesh)
Method detail#
- InputsScopingOnCoordinates.__str__()#
- InputsScopingOnCoordinates.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.
- InputsScopingOnCoordinates.__call__(inpt)#