LoudnessISO532_2#

class ansys.sound.core.psychoacoustics.LoudnessISO532_2(signal=None, field_type='Free', recording_type='Mic')#

Computes ISO 532-2:2017 loudness.

This class computes the binaural and monaural loudness of a signal according to the ISO 532-2:2017 standard, corresponding to the “Moore-Glasberg method”.

Class instantiation takes the following parameters.

Parameters:
signalField | FieldsContainer, default: None

Signal in Pa on which to compute loudness. If signal is a Field, the listening assumption is diotic (same signal presented at both ears). If signal is a FieldsContainer, with exactly 2 fields, the listening assumption is dichotic (each field’s signal presented at each ear).

field_typestr, default: “Free”

Sound field type. Available options are “Free” and “Diffuse”.

recording_typestr, default: “Mic”

Recording type. Available options are “Mic” for a single microphone and “Head” for a head and torso simulator.

Methods

LoudnessISO532_2.convert_fields_container_to_np_array(fc)

Convert a DPF fields container to a NumPy array.

LoudnessISO532_2.get_binaural_loudness_level_phon()

Get the binaural loudness level in phon.

LoudnessISO532_2.get_binaural_loudness_sone()

Get the binaural loudness in sone.

LoudnessISO532_2.get_binaural_specific_loudness()

Get the binaural specific loudness.

LoudnessISO532_2.get_erb_center_frequencies()

Get the ERB center frequencies in Hz.

LoudnessISO532_2.get_erbn_numbers()

Get the ERBn-number scale in Cam.

LoudnessISO532_2.get_monaural_loudness_level_phon()

Get the monaural loudness level in phon at each ear.

LoudnessISO532_2.get_monaural_loudness_sone()

Get the monaural loudness in sone at each ear.

LoudnessISO532_2.get_monaural_specific_loudness()

Get the monaural specific loudness at each ear.

LoudnessISO532_2.get_output()

Get the binaural and monaural loudness, loudness level, and specific loudness.

LoudnessISO532_2.get_output_as_nparray()

Get loudness data in a tuple of NumPy arrays.

LoudnessISO532_2.plot()

Plot the binaural specific loudness.

LoudnessISO532_2.process()

Compute the loudness.

Attributes

LoudnessISO532_2.field_type

Sound field type.

LoudnessISO532_2.recording_type

Recording type.

LoudnessISO532_2.signal

Input sound signal in Pa.