Skip to content

Commit 5f78110

Browse files
authored
Sound Exposure Level (#388)
add sound exposure level (SEL) and SEL weighting
1 parent f361390 commit 5f78110

File tree

8 files changed

+1187
-624
lines changed

8 files changed

+1187
-624
lines changed

examples/acoustics_example.ipynb

Lines changed: 384 additions & 165 deletions
Large diffs are not rendered by default.

mhkit/acoustics/__init__.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,17 @@
1616
"""
1717

1818
from mhkit.acoustics import io, graphics
19-
from .analysis import *
19+
from .analysis import (
20+
minimum_frequency,
21+
sound_pressure_spectral_density,
22+
apply_calibration,
23+
sound_pressure_spectral_density_level,
24+
band_aggregate,
25+
time_aggregate,
26+
)
27+
from .spl import (
28+
sound_pressure_level,
29+
third_octave_sound_pressure_level,
30+
decidecade_sound_pressure_level,
31+
)
32+
from .sel import nmfs_auditory_weighting, sound_exposure_level

0 commit comments

Comments
 (0)