SoundComposer#

class ansys.sound.core.sound_composer.SoundComposer(project_path='')#

Sound Composer project class.

This class creates a Sound Composer project. A project is made of several tracks, each containing a source, to generate the sound, and an optional filter, to model the transfer between the source and the receiver.

Class instantiation takes the following parameter.

Parameters:
project_pathstr, default: “”

Path to the Sound Composer project file to load (.scn).

Methods

SoundComposer.add_track(track)

Add a track to the project.

SoundComposer.convert_fields_container_to_np_array(fc)

Convert a DPF fields container to a NumPy array.

SoundComposer.get_output()

Get the generated signal of the Sound Composer project as a DPF field.

SoundComposer.get_output_as_nparray()

Get the generated signal of the Sound Composer project as a NumPy array.

SoundComposer.load(project_path)

Load a Sound Composer project.

SoundComposer.plot()

Plot the generated signal of the Sound Composer project.

SoundComposer.process([sampling_frequency])

Generate the signal of the current Sound Composer project.

SoundComposer.save(project_path)

Save the Sound Composer project.

Attributes

SoundComposer.tracks

List of tracks.