InputsDeserializer#

class ansys.dpf.core.operators.serialization.deserializer.InputsDeserializer(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to deserializer operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.serialization.deserializer()
>>> my_stream_type = int()
>>> op.inputs.stream_type.connect(my_stream_type)
>>> my_file_path = str()
>>> op.inputs.file_path.connect(my_file_path)

Overview#

connect

Connect any input (an entity or an operator output) to any input pin of this operator.

stream_type

Allows to connect stream_type input to the operator.

file_path

Allows to connect file_path input to the operator.

Import detail#

from ansys.dpf.core.operators.serialization.deserializer import InputsDeserializer

Property detail#

property InputsDeserializer.stream_type: ansys.dpf.core.inputs.Input#

Allows to connect stream_type input to the operator.

0 for ASCII (default), and 1 for binary

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.serialization.deserializer()
>>> op.inputs.stream_type.connect(my_stream_type)
>>> # or
>>> op.inputs.stream_type(my_stream_type)
property InputsDeserializer.file_path: ansys.dpf.core.inputs.Input#

Allows to connect file_path input to the operator.

file path

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.serialization.deserializer()
>>> op.inputs.file_path.connect(my_file_path)
>>> # or
>>> op.inputs.file_path(my_file_path)

Method detail#

InputsDeserializer.__str__()#
InputsDeserializer.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.

Parameters:
  • inpt (str, int, double, bool, list[int], list[float], Field, FieldsContainer, Scoping, Enum,)

  • ScopingsContainer (E501) – Input of the operator.

  • MeshedRegion (E501) – Input of the operator.

  • MeshesContainer (E501) – Input of the operator.

  • DataSources (E501) – Input of the operator.

  • CyclicSupport (E501) – Input of the operator.

  • Outputs (E501) – Input of the operator.

  • noqa (os.PathLike #) – Input of the operator.

InputsDeserializer.__call__(inpt)#
InputsDeserializer.__getitem__(item) Input#