OutputsPrepSamplingFft#
- class ansys.dpf.core.operators.mapping.prep_sampling_fft.OutputsPrepSamplingFft(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._OutputsIntermediate class used to get outputs from prep_sampling_fft operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.prep_sampling_fft() >>> # Connect inputs : op.inputs. ... >>> result_time_tfs_sampled = op.outputs.time_tfs_sampled() >>> result_freq_tfs_fft = op.outputs.freq_tfs_fft()
Overview#
Allows to get time_tfs_sampled output of the operator |
|
Allows to get freq_tfs_fft output of the operator |
Import detail#
from ansys.dpf.core.operators.mapping.prep_sampling_fft import OutputsPrepSamplingFft
Property detail#
- property OutputsPrepSamplingFft.time_tfs_sampled: ansys.dpf.core.outputs.Output[ansys.dpf.core.time_freq_support.TimeFreqSupport]#
Allows to get time_tfs_sampled output of the operator
Optimum sampled time domain TimeFreqSupport.
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.prep_sampling_fft() >>> # Get the output from op.outputs. ... >>> result_time_tfs_sampled = op.outputs.time_tfs_sampled()
- property OutputsPrepSamplingFft.freq_tfs_fft: ansys.dpf.core.outputs.Output[ansys.dpf.core.time_freq_support.TimeFreqSupport]#
Allows to get freq_tfs_fft output of the operator
Frequency domain TimeFreqSupport expected in output of FFT.
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.prep_sampling_fft() >>> # Get the output from op.outputs. ... >>> result_freq_tfs_fft = op.outputs.freq_tfs_fft()
Method detail#
- OutputsPrepSamplingFft.__str__()#