Skip to main content

An image source-based method used to simulate room transfer functions for arbitrary room shapes.

Project description

Diffraction Enhanced Image Source Method - Arbitrary Room Geometry (DEISM-ARG)

DOI

The code in this folder is able to solve the following problem:

A source and a receiver transducer with arbitrary directivity are mounted on one/two speakers; The local scattering and diffraction effects around the transducers result in complex directivity patterns. The directivity patterns can be obtained by analytical expressions, numerical simulations or measurements.

In DEISM-ARG, we can model the room transfer function between transducers mounted on one/two speakers using the image source method while incorporating the local diffraction effects around the transducers. The local diffraction effects are captured using spherical-harmonic directivity coefficients obtained on a sphere around the transducers. In addition to DEISM in shoebox rooms, DEISM-ARG can model more complex room shapes. However, for version 2.0, we now only supports convex shapes. In short, DEISM-ARG has the following features:

  1. Arbitrary directivities of the source and receiver
  2. Angle-dependent reflection coefficients, frequency- and wall-dependent impedance definition.
  3. Convex room shapes

image-20240812131054348

Preparation and installing

Build locally

  • In you encounter errors like "unrecognized arguments: deism_envs_exact.yml", please type the following commands manuelly in the command line.
  • Clone or download the repository to your local directory
  • Use the command conda env create -f deism_env.yml to create a Conda environment for the DEISM algorithms. If this does not work, try conda env create -f deism_env_exact.yml as the file deism_envs_exact.yml records the versions of all packages.
  • Activate the created environment by "conda activate DEISM"
  • Running pip install -e . will build the deism package including the c++ extensions locally. You can also modify the sources codes and check out the effects. In case you receiver errors like "ModuleNotFoundError: No module named 'pybind11" even after activated the conda environment, you can use python -m pip install -e . to try install again.
  • Run scripts in the examples folder.

Using pip to install remotely

  • Run pip install deism to install deism.

Additional heads up

  • You would need to an external LaTeX installation to render text properly when running the examples, since we enable plt.rcParams["text.usetex"] = True when plotting the simulated room transfer functions. Please refer to this page for more information Matplotlib usetex Documentation.

Running codes

Single set of parameters

The default parameters are defined in file configSingleParam.yml or configSingleParam_ARG.yml, depending on whether you want to run for shoebox rooms or more complicated room shapes. Take DEISM-ARG (configSingleParam_ARG.yml) as an example, there are two ways of running the codes:

  1. You can directly run deism_arg_singleparam_example.py in an IDE, which utilizes the parameters defined in configSingleParam_arg.yml.
  2. You can run deism_arg_singleparam_example.py from the command line after activating the conda environment. In addition, you can access help information quickly by python deism_arg_singleparam_example.py --help. You can then change the parameters based on the instructions from the help message, e.g., python deism_arg_singleparam_example.py -c 350 -zs 20 will change the parameter sound speed and the wall impedance. The new input value of the parameters then overrides the ones in file configSingleParam_arg.yml. After choosing the needed values, you can run the codes using, e.g., python deism_arg_singleparam_example.py -c 350 -zs 20 --run.
  3. You need to specify additionally the following parameters in the function init_parameters of deism_arg_singleparam_example.py:
    1. The vertices of the room
    2. If rotate the room w.r.t the origin. This can be useful if you want to have some comparisons with the rooms created using pyroomacoustics.
    3. The rotation angles of the room if it needs to be rotated.
  4. You can suppress all output information in the command line by adding flag "--quiet" or by setting the first parameters in the configuration.yml file SilentMode to 1.

Examples

DEISM-ARG

  • An example of running DEISM-ARG is examples/deism_arg_single_example.py
    • You can run this from IDEs or via the command line, as introduced in the previous section
  • An example of comparing different versions of DEISM-ARG is given in examples/deism_args_compare.py. A frequency- and wall-dependent impedance definition can also be applied for a convex room. The room transfer functions are compared among:
    • Original version (most computation-costly)
    • LC version (fastest)
    • Mix version (Trade-offs between Original and LC versions): Early reflections up to some changeable order (default is 2) are calculated using the original version and the higher orders are calculated using the LC version.
  • An example of comparing DEISM-ARG and pyroomacoustics is examples/deism_arg_pra_compare.py, Comparisons are done regarding if the following results are identical or mismatched only by a small deviation:
    • number of images
    • the positions of the images

DEISM for shoebox

We provide two examples for running the original DEISM for shoebox rooms

  • An example of running DEISM-shoebox is examples/deism_singleparam_example.py
    • You can either run this from IDEs or via the cmd
  • An example of comparing different DEISM versions are shown in examples/deisms_lc_mix_test.py. In this script, the following methods are compared
    • DEISM - original
    • DEISM - MIX (original + LC vectorized)
    • DEISM - LC vectorized
    • FEM as groundtruth (only for this specific parameter settings)

Tips

The example code only provides essential functionalities based on DEISM. For more complex scenarios, please contact the authors (zeyu.xu@audiolabs-erlangen.de) for support. In the following, a few important tips might be helpful for you:

  • If you want to simulate the scenario where both the source and receiver are positioned on the same speaker, you need to run DEISM for all reflection path except for the direct path.
  • It is recommended to set the distance at least 1m between the transducers and the walls.

Directivities

Modeling the directivities of the source and receiver in the room acoustics simulation is receiving increasing attention. The directivities of the source or receiver can include both the transducer directional properties and the local diffraction and scatterring effects caused by the enclosure where the transducers are mounted. Modern smart speakers are typical embodiments of such scenarios. Human heads are also a very common case.

Simple directivities

  • Monopole

Arbitrary directivities

Some key information should be provided if you want to include your own directivity data:

  1. Frequencies at which the directivities are simulated or measured. A 1D array.
  2. The spherical sampling directions around the transducer: azimuth from $0$ ( $+x$ direction) to $2 \pi$, inclination angle from $0$ ($+z$ direction) to $\pi$. A 2D array with size (number of directions, 2).
  3. The sampled pressure field at the specified directions and frequencies. A 2D array with size (number of frequencies, number of directions).
  4. The radius of the sampling sphere. A 1D array or float number.

For more information about directivity definition used in DEISM and DEISM-ARG, please refer to the following publication:

Zeyu Xu, Adrian Herzog, Alexander Lodermeyer, Emanuël A. P. Habets, Albert G. Prinn; Acoustic reciprocity in the spherical harmonic domain: A formulation for directional sources and receivers. JASA Express Lett. 1 December 2022; 2 (12): 124801. https://doi.org/10.1121/10.0016542

Contributors

  • M. Sc. Zeyu Xu
  • Songjiang Tan
  • M. Sc. Hasan Nazım Biçer
  • Dr. Albert Prinn
  • Prof. Dr. ir. Emanuël Habets

Academic publications

If you use this package in your research, please cite our paper:

Zeyu Xu, Adrian Herzog, Alexander Lodermeyer, Emanuël A. P. Habets, Albert G. Prinn; Simulating room transfer functions between transducers mounted on audio devices using a modified image source method. J. Acoust. Soc. Am. 1 January 2024; 155 (1): 343–357. https://doi.org/10.1121/10.0023935

Z. Xu, E.A.P. Habets and A.G. Prinn; Simulating sound fields in rooms with arbitrary geometries using the diffraction-enhanced image source method, Proc. of International Workshop on Acoustic Signal Enhancement (IWAENC), 2024.

Description of the codes and functions

configSingleParam_ARG.yml

In this file you define the default parameters for DEISM-ARG to run. Note that this file is different from the configSingleParam.yml on these parameters:

  • The dimensions are defined separately in the example script.
  • You also need to specify if you want to rotate the room, and the rotation angles as well.

configSingleParam.yml

In this file you define the default parameters for DEISM-shoebox to run.

Project details


Download files

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

Source Distribution

deism-2.1.0.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

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

deism-2.1.0-cp311-cp311-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.11Windows x86-64

deism-2.1.0-cp311-cp311-macosx_11_0_universal2.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

deism-2.1.0-cp311-cp311-macosx_10_9_universal2.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

deism-2.1.0-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10Windows x86-64

deism-2.1.0-cp310-cp310-macosx_13_0_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

deism-2.1.0-cp310-cp310-macosx_11_0_universal2.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

deism-2.1.0-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9Windows x86-64

deism-2.1.0-cp39-cp39-macosx_13_0_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file deism-2.1.0.tar.gz.

File metadata

  • Download URL: deism-2.1.0.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for deism-2.1.0.tar.gz
Algorithm Hash digest
SHA256 b0279800c38827c585b728c6cbc9eab666ebb58e4aaa452227c96d7b69df5698
MD5 4876bfa400370bc11c9126a9b406c1c4
BLAKE2b-256 ebe4f17c96af046dce0c94981ba3694ab0a6a10c0718ab040dbaef4072554fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for deism-2.1.0.tar.gz:

Publisher: python-publish.yml on audiolabs/DEISM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deism-2.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: deism-2.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for deism-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52c70a791f32b59cd191b6b8136b0659608db6d7446474f58c75f8867ed8d910
MD5 b17e08ed6439e09ab7071c5cc6283f4e
BLAKE2b-256 ecc6b2ce75aedd15ae57edd8b1588e007348e5d648d017c7c156f61d673d0d3d

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for deism-2.1.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 dc387778ac02582da4be674caf83192470778f31ab35a5245275b70801130e2e
MD5 40f776705b8ed444a2f751e85bfb0cc5
BLAKE2b-256 f356b9e758b1fa0ef7bad345e51aae9395520926b6c697bc18d9368b9239c75c

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for deism-2.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7774250d642ae06f76f0cc8abe93e53b11120756cd082759c03e8b0c1030b886
MD5 256394a51ff734f8555cf927ccc24feb
BLAKE2b-256 89b1e3f2fd589f9be3b266709053029cd36c5dd754cd474ada0ce47366a72b23

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: deism-2.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for deism-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 305b56868313200ce1727daeb24216a9d47d8d9f8c45eb808ef56d113939fdae
MD5 2375ec08085dc156f5dcabb338496fbb
BLAKE2b-256 77e950bba982303522e8e9c0837b21cd61ea1050b88bae75f26088a00ba00533

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for deism-2.1.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5814c965b06daaf8a5aea08bfd6286f6ee22ca6964b965682eb80536daed55e4
MD5 441938fe47f39d26df301fad0e601b74
BLAKE2b-256 2a26aef29fbe911522c8745664dd41616d1963fcd2b9f0f339ff3911c7510d20

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for deism-2.1.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 7da51c06f57f83e8d07a5b1a4abb39c978f6c1a29b53902ab4980e366bab4bc2
MD5 abb7856d9dc308e36a67e6ae68de3efc
BLAKE2b-256 9fb195c78c567b4b5c00fccc1029babb0fe687d4ac1e894c2339e123c2b167ae

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: deism-2.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for deism-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 912f4974a4b0bb3787f76a23ce4ecdad67f4277f89d27796700f73772671318c
MD5 3e14fd916b797f03cb2155eaeece26c0
BLAKE2b-256 e986145b162527dbdefe1bafb2828b2e5ca20112d9093cb6da0ed06c19e2f55a

See more details on using hashes here.

File details

Details for the file deism-2.1.0-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for deism-2.1.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 439e476b3680aa26a1b9d99efe9db1ccad00a9c9557a26867dac7ea7fa7488f7
MD5 897881dc43329cd388d1bb5e35e2d82d
BLAKE2b-256 13e956d128f716f1cbada15052b83783adde5791e2c589d2a045a35855faf049

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 Pingdom Monitoring Sentry Error logging StatusPage Status page