OutputsLayerOrientationProvider#

class ansys.dpf.core.operators.result.layer_orientation_provider.OutputsLayerOrientationProvider(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from layer_orientation_provider operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.layer_orientation_provider()
>>> # Connect inputs : op.inputs. ...
>>> result_layer_orientation_data = op.outputs.layer_orientation_data()

Overview#

layer_orientation_data

Allows to get layer_orientation_data output of the operator

Import detail#

from ansys.dpf.core.operators.result.layer_orientation_provider import OutputsLayerOrientationProvider

Property detail#

property OutputsLayerOrientationProvider.layer_orientation_data: ansys.dpf.core.outputs.Output[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to get layer_orientation_data output of the operator

Requested data as FieldsContainer.

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.layer_orientation_provider()
>>> # Get the output from op.outputs. ...
>>> result_layer_orientation_data = op.outputs.layer_orientation_data()

Method detail#

OutputsLayerOrientationProvider.__getitem__(index) Output#
OutputsLayerOrientationProvider.__str__()#