SourceControlSpectrum#
- class ansys.sound.core.sound_composer.SourceControlSpectrum(duration=0.0, method=SpectrumSynthesisMethods.IFFT)#
Sound Composer’s spectrum source’s control class.
This class stores the source control (that is the sound duration and the sound generation method) used by the Sound Composer for generating the sound from a spectrum source.
Two sound generation methods are offered:
IFFT: sound generation method based on the Inverse Fast Fourier Transform of the input spectrum, using random phases.
Hybrid: sound generation method that combines generation of pure tones and IFFT. If peaks are detected in the input spectrum, they are generated as pure tones (sine waves). The rest is synthesized using the IFFT method.
Class instantiation takes the following parameters.
- Parameters:
- duration
float
, default: 0.0 Duration of the sound generated from the spectrum source, in seconds.
- method
SpectrumSynthesisMethods
, default:SpectrumSynthesisMethods.IFFT
Method to use for the sound generation: IFFT or Hybrid.
- duration
Methods
SourceControlSpectrum.convert_fields_container_to_np_array
(fc)Convert a DPF fields container to a NumPy array.
Get output.
Get output as a NumPy array.
Plot the output.
Process inputs.
Attributes
Duration of the generated sound, in seconds.
Method to use for the sound generation: IFFT or Hybrid.