Skip to main content

Acoular Logo

PyPI PyPI Actions status DOI

Acoular

Acoular is a Python module for acoustic beamforming that is distributed under the BSD 3-clause license.

It is aimed at (but not limited to) applications in acoustic testing. Multichannel data recorded by microphone arrays can be processed and analyzed to generate mappings of sound source distributions. The maps (acoustic photographs) can then be used to locate sources of interest and to characterize them using their spectra.

👁️📢 Please consider taking the Acoular User Survey. It only takes 2 minutes.

Highlights

  • frequency domain methods:
    • beamforming: delay & sum, Capon (adaptive), MUSIC, functional and eigenvalue beamforming
    • deconvolution: DAMAS, DAMAS+, Clean, CleanSC, (gridless) orthogonal deconvolution
    • inverse methods: CMF (covariance matrix fitting), general inverse beamforming, SODIX
  • time domain methods:
    • beamforming: delay & sum
    • deconvolution: CleanT
  • 1D, 2D and 3D mapping grids for all methods
  • arbitrary stationary background 🌬️ flow can be considered for all methods
  • frequency domain methods for 🌀 rotating sources via virtual array rotation for arbitrary arrays
  • all time domain methods can identify 🚂🛩️ moving sources with arbitrary trajectory
  • flexible & modular 🧮 signal processing:
    • n-th octave band filters
    • fast, slow, and impulse weighting
    • A-, C-, and Z-weighting
    • filter bank
    • linear phase filters
  • intelligent and transparent :floppy_disk: caching: computed results are automatically saved and loaded on the next run to avoid unnecessary re-computation.
  • 🦥 lazy evaluation: while processing blocks are set up at any time, (expensive) computations are only performed when needed.
  • 🏎️ efficient & parallel (multithreaded) computation with Numba for most algorithms.

Citing

If you use Acoular for academic work, please consider citing both our publication:

Sarradj, E., & Herold, G. (2017). 
A Python framework for microphone array data processing.
Applied Acoustics, 116, 50–58. 
https://doi.org/10.1016/j.apacoust.2016.09.015

and our software:

Sarradj, E., Herold, G., Kujawski, A., Jekosch, S., Pelling, A. J. R., Czuchaj, M., Gensch, T., & Oertwig, S..
Acoular – Acoustic testing and source mapping software. 
Zenodo. https://zenodo.org/doi/10.5281/zenodo.3690794

Installation

Acoular can be installed from PyPI. It is recommended to use a virtual environment. Inside the environment, run

pip install acoular

A second option is to install Acoular with conda. It is recommended to install into a dedicated conda environment. After activating the environment, run

conda install -c acoular acoular

For more detailed installation instructions, see the documentation.

Documentation and help

Documentation is available here with a getting started section and examples.

If you discover problems with the Acoular software, please report them using the issue tracker on GitHub. Please use the Acoular discussions forum for practical questions, discussions, and demos.

Example

This reads data from 64 microphone channels and computes a beamforming map for the 8kHz third octave band:

from pathlib import Path

import acoular as ac
import matplotlib.pylab as plt

# this file contains the microphone coordinates
micgeofile = Path(ac.__file__).parent / 'xml' / 'array_64.xml'
# set up object managing the microphone coordinates
mg = ac.MicGeom(file=micgeofile)
# generate test data, in real life this would come from an array measurement
p = ac.demo.create_three_sources(mg, h5savefile='three_sources.h5')
# set up object managing the microphone array data (usually from measurement)
ts = ac.TimeSamples(file='three_sources.h5')
# set up object managing the cross spectral matrix computation
ps = ac.PowerSpectra(source=ts, block_size=128, window='Hanning')
# alternatively, you can use the in-memory Mixer object directly:
# ps = ac.PowerSpectra( source=p, block_size=128, window='Hanning' )
# set up object managing the mapping grid
rg = ac.RectGrid(x_min=-0.2, x_max=0.2, y_min=-0.2, y_max=0.2, z=-0.3, increment=0.01)
# set up steering vector, implicitely contains also the standard quiescent
# environment with standard speed of sound
st = ac.SteeringVector(grid=rg, mics=mg)
# set up the object managing the delay & sum beamformer
bb = ac.BeamformerBase(freq_data=ps, steer=st)
# request the result in the 8kHz third octave band from approriate FFT-Lines
# this starts the actual computation (data intake, FFT, Welch CSM, beamforming)
pm = bb.synthetic(8000, 3)
# compute the sound pressure level
Lm = ac.L_p(pm)
# plot the map
plt.imshow(Lm.T, origin='lower', vmin=Lm.max() - 10, extent=rg.extent, interpolation='bicubic')
plt.title('Beamformer (base) for 3 sources measured for 8000 Hz')
plt.xlabel('x in m')
plt.ylabel('y in m')
plt.colorbar(label=r'$L_p$')
plt.savefig('three_sources.png', dpi=300, bbox_inches='tight')
plt.show()

result

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acoular-26.8.tar.gz (170.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

acoular-26.8-py3-none-any.whl (194.4 kB view details)

Uploaded Python 3

File details

Details for the file acoular-26.8.tar.gz.

File metadata

  • Download URL: acoular-26.8.tar.gz
  • Upload date:
  • Size: 170.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for acoular-26.8.tar.gz
Algorithm Hash digest
SHA256 4a1aa2db1f954f4ba931bfc8092819e415a7a33f5af4e6b03fa337e1f7cdc38f
MD5 f8529bb3d32c7242f007d44d9a88fe23
BLAKE2b-256 b7b1c04b4c915984a075b0dc982de7fd4780d9d1893b663d9a65bf44963ff952

See more details on using hashes here.

File details

Details for the file acoular-26.8-py3-none-any.whl.

File metadata

  • Download URL: acoular-26.8-py3-none-any.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for acoular-26.8-py3-none-any.whl
Algorithm Hash digest
SHA256 506f3ec3bb003b0d379d5ced8a2dce8f85c9c331dc80fe5dd3b12c25325a9abe
MD5 0061d91cc1bcfbd753e53da5ea15ed01
BLAKE2b-256 1f91e090dd6e48bb4ca36f0fa4161f20f60538913b5ee02761f0431858f6762c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page