InputsSolidToSkinFc#
- class ansys.dpf.core.operators.mapping.solid_to_skin_fc.InputsSolidToSkinFc(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to solid_to_skin_fc operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.solid_to_skin_fc() >>> my_fields_container = dpf.FieldsContainer() >>> op.inputs.fields_container.connect(my_fields_container) >>> my_mesh = dpf.MeshedRegion() >>> op.inputs.mesh.connect(my_mesh) >>> my_solid_mesh = dpf.MeshedRegion() >>> op.inputs.solid_mesh.connect(my_solid_mesh)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect fields_container input to the operator. |
|
Allows to connect mesh input to the operator. |
|
Allows to connect solid_mesh input to the operator. |
Import detail#
from ansys.dpf.core.operators.mapping.solid_to_skin_fc import InputsSolidToSkinFc
Property detail#
- property InputsSolidToSkinFc.fields_container: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#
Allows to connect fields_container 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.solid_to_skin_fc() >>> op.inputs.fields_container.connect(my_fields_container) >>> # or >>> op.inputs.fields_container(my_fields_container)
- property InputsSolidToSkinFc.mesh: ansys.dpf.core.inputs.Input[ansys.dpf.core.meshed_region.MeshedRegion]#
Allows to connect mesh input to the operator.
skin mesh region expected
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.solid_to_skin_fc() >>> op.inputs.mesh.connect(my_mesh) >>> # or >>> op.inputs.mesh(my_mesh)
- property InputsSolidToSkinFc.solid_mesh: ansys.dpf.core.inputs.Input[ansys.dpf.core.meshed_region.MeshedRegion]#
Allows to connect solid_mesh input to the operator.
Solid mesh support (optional).
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.solid_to_skin_fc() >>> op.inputs.solid_mesh.connect(my_solid_mesh) >>> # or >>> op.inputs.solid_mesh(my_solid_mesh)
Method detail#
- InputsSolidToSkinFc.__str__()#
- InputsSolidToSkinFc.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.
- InputsSolidToSkinFc.__call__(inpt)#