Loudness Detection Threshold
Thresholds table
Frequency (Hz) | Loudness (dBFS) |
---|
There's a exponential relationship that relates to loudness: When we make a sound a certain amount of decibels louder, the underlying sound wave's peak amplitude grows exponentially.
The specific formula for the decibel level of a sound wave is
The a
here is the amplitude of the wave and a0
is the amplitude of the reference wave - the sound we are anchoring to. In dB SPL (the mosquito three meters away) a0
is 0.00002
, and in dBFS (which we commonly use in Web Audio) it is 1
. In the latter case the formula conveniently simplifies to
d = 20 * log10(a)
.
We can also flip the formula around, so that if we know the desired decibel level (dBFS), we can get the corresponding amplitude from that:
a = 10d/20
What these formulas are saying is that as we increase the decibel level d
, the sound wave amplitude grows very quickly, by a factor of 10d
. Or, conversely, as we increase the amplitude, the decibel level grows more slowly than that. We need a large change in amplitude to get an audible difference in the sound level.