OutputsWriteMotionDfmfFile#
- class ansys.dpf.core.operators.result.write_motion_dfmf_file.OutputsWriteMotionDfmfFile(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._OutputsIntermediate class used to get outputs from write_motion_dfmf_file operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.write_motion_dfmf_file() >>> # Connect inputs : op.inputs. ... >>> result_dfmf_data_source = op.outputs.dfmf_data_source()
Overview#
Allows to get dfmf_data_source output of the operator |
Import detail#
from ansys.dpf.core.operators.result.write_motion_dfmf_file import OutputsWriteMotionDfmfFile
Property detail#
- property OutputsWriteMotionDfmfFile.dfmf_data_source: ansys.dpf.core.outputs.Output[ansys.dpf.core.data_sources.DataSources]#
Allows to get dfmf_data_source output of the operator
Data Source containing the dfmf file generated.
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.write_motion_dfmf_file() >>> # Get the output from op.outputs. ... >>> result_dfmf_data_source = op.outputs.dfmf_data_source()
Method detail#
- OutputsWriteMotionDfmfFile.__str__()#