This module provides a collection of tools designed to streamline prototyping and analysis tasks in the field of electroacoustics. It consists of multiple modules, addressing specific aspects of loudspeaker-system design.
The main GitHub repository is located here. Examples are available in another repository. Documentation of the main repository is available on readthedocs.
- The following steps have been verified on Windows and Linux for Python versions 3.9 to 3.12. For macOS, only version 3.9 has been tested. However, in theory, any version of Python should work as long as all dependencies are available.
- You may want to try out different Python versions by creating multiple Conda environments.
The recommended installation method uses the Conda package manager for Python. You can install Conda through one of the following options:
- Anaconda: A full Python development suite that includes Spyder (IDE), Jupyter Notebook/Lab, and other tools.
- Windows: Use the Anaconda Prompt to follow the installation steps.
- macOS/Linux: Use your terminal (bash/zsh).
- Miniconda: A minimal version of Anaconda, including only the necessary packages for managing environments.
- Windows: Use the Miniconda Prompt for installation.
- macOS/Linux: Use your terminal (bash/zsh).
- Miniforge: A lightweight version similar to Miniconda, but community-driven, providing better architecture support (e.g., M1/M2 chips on macOS).
- Windows: Use the Miniforge Prompt for installation.
- macOS/Linux: Use your terminal (bash/zsh).
If you decide to manage your Python environments with conda, you can setup a specific environment for electroacPy as follow:
- Create the environment
conda create -n acoustic_sim
- Activate the environment
conda activate acoustic_sim
- Install a version of Python compatible with electroacPy, as well as the pip package manager
conda install python=3.12 pip
These 3 steps are all you need to do before installing electroacPy.
The easiest way to install electroacpy is to use the PyPI repository. In your Python/Conda environment:
pip install electroacPy
If however, you wish to install from source, you'll need first to download or clone the main repository --- here's a link to help you understand the process. Once you have downloaded what you need, you can use the following command (remember to be in your Python/Conda environment):
pip install /path/to/electroacPy
For development installation:
pip install -e /path/to/electroacPy
You'll need to replace /path/to/electroacPy
by the actual location of the toolbox on your computer --- pointing to the folder containing the "pyproject.toml" file. For example, if you use Windows, the path can look like this: C:\Users\yourUsername\Documents\GitHub\electroacPy
.
Using a separate environment: Installing ElectroacPy in its own Conda / Python environment is recommended. This helps prevent conflicts during updates and allows easier management of dependencies.
Selecting environments: In Python IDEs like Spyder or PyCharm, you can choose the specific Conda environment where ElectroacPy is installed.
If you plan to use Spyder:
You'll need to install spyder-kernels
in the newly created environment:
pip install spyder-kernels
Alternatively, you can install Spyder directly in the environment to avoid needing spyder-kernels
:
conda install spyder
In Windows and Linux, you can actually use the OpenCL backend to reduce computing time. In the corresponding Conda environment:
pip install pyopencl
You'll also need to install OpenCL drivers, which you'll find here for intel users. For more information, you can follow the OpenCL section from bempp-cl installation guide.
The ElectroacPy
module is a toolkit for prototyping loudspeaker systems using Lumped Element Method (LEM). It is also a set of wrappers for bempp-cl to solve acoustic radiation problems using Boundary Elements. It offers capabilities to design filters and crossover networks.
From bempp-cl website:
Bempp is an open-source computational boundary element platform to solve electrostatic, acoustic and electromagnetic problems. Features include:
- Easy-to-use Python interface.
- Support for triangular surface meshes.
- Import and export in a number of formats, including Gmsh and VTK.
- Easy formulation of acoustic and electromagnetic transmission problems.
- CPU and GPU parallelisation.
- A comprehensive operator algebra that makes it easy to formulate complex product operator formulations such as operator preconditioning.
- Coupled FEM/BEM computations via interfaces to FEniCS.
ElectroacPy's handbook can be found here. Full documentation is still in progress.
If you encounter any issues or have suggestions for improvements, please feel free to fork and contribute. You can submit issues, pull requests, or even share your usage examples.
This toolbox uses the bempp-cl library for Boundary Element Method computations, which is provided directly in this repo. Many thanks to its authors and contributors, without whom this toolbox wouldn't have been available in its current form.
This toolbox, ElectroacPy, is licensed under the GNU General Public License, Version 3 (GPLv3).
Certain parts of the source code use bempp-cl, which is licensed under the MIT License. The MIT-licensed portions remain under their original license.