ToneToNoiseRatioForOrdersOverTime#

class ansys.sound.core.psychoacoustics.ToneToNoiseRatioForOrdersOverTime(signal=None, profile=None, order_list=None)#

Computes the ECMA 418-1/ISO 7779 tone-to-noise ratio (TNR) for specific orders over time.

This class computes the TNR, as defined in ECMA 418-1 and ISO 7779 standards, following specific orders over time in a given time-domain signal and its RPM signal.

Class instantiation takes the following parameters.

Parameters:
signalField, default: None

Signal on which to compute tone-to-noise ratio.

profileField, default: None

RPM profile corresponding to the input signal.

order_listlist, default: None

List of the order numbers, as floats, on which to compute the tone-to-noise ratio.

Methods

ToneToNoiseRatioForOrdersOverTime.convert_fields_container_to_np_array(fc)

Convert a DPF fields container to a NumPy array.

ToneToNoiseRatioForOrdersOverTime.get_order_tone_to_noise_ratio_over_time(...)

Get the tone-to-noise ratio over time for a specific order.

ToneToNoiseRatioForOrdersOverTime.get_output()

Get TNR data over time and its associated RPM profile.

ToneToNoiseRatioForOrdersOverTime.get_output_as_nparray()

Get TNR data in a tuple of NumPy arrays.

ToneToNoiseRatioForOrdersOverTime.get_rpm_scale()

Get the RPM scale corresponding to the TNR array over time.

ToneToNoiseRatioForOrdersOverTime.get_time_scale()

Get the time scale corresponding to the TNR array over time.

ToneToNoiseRatioForOrdersOverTime.plot([...])

Plot all orders’ TNR over time or RPM.

ToneToNoiseRatioForOrdersOverTime.process()

Compute the tone-to-noise ratio for orders.

Attributes

ToneToNoiseRatioForOrdersOverTime.order_list

Orders list as floats.

ToneToNoiseRatioForOrdersOverTime.profile

RPM over time related to the input signal.

ToneToNoiseRatioForOrdersOverTime.signal

Input signal.