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#

mesh

Allows to get mesh output of the operator

nodes_mesh_scoping

Allows to get nodes_mesh_scoping output of the operator

map_new_elements_to_old

Allows to get map_new_elements_to_old output of the operator

property_field_new_elements_to_old

Allows to get property_field_new_elements_to_old output of the operator

facet_indices

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: ansys.dpf.core.outputs.Output#

Allows to get mesh output of the operator

Skin meshed region with facets and facets_to_ele property fields.

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.skin()
>>> # Get the output from op.outputs. ...
>>> result_mesh = op.outputs.mesh()
property OutputsSkin.nodes_mesh_scoping: ansys.dpf.core.outputs.Output#

Allows to get nodes_mesh_scoping output of the operator

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.skin()
>>> # Get the output from op.outputs. ...
>>> result_nodes_mesh_scoping = op.outputs.nodes_mesh_scoping()
property OutputsSkin.map_new_elements_to_old: ansys.dpf.core.outputs.Output#

Allows to get map_new_elements_to_old output of the operator

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.skin()
>>> # Get the output from op.outputs. ...
>>> result_map_new_elements_to_old = op.outputs.map_new_elements_to_old()
property OutputsSkin.property_field_new_elements_to_old: ansys.dpf.core.outputs.Output#

Allows to get property_field_new_elements_to_old output of the operator

This property field provides, for each new face element ID (in the scoping), the corresponding 3D volume element index (in the data) it has been extracted from. The 3D volume element ID can be found with the element scoping of the input mesh.

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.skin()
>>> # Get the output from op.outputs. ...
>>> result_property_field_new_elements_to_old = op.outputs.property_field_new_elements_to_old()
property OutputsSkin.facet_indices: ansys.dpf.core.outputs.Output#

Allows to get facet_indices output of the operator

This property field gives, for each new face element ID (in the scoping), the corresponding face index on the source 3D volume element. The 3D volume element can be extracted from the previous output.

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.skin()
>>> # Get the output from op.outputs. ...
>>> result_facet_indices = op.outputs.facet_indices()