Safe noise dose chart
How to compute
function maxExposure(level, REL = 85, rate = 3) {
return 480 / Math.pow(2, (level - REL) / rate);
}
OSHA sets the REL
for 8 hours (480 minutes) at 90 dB(A), and the exchange rate at 5 dB. NIOSH is more stringent, with a REL
of 85 db(A) and the exchange rate at 3 dB.