LevelOverTime#
- class ansys.sound.core.standard_levels.LevelOverTime(signal=None, scale='dB', reference_value=1.0, frequency_weighting='', time_weighting='Fast')#
Compute the level over time.
This class computes the level over time of a signal.
Class instantiation takes the following parameters.
- Parameters:
- signal
Field
, default:None
The signal to process.
- scale
str
, default: “dB” The scale type of the output level. Available options are “dB” and “RMS”.
- reference_value
float
, default: 1.0 The reference value for the level computation. If the overall level is computed with a signal in Pa, the reference value should be 2e-5.
- frequency_weighting
str
, default: “” The frequency weighting to apply to the signal before computing the level. Available options are “”, “A”, “B”, and “C”, respectively to get level in dBSPL, dB(A), dB(B), and dB(C). Note that the frequency weighting is only applied if the attribute
scale
is set to “dB”.- time_weighting
str
, default: “Fast” The time weighting to use when computing the level over time. Available options are “Fast”, “Slow”, “Impulse”, and “Custom”. When “Custom” is selected, the user can provide custom parameters using the method
set_custom_parameters()
.
- signal
Methods
Convert a DPF fields container to a NumPy array.
Return the maximum level.
Return the level over time.
Return the maximum level and level over time.
Return the maximum level, level over time, and time scale.
Return the time scale.
Plot the level over time.
Compute the overall level.
Set the custom parameters for the time weighting.
Attributes
Frequency weighting of the computed level.
Reference value for the level computation.
Scale type of the output level.
Input signal.
Time weighting of the computed level.