xpektra is a Python library that provides a modularframework for spectral methods. xpektra provide fundamental mathematical building blocks which can be used to construct complex spectral methods. It is built on top of JAX and Equinox, making it easy to use spectral methods in a differentiable way.
xpektra is distributed under the GNU Lesser General Public License v3.0 or later. See COPYING and COPYING.LESSER for the complete terms. © 2025 ETH Zurich (Mohit Pundir).
- Modular building blocks for spectral methods which can be easily combined to create complex solid mechanics problems.
- Extensible design allowing users to define their own operators and spaces such as Fourier-Galerkin, Moulinec and Suquet, Displacement-based, etc.
- Differentiable operations using JAX
- Implicit differentiation support which allows for computationally efficient Homogenization and Multiscale simulations.
Install the current release from PyPI:
pip install xpektraFor development work, clone the repository and install it in editable mode (use your preferred virtual environment tool such as uv or venv):
git clone https://github.com/smec-ethz/xpektra.git
cd xpektra
pip install -e .xpektra provides modular blocks by defining a few operators and spaces that can be used to construct complex spectral methods. These operators and spaces are:
SpectralSpace: Defines the spectral space on which the methods are defined, this includes the FFT, IFFT, and other spectral transforms.TensorOperator: Defines the tensor operator which performs tensor operations on quantities living on the grid, the operator automatically figures out the order of the tensor.Scheme: Defines the scheme for discretization which is then used to construct the gradient operator. Currently,CartesianSchemeis the only scheme available but one can easily define new schemes by subclassing theSchemeclass.make_field: Defines the field on which the methods are defined, this includes the field operations and the field creation.ProjectionOperator: Defines the projection operator which projects the stress field onto the spectral space. Currently,GalerkinProjectionis the only projection operator available but one can easily define new projection operators by subclassing theProjectionOperatorclass.
Check the Live Benchmark Dashboard to see the performance of xpektra at Live Benchmark Dashboard.
If you have a suggestion that would make this better, please fork the repo and create a pull request on github.com/smec-ethz/xpektra. Please use that repository to open issues or submit merge requests. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request