Metadata-Version: 2.4
Name: deism
Version: 2.2.1.13
Summary: An image source-based method used to simulate room transfer functions for arbitrary room shapes.
Home-page: https://github.com/audiolabs/DEISM
Author: Zeyu Xu
Author-email: Zeyu Xu <zeyu.xu@audiolabs-erlangen.de>
License: 
        © Copyright (2022) Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
        
        1. INTRODUCTION
        The Fraunhofer Software which means any source code, object code or binary files provided by Fraunhofer excluding third party
        software and materials, is made available under this Software Copyright License.
        
        2. COPYRIGHT LICENSE
        Internal use of the Fraunhofer Software, in source and binary forms, with or without modification, is permitted without payment
        of copyright license fees for non-commercial purposes of evaluation, testing and academic research.
        No right or license, express or implied, is granted to any part of the Fraunhofer Software except and solely to the extent as
        expressly set forth herein. Any commercial use or exploitation of the Fraunhofer Software and/or any modifications thereto under
        this license are prohibited.
        For any other use of the Fraunhofer Software than permitted by this software copyright license You need another license from
        Fraunhofer. In such case please contact Fraunhofer under the CONTACT INFORMATION below.
        
        3. LIMITED PATENT LICENSE
        If Fraunhofer patents are implemented by the Fraunhofer Software and You use the Fraunhofer Software in Germany, the use of
        those Fraunhofer patents for purposes of testing, evaluating and research and development is permitted within the statutory
        limitations of German patent law. However, if You use the Fraunhofer Software in a country where the use of patents for research
        and development purposes is not permitted without a license, you must obtain an appropriate license from Fraunhofer. It is Your
        responsibility to check the legal requirements for any use of applicable patents.
        Fraunhofer provides no warranty of patent non-infringement with respect to the Fraunhofer Software.
        
        4. DISCLAIMER
        The Fraunhofer Software is provided by Fraunhofer "AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, including but
        not limited to the implied warranties of fitness for a particular purpose. IN NO EVENT SHALL FRAUNHOFER BE LIABLE for any
        direct, indirect, incidental, special, exemplary, or consequential damages, including but not limited to procurement of substitute
        goods or services; loss of use, data, or profits, or business interruption, however caused and on any theory of liability, whether in
        contract, strict liability, or tort (including negligence), arising in any way out of the use of the Fraunhofer Software, even if advised
        of the possibility of such damage.
        
        5. CONTACT INFORMATION
        Fraunhofer Institute for Integrated Circuits IIS
        Am Wolfsmantel 33, 91058 Erlangen
        info@iis.fraunhofer.de
        
Project-URL: Homepage, https://github.com/audiolabs/DEISM
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==1.26
Requires-Dist: scipy
Requires-Dist: sympy
Requires-Dist: psutil
Requires-Dist: matplotlib
Requires-Dist: cython
Requires-Dist: pybind11>=2.2
Requires-Dist: ray
Requires-Dist: numba
Requires-Dist: sound-field-analysis
Requires-Dist: gmsh
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

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

[![DOI](https://zenodo.org/badge/666336301.svg)](https://doi.org/10.5281/zenodo.14055865)
[![Documentation Status](https://readthedocs.org/projects/deism/badge/?version=latest)](https://deism.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/deism.svg)](https://badge.fury.io/py/deism)

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](/docs/figures/scenario.png)

## 📚 Documentation

**[📖 Read the full documentation on Read the Docs](https://deism.readthedocs.io/)**

# Preparation and installing

DEISM supports Python versions 3.9, 3.10, and 3.11, and works on Windows, macOS, and Linux. You can install DEISM using either **Python virtual environments** or **Conda**.

## Check Python Version

First, verify you have Python 3.9, 3.10, or 3.11 installed. Click on your operating system below:

<details>
<summary><b>macOS</b></summary>

Open the Terminal by pressing 'Command+Spacebar' and searching for 'Terminal'. Once the Terminal is open, type:

```bash
python3 --version
```

> **Tip:** If you have not used the terminal before, you may be prompted to install Xcode Command Line Tools. Follow the prompts to install the package, then try the command again.

If you don't have Python or have an older version, download and install Python from [python.org](https://www.python.org/downloads/).

</details>

<details>
<summary><b>Linux/WSL</b></summary>

In your shell, run:

```bash
python3 --version
```

To check available Python versions for your distribution:

```bash
sudo apt update
apt show python3
```

If you need to install Python, run:

```bash
sudo apt install python3 python3-pip python3-venv
```

</details>

<details>
<summary><b>Windows</b></summary>

Open PowerShell by typing "PowerShell" in the Windows search bar. Once inside PowerShell, type:

```powershell
python3 --version
```

Alternatively, you can type `python` and press Enter to open the Microsoft Store's installation page for Python.

If you don't have Python or have an older version, download and install Python from [python.org](https://www.python.org/downloads/).

</details>

---

## Installation Method 1: Python Virtual Environment

### Install DEISM (End Users)

<details>
<summary><b>macOS</b></summary>

In the terminal, run:

```bash
# Create virtual environment (recommended location)
python3 -m venv ~/.venv/deism
source ~/.venv/deism/bin/activate

# Install DEISM
pip install --upgrade pip
pip install deism
```

</details>

<details>
<summary><b>Linux/WSL</b></summary>

In your shell, run:

```bash
# Create virtual environment (recommended location)
python3 -m venv ~/.venv/deism
source ~/.venv/deism/bin/activate

# Install DEISM
pip install --upgrade pip
pip install deism
```

</details>

<details>
<summary><b>Windows</b></summary>

In PowerShell, run:

```powershell
# Create virtual environment (recommended location)
python -m venv C:\Users\<YourUsername>\venvs\deism
C:\Users\<YourUsername>\venvs\deism\Scripts\Activate.ps1

# Install DEISM
python -m pip install --upgrade pip
pip install deism
```

> **Tip:** If you get an execution policy error, run PowerShell as Administrator and execute:
> ```powershell
> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
> ```

</details>

### Install DEISM (Developers)

<details>
<summary><b>macOS</b></summary>

In the terminal, run:

```bash
# Clone repository
git clone https://github.com/audiolabs/DEISM.git
cd DEISM

# Create virtual environment (recommended location)
python3 -m venv ~/.venv/deism_dev
source ~/.venv/deism_dev/bin/activate

# Install in editable mode
pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
```

</details>

<details>
<summary><b>Linux/WSL</b></summary>

In your shell, run:

```bash
# Clone repository
git clone https://github.com/audiolabs/DEISM.git
cd DEISM

# Create virtual environment (recommended location)
python3 -m venv ~/.venv/deism_dev
source ~/.venv/deism_dev/bin/activate

# Install in editable mode
pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
```

</details>

<details>
<summary><b>Windows</b></summary>

In PowerShell, run:

```powershell
# Clone repository
git clone https://github.com/audiolabs/DEISM.git
cd DEISM

# Create virtual environment (recommended location)
python -m venv C:\Users\<YourUsername>\venvs\deism_dev
C:\Users\<YourUsername>\venvs\deism_dev\Scripts\Activate.ps1

# Install in editable mode
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
```

</details>

---

## Installation Method 2: Conda Environment

### Install DEISM (End Users)

**All Platforms:**
```bash
# Create conda environment
conda create -n deism python=3.9
conda activate deism

# Install DEISM
pip install --upgrade pip
pip install deism
```

### Install DEISM (Developers)

**All Platforms:**
```bash
# Clone repository
git clone https://github.com/audiolabs/DEISM.git
cd DEISM

# Create conda environment from file
conda env create -f deism_env.yml
conda activate DEISM

# Install in editable mode
pip install -e .
```

**Alternative:** If `deism_env.yml` doesn't work, try the exact versions file:
```bash
conda env create -f deism_env_exact.yml
conda activate DEISM
pip install -e .
```

---

## Build Tools Requirements

DEISM compiles C++ extensions during installation. You'll need a C++ compiler. Click on your operating system:

<details>
<summary><b>macOS</b></summary>

Install Xcode Command Line Tools:

```bash
xcode-select --install
```

</details>

<details>
<summary><b>Linux/WSL</b></summary>

**Ubuntu/Debian:**
```bash
sudo apt-get update
sudo apt-get install build-essential g++ python3-dev
```

**RHEL/CentOS/Fedora:**
```bash
sudo yum install gcc-c++ python3-devel
```

</details>

<details>
<summary><b>Windows</b></summary>

**Option 1:** Install [MinGW-w64](https://www.mingw-w64.org/downloads/) and add to PATH

**Option 2:** Install [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/) (select "C++ build tools" during installation)

</details>

> **Note:** If the compiler is missing, DEISM will still install but the optional `count_reflections` C++ library won't be compiled (Python fallback will be used).

---

## Troubleshooting

**PowerShell execution policy error (Windows):**
```powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
```

**"g++: command not found" (Linux/macOS):**
- Linux: `sudo apt-get install build-essential`
- macOS: `xcode-select --install`

**"ModuleNotFoundError: No module named 'pybind11'":**
```bash
pip install pybind11>=2.2
pip install deism  # or pip install -e .
```

**Conda environment issues:**
- If you encounter errors with `deism_env.yml`, try `deism_env_exact.yml` which contains exact package versions
- Ensure conda is up to date: `conda update conda`

## 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](https://matplotlib.org/stable/users/explain/text/usetex.html). 

# 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. 
1. 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).
1. The sampled pressure field at the specified directions and frequencies. A 2D array with size (number of frequencies, number of directions).
1. 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
- Anjana Rajasekhar

 

# Academic publications

If you use this package in your research, please cite [our paper](https://doi.org/10.1121/10.0023935):

> 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.



[^Euler]: https://mathworld.wolfram.com/EulerAngles.html
