OutputsSkin
#
- class ansys.dpf.core.operators.mesh.skin.OutputsSkin(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._Outputs
Intermediate class used to get outputs from skin operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.skin() >>> # Connect inputs : op.inputs. ... >>> result_mesh = op.outputs.mesh() >>> result_nodes_mesh_scoping = op.outputs.nodes_mesh_scoping() >>> result_map_new_elements_to_old = op.outputs.map_new_elements_to_old() >>> result_property_field_new_elements_to_old = op.outputs.property_field_new_elements_to_old() >>> result_facet_indices = op.outputs.facet_indices()
Overview#
Allows to get mesh output of the operator |
|
Allows to get nodes_mesh_scoping output of the operator |
|
Allows to get map_new_elements_to_old output of the operator |
|
Allows to get property_field_new_elements_to_old output of the operator |
|
Allows to get facet_indices output of the operator |
Import detail#
from ansys.dpf.core.operators.mesh.skin import OutputsSkin
Property detail#
- property OutputsSkin.mesh#
Allows to get mesh output of the operator
- Returns:
my_mesh
- Return type:
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.skin() >>> # Connect inputs : op.inputs. ... >>> result_mesh = op.outputs.mesh()
- property OutputsSkin.nodes_mesh_scoping#
Allows to get nodes_mesh_scoping output of the operator
- Returns:
my_nodes_mesh_scoping
- Return type:
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.skin() >>> # Connect inputs : op.inputs. ... >>> result_nodes_mesh_scoping = op.outputs.nodes_mesh_scoping()
- property OutputsSkin.map_new_elements_to_old#
Allows to get map_new_elements_to_old output of the operator
- Return type:
my_map_new_elements_to_old
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.skin() >>> # Connect inputs : op.inputs. ... >>> result_map_new_elements_to_old = op.outputs.map_new_elements_to_old()
- property OutputsSkin.property_field_new_elements_to_old#
Allows to get property_field_new_elements_to_old output of the operator
- Returns:
my_property_field_new_elements_to_old
- Return type:
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.skin() >>> # Connect inputs : op.inputs. ... >>> result_property_field_new_elements_to_old = op.outputs.property_field_new_elements_to_old()
- property OutputsSkin.facet_indices#
Allows to get facet_indices output of the operator
- Returns:
my_facet_indices
- Return type:
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mesh.skin() >>> # Connect inputs : op.inputs. ... >>> result_facet_indices = op.outputs.facet_indices()