InputsPrepareMappingWorkflow#
- class ansys.dpf.core.operators.mapping.prepare_mapping_workflow.InputsPrepareMappingWorkflow(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to prepare_mapping_workflow operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.prepare_mapping_workflow() >>> my_input_support = dpf.Field() >>> op.inputs.input_support.connect(my_input_support) >>> my_output_support = dpf.Field() >>> op.inputs.output_support.connect(my_output_support) >>> my_filter_radius = float() >>> op.inputs.filter_radius.connect(my_filter_radius) >>> my_influence_box = float() >>> op.inputs.influence_box.connect(my_influence_box)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect input_support input to the operator. |
|
Allows to connect output_support input to the operator. |
|
Allows to connect filter_radius input to the operator. |
|
Allows to connect influence_box input to the operator. |
Import detail#
from ansys.dpf.core.operators.mapping.prepare_mapping_workflow import InputsPrepareMappingWorkflow
Property detail#
- property InputsPrepareMappingWorkflow.input_support: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field | ansys.dpf.core.meshed_region.MeshedRegion]#
Allows to connect input_support 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.prepare_mapping_workflow() >>> op.inputs.input_support.connect(my_input_support) >>> # or >>> op.inputs.input_support(my_input_support)
- property InputsPrepareMappingWorkflow.output_support: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field | ansys.dpf.core.meshed_region.MeshedRegion]#
Allows to connect output_support 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.prepare_mapping_workflow() >>> op.inputs.output_support.connect(my_output_support) >>> # or >>> op.inputs.output_support(my_output_support)
- property InputsPrepareMappingWorkflow.filter_radius: ansys.dpf.core.inputs.Input[float]#
Allows to connect filter_radius input to the operator.
Radius size for the RBF filter
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.prepare_mapping_workflow() >>> op.inputs.filter_radius.connect(my_filter_radius) >>> # or >>> op.inputs.filter_radius(my_filter_radius)
- property InputsPrepareMappingWorkflow.influence_box: ansys.dpf.core.inputs.Input[float]#
Allows to connect influence_box 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.prepare_mapping_workflow() >>> op.inputs.influence_box.connect(my_influence_box) >>> # or >>> op.inputs.influence_box(my_influence_box)
Method detail#
- InputsPrepareMappingWorkflow.__str__()#
- InputsPrepareMappingWorkflow.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.
- InputsPrepareMappingWorkflow.__call__(inpt)#