InputsLayerOrientationProvider#
- class ansys.dpf.core.operators.result.layer_orientation_provider.InputsLayerOrientationProvider(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to layer_orientation_provider operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.layer_orientation_provider() >>> my_streams = dpf.StreamsContainer() >>> op.inputs.streams.connect(my_streams) >>> my_data_sources = dpf.DataSources() >>> op.inputs.data_sources.connect(my_data_sources)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect streams input to the operator. |
|
Allows to connect data_sources input to the operator. |
Import detail#
from ansys.dpf.core.operators.result.layer_orientation_provider import InputsLayerOrientationProvider
Property detail#
- property InputsLayerOrientationProvider.streams: ansys.dpf.core.inputs.Input[ansys.dpf.core.streams_container.StreamsContainer]#
Allows to connect streams input to the operator.
Result file container allowed to be kept open to cache data.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.layer_orientation_provider() >>> op.inputs.streams.connect(my_streams) >>> # or >>> op.inputs.streams(my_streams)
- property InputsLayerOrientationProvider.data_sources: ansys.dpf.core.inputs.Input[ansys.dpf.core.data_sources.DataSources]#
Allows to connect data_sources input to the operator.
Result file path container, used if no streams are set.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.layer_orientation_provider() >>> op.inputs.data_sources.connect(my_data_sources) >>> # or >>> op.inputs.data_sources(my_data_sources)
Method detail#
- InputsLayerOrientationProvider.__str__()#
- InputsLayerOrientationProvider.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.
- InputsLayerOrientationProvider.__call__(inpt)#