InputsWriteMotionDfmfFile#

class ansys.dpf.core.operators.result.write_motion_dfmf_file.InputsWriteMotionDfmfFile(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to write_motion_dfmf_file operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.write_motion_dfmf_file()
>>> my_model_data = dpf.PropertyField()
>>> op.inputs.model_data.connect(my_model_data)
>>> my_mode_shapes = dpf.FieldsContainer()
>>> op.inputs.mode_shapes.connect(my_mode_shapes)
>>> my_lumped_mass = dpf.FieldsContainer()
>>> op.inputs.lumped_mass.connect(my_lumped_mass)
>>> my_field_coordinates = dpf.Field()
>>> op.inputs.field_coordinates.connect(my_field_coordinates)
>>> my_nod = dpf.()
>>> op.inputs.nod.connect(my_nod)
>>> my_used_node_index = dpf.()
>>> op.inputs.used_node_index.connect(my_used_node_index)
>>> my_eigenvalue = dpf.()
>>> op.inputs.eigenvalue.connect(my_eigenvalue)
>>> my_translational_mode_shape = dpf.()
>>> op.inputs.translational_mode_shape.connect(my_translational_mode_shape)
>>> my_rotational_mode_shape = dpf.()
>>> op.inputs.rotational_mode_shape.connect(my_rotational_mode_shape)
>>> my_invrt_1 = float()
>>> op.inputs.invrt_1.connect(my_invrt_1)
>>> my_invrt_2 = dpf.()
>>> op.inputs.invrt_2.connect(my_invrt_2)
>>> my_invrt_3 = dpf.()
>>> op.inputs.invrt_3.connect(my_invrt_3)
>>> my_invrt_4 = dpf.()
>>> op.inputs.invrt_4.connect(my_invrt_4)
>>> my_invrt_5 = dpf.()
>>> op.inputs.invrt_5.connect(my_invrt_5)
>>> my_invrt_6 = dpf.()
>>> op.inputs.invrt_6.connect(my_invrt_6)
>>> my_invrt_7 = dpf.()
>>> op.inputs.invrt_7.connect(my_invrt_7)
>>> my_invrt_8 = dpf.()
>>> op.inputs.invrt_8.connect(my_invrt_8)
>>> my_dfmffile_path = str()
>>> op.inputs.dfmffile_path.connect(my_dfmffile_path)
>>> my_rstfile_path = str()
>>> op.inputs.rstfile_path.connect(my_rstfile_path)

Overview#

connect

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

model_data

Allows to connect model_data input to the operator.

mode_shapes

Allows to connect mode_shapes input to the operator.

lumped_mass

Allows to connect lumped_mass input to the operator.

field_coordinates

Allows to connect field_coordinates input to the operator.

nod

Allows to connect nod input to the operator.

used_node_index

Allows to connect used_node_index input to the operator.

eigenvalue

Allows to connect eigenvalue input to the operator.

translational_mode_shape

Allows to connect translational_mode_shape input to the operator.

rotational_mode_shape

Allows to connect rotational_mode_shape input to the operator.

invrt_1

Allows to connect invrt_1 input to the operator.

invrt_2

Allows to connect invrt_2 input to the operator.

invrt_3

Allows to connect invrt_3 input to the operator.

invrt_4

Allows to connect invrt_4 input to the operator.

invrt_5

Allows to connect invrt_5 input to the operator.

invrt_6

Allows to connect invrt_6 input to the operator.

invrt_7

Allows to connect invrt_7 input to the operator.

invrt_8

Allows to connect invrt_8 input to the operator.

dfmffile_path

Allows to connect dfmffile_path input to the operator.

rstfile_path

Allows to connect rstfile_path input to the operator.

Import detail#

from ansys.dpf.core.operators.result.write_motion_dfmf_file import InputsWriteMotionDfmfFile

Property detail#

property InputsWriteMotionDfmfFile.model_data: ansys.dpf.core.inputs.Input[ansys.dpf.core.property_field.PropertyField]#

Allows to connect model_data input to the operator.

data describing the finite element model

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.write_motion_dfmf_file()
>>> op.inputs.model_data.connect(my_model_data)
>>> # or
>>> op.inputs.model_data(my_model_data)
property InputsWriteMotionDfmfFile.mode_shapes: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect mode_shapes input to the operator.

FieldsContainers containing the mode shapes, which are CST and NOR for the cms method

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.write_motion_dfmf_file()
>>> op.inputs.mode_shapes.connect(my_mode_shapes)
>>> # or
>>> op.inputs.mode_shapes(my_mode_shapes)
property InputsWriteMotionDfmfFile.lumped_mass: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect lumped_mass input to the operator.

FieldsContainers containing the lumped mass

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.write_motion_dfmf_file()
>>> op.inputs.lumped_mass.connect(my_lumped_mass)
>>> # or
>>> op.inputs.lumped_mass(my_lumped_mass)
property InputsWriteMotionDfmfFile.field_coordinates: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field]#

Allows to connect field_coordinates input to the operator.

coordinates of all nodes

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.write_motion_dfmf_file()
>>> op.inputs.field_coordinates.connect(my_field_coordinates)
>>> # or
>>> op.inputs.field_coordinates(my_field_coordinates)
property InputsWriteMotionDfmfFile.nod: ansys.dpf.core.inputs.Input#

Allows to connect nod 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.write_motion_dfmf_file()
>>> op.inputs.nod.connect(my_nod)
>>> # or
>>> op.inputs.nod(my_nod)
property InputsWriteMotionDfmfFile.used_node_index: ansys.dpf.core.inputs.Input#

Allows to connect used_node_index 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.write_motion_dfmf_file()
>>> op.inputs.used_node_index.connect(my_used_node_index)
>>> # or
>>> op.inputs.used_node_index(my_used_node_index)
property InputsWriteMotionDfmfFile.eigenvalue: ansys.dpf.core.inputs.Input#

Allows to connect eigenvalue 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.write_motion_dfmf_file()
>>> op.inputs.eigenvalue.connect(my_eigenvalue)
>>> # or
>>> op.inputs.eigenvalue(my_eigenvalue)
property InputsWriteMotionDfmfFile.translational_mode_shape: ansys.dpf.core.inputs.Input#

Allows to connect translational_mode_shape 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.write_motion_dfmf_file()
>>> op.inputs.translational_mode_shape.connect(my_translational_mode_shape)
>>> # or
>>> op.inputs.translational_mode_shape(my_translational_mode_shape)
property InputsWriteMotionDfmfFile.rotational_mode_shape: ansys.dpf.core.inputs.Input#

Allows to connect rotational_mode_shape 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.write_motion_dfmf_file()
>>> op.inputs.rotational_mode_shape.connect(my_rotational_mode_shape)
>>> # or
>>> op.inputs.rotational_mode_shape(my_rotational_mode_shape)
property InputsWriteMotionDfmfFile.invrt_1: ansys.dpf.core.inputs.Input[float]#

Allows to connect invrt_1 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.write_motion_dfmf_file()
>>> op.inputs.invrt_1.connect(my_invrt_1)
>>> # or
>>> op.inputs.invrt_1(my_invrt_1)
property InputsWriteMotionDfmfFile.invrt_2: ansys.dpf.core.inputs.Input#

Allows to connect invrt_2 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.write_motion_dfmf_file()
>>> op.inputs.invrt_2.connect(my_invrt_2)
>>> # or
>>> op.inputs.invrt_2(my_invrt_2)
property InputsWriteMotionDfmfFile.invrt_3: ansys.dpf.core.inputs.Input#

Allows to connect invrt_3 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.write_motion_dfmf_file()
>>> op.inputs.invrt_3.connect(my_invrt_3)
>>> # or
>>> op.inputs.invrt_3(my_invrt_3)
property InputsWriteMotionDfmfFile.invrt_4: ansys.dpf.core.inputs.Input#

Allows to connect invrt_4 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.write_motion_dfmf_file()
>>> op.inputs.invrt_4.connect(my_invrt_4)
>>> # or
>>> op.inputs.invrt_4(my_invrt_4)
property InputsWriteMotionDfmfFile.invrt_5: ansys.dpf.core.inputs.Input#

Allows to connect invrt_5 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.write_motion_dfmf_file()
>>> op.inputs.invrt_5.connect(my_invrt_5)
>>> # or
>>> op.inputs.invrt_5(my_invrt_5)
property InputsWriteMotionDfmfFile.invrt_6: ansys.dpf.core.inputs.Input#

Allows to connect invrt_6 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.write_motion_dfmf_file()
>>> op.inputs.invrt_6.connect(my_invrt_6)
>>> # or
>>> op.inputs.invrt_6(my_invrt_6)
property InputsWriteMotionDfmfFile.invrt_7: ansys.dpf.core.inputs.Input#

Allows to connect invrt_7 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.write_motion_dfmf_file()
>>> op.inputs.invrt_7.connect(my_invrt_7)
>>> # or
>>> op.inputs.invrt_7(my_invrt_7)
property InputsWriteMotionDfmfFile.invrt_8: ansys.dpf.core.inputs.Input#

Allows to connect invrt_8 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.write_motion_dfmf_file()
>>> op.inputs.invrt_8.connect(my_invrt_8)
>>> # or
>>> op.inputs.invrt_8(my_invrt_8)
property InputsWriteMotionDfmfFile.dfmffile_path: ansys.dpf.core.inputs.Input[str]#

Allows to connect dfmffile_path input to the operator.

path with motion dfmf extension where the export occurs

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.write_motion_dfmf_file()
>>> op.inputs.dfmffile_path.connect(my_dfmffile_path)
>>> # or
>>> op.inputs.dfmffile_path(my_dfmffile_path)
property InputsWriteMotionDfmfFile.rstfile_path: ansys.dpf.core.inputs.Input[str]#

Allows to connect rstfile_path 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.write_motion_dfmf_file()
>>> op.inputs.rstfile_path.connect(my_rstfile_path)
>>> # or
>>> op.inputs.rstfile_path(my_rstfile_path)

Method detail#

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

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