InputsWireframe#
- class ansys.dpf.core.operators.mesh.wireframe.InputsWireframe(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to wireframe operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.wireframe() >>> my_mesh = dpf.MeshedRegion() >>> op.inputs.mesh.connect(my_mesh) >>> my_threshold = float() >>> op.inputs.threshold.connect(my_threshold) >>> my_element_restriction = dpf.Scoping() >>> op.inputs.element_restriction.connect(my_element_restriction)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect mesh input to the operator. |
|
Allows to connect threshold input to the operator. |
|
Allows to connect element_restriction input to the operator. |
Import detail#
from ansys.dpf.core.operators.mesh.wireframe import InputsWireframe
Property detail#
- property InputsWireframe.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.mesh.wireframe() >>> op.inputs.mesh.connect(my_mesh) >>> # or >>> op.inputs.mesh(my_mesh)
- property InputsWireframe.threshold: ansys.dpf.core.inputs.Input[float]#
Allows to connect threshold input to the operator.
angle threshold in radian that will trigger an edge detection.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.wireframe() >>> op.inputs.threshold.connect(my_threshold) >>> # or >>> op.inputs.threshold(my_threshold)
- property InputsWireframe.element_restriction: ansys.dpf.core.inputs.Input[ansys.dpf.core.scoping.Scoping]#
Allows to connect element_restriction input to the operator.
Restrict the list of elements that must be treated when extractiong edges. Can be used to exclude unwanted bodies or unwanted elements like contact or surface load elements.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.wireframe() >>> op.inputs.element_restriction.connect(my_element_restriction) >>> # or >>> op.inputs.element_restriction(my_element_restriction)
Method detail#
- InputsWireframe.__str__()#
- InputsWireframe.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.
- InputsWireframe.__call__(inpt)#