OutputsCmsSubfileInfoProvider#

class ansys.dpf.core.operators.result.cms_subfile_info_provider.OutputsCmsSubfileInfoProvider(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from cms_subfile_info_provider operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cms_subfile_info_provider()
>>> # Connect inputs : op.inputs. ...
>>> result_int32 = op.outputs.int32()
>>> result_field = op.outputs.field()

Overview#

int32

Allows to get int32 output of the operator

field

Allows to get field output of the operator

Import detail#

from ansys.dpf.core.operators.result.cms_subfile_info_provider import OutputsCmsSubfileInfoProvider

Property detail#

property OutputsCmsSubfileInfoProvider.int32: ansys.dpf.core.outputs.Output[int]#

Allows to get int32 output of the operator

returns integer values in the order : unit system used, stiffness matrix present key, damping matrix present key, mass matrix present key, number of master nodes, number of virtual nodes

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cms_subfile_info_provider()
>>> # Get the output from op.outputs. ...
>>> result_int32 = op.outputs.int32()
property OutputsCmsSubfileInfoProvider.field: ansys.dpf.core.outputs.Output[ansys.dpf.core.property_field.PropertyField]#

Allows to get field output of the operator

returns integer values in the order : number of load vectors (nvects), number of nodes (nnod), number of virtual nodes (nvnodes), number of modes (nvmodes)

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.cms_subfile_info_provider()
>>> # Get the output from op.outputs. ...
>>> result_field = op.outputs.field()

Method detail#

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