InputsCyclicAnalyticUsumMax#

class ansys.dpf.core.operators.result.cyclic_analytic_usum_max.InputsCyclicAnalyticUsumMax(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to cyclic_analytic_usum_max operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cyclic_analytic_usum_max()
>>> my_time_scoping = dpf.Scoping()
>>> op.inputs.time_scoping.connect(my_time_scoping)
>>> my_mesh_scoping = dpf.ScopingsContainer()
>>> op.inputs.mesh_scoping.connect(my_mesh_scoping)
>>> my_fields_container = dpf.FieldsContainer()
>>> op.inputs.fields_container.connect(my_fields_container)
>>> my_bool_rotate_to_global = bool()
>>> op.inputs.bool_rotate_to_global.connect(my_bool_rotate_to_global)
>>> my_cyclic_support = dpf.CyclicSupport()
>>> op.inputs.cyclic_support.connect(my_cyclic_support)

Overview#

connect

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

time_scoping

Allows to connect time_scoping input to the operator.

mesh_scoping

Allows to connect mesh_scoping input to the operator.

fields_container

Allows to connect fields_container input to the operator.

bool_rotate_to_global

Allows to connect bool_rotate_to_global input to the operator.

cyclic_support

Allows to connect cyclic_support input to the operator.

Import detail#

from ansys.dpf.core.operators.result.cyclic_analytic_usum_max import InputsCyclicAnalyticUsumMax

Property detail#

property InputsCyclicAnalyticUsumMax.time_scoping: ansys.dpf.core.inputs.Input[ansys.dpf.core.scoping.Scoping]#

Allows to connect time_scoping input to the operator.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cyclic_analytic_usum_max()
>>> op.inputs.time_scoping.connect(my_time_scoping)
>>> # or
>>> op.inputs.time_scoping(my_time_scoping)
property InputsCyclicAnalyticUsumMax.mesh_scoping: ansys.dpf.core.inputs.Input[ansys.dpf.core.scopings_container.ScopingsContainer | ansys.dpf.core.scoping.Scoping]#

Allows to connect mesh_scoping input to the operator.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cyclic_analytic_usum_max()
>>> op.inputs.mesh_scoping.connect(my_mesh_scoping)
>>> # or
>>> op.inputs.mesh_scoping(my_mesh_scoping)
property InputsCyclicAnalyticUsumMax.fields_container: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect fields_container input to the operator.

field container with the base and duplicate sectors

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cyclic_analytic_usum_max()
>>> op.inputs.fields_container.connect(my_fields_container)
>>> # or
>>> op.inputs.fields_container(my_fields_container)
property InputsCyclicAnalyticUsumMax.bool_rotate_to_global: ansys.dpf.core.inputs.Input[bool]#

Allows to connect bool_rotate_to_global input to the operator.

default is true

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cyclic_analytic_usum_max()
>>> op.inputs.bool_rotate_to_global.connect(my_bool_rotate_to_global)
>>> # or
>>> op.inputs.bool_rotate_to_global(my_bool_rotate_to_global)
property InputsCyclicAnalyticUsumMax.cyclic_support: ansys.dpf.core.inputs.Input[ansys.dpf.core.cyclic_support.CyclicSupport]#

Allows to connect cyclic_support input to the operator.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cyclic_analytic_usum_max()
>>> op.inputs.cyclic_support.connect(my_cyclic_support)
>>> # or
>>> op.inputs.cyclic_support(my_cyclic_support)

Method detail#

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

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