Skip to content

How is the intensity in decibel computed? #62

Discussion options

You must be logged in to vote

Hi, @vijaygirish2001. Yes, the threshold is 4.0e-10 (or 2.0e-5 squared). The relevant part of Praat's code is here:

const double intensity_in_Pa2 = double (sumxw / sumw);
constexpr double hearingThreshold_in_Pa = 2.0e-5;
constexpr double hearingThreshold_in_Pa2 = sqr (hearingThreshold_in_Pa);
const double intensity_re_hearingThreshold = intensity_in_Pa2 / hearingThreshold_in_Pa2;
const double intensity_in_dB_re_hearingThreshold = ( intensity_re_hearingThreshold < 1.0e-30 ? -300.0 :
10.0 * log10 (intensity_re_hearingThreshold) );

The Praat manual also very shortly describes i…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by YannickJadoul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants