Skip to content

TchoumTchoum/electroacPy

Repository files navigation

electroacPy

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

Examples are available in another repository. Documentation of the main repository is available on readthedocs.

Installation

Before Starting

  • The following steps have been verified on Windows and Linux for Python versions 3.9 to 3.11. 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 (see Step 1).

Setting Up Python with Conda

The recommended installation method uses the Conda package manager for Python. You can install Conda through one of the following options:

  1. 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).
  2. 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).
  3. 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).

Installation Steps

  1. Create a new Conda environment (recommended but optional):
conda create -n acoustic_sim
  1. Activate the environment:
conda activate acoustic_sim
  1. Install Python 3.11 and pip (you can adjust the Python version if needed):
conda install python=3.11 pip
  1. Install electroacPy:

For standard installation:

pip install /path/to/electroacPy

For development installation:

pip install -e /path/to/electroacPy

You'll need to replace /path/to/electroacPy to where the toolbox is cloned/extracted 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.

Notes

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.

Additional Steps for Spyder Users

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

OpenCL

In Windows and Linux, you can actually use the OpenCL backend to reduce computing time. In the corresponding Conda environment:

pip install pyopencl intel-opencl-rt

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.


Modules

electroacPy

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.

bempp-cl

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.

Documentation

ElectroacPy's handbook can be found here. Full documentation is still in progress.

Contributing

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.

Acknowledgments

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.

Licence

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.