InputsTotalMass#

class ansys.dpf.core.operators.result.total_mass.InputsTotalMass(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to total_mass operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.total_mass()
>>> my_data_sources = dpf.DataSources()
>>> op.inputs.data_sources.connect(my_data_sources)

Overview#

connect

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

data_sources

Allows to connect data_sources input to the operator.

Import detail#

from ansys.dpf.core.operators.result.total_mass import InputsTotalMass

Property detail#

property InputsTotalMass.data_sources: ansys.dpf.core.inputs.Input[ansys.dpf.core.data_sources.DataSources]#

Allows to connect data_sources input to the operator.

Data sources (must contain at least one mode file).

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.total_mass()
>>> op.inputs.data_sources.connect(my_data_sources)
>>> # or
>>> op.inputs.data_sources(my_data_sources)

Method detail#

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

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