evoxels: A differentiable physics framework for voxel-based microstructure simulations
evoxels: A differentiable physics framework for voxel-based microstructure simulations - Published in JOSS (2026)
Science Score: 87.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 1 DOI reference(s) in JOSS metadata -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Repository
Differentiable physics framework for voxel-based microstructure simulations
Basic Info
Statistics
- Stars: 21
- Watchers: 0
- Forks: 1
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
evoxels
A differentiable physics framework for voxel-based microstructure simulations
For more detailed information about the code read the docs.

``` In a world of cubes and blocks, Where reality takes voxel knocks, Every shape and form we see, Is a pixelated mystery.
Mountains rise in jagged peaks, Rivers flow in blocky streaks. So embrace the charm of this edgy place, Where every voxel finds its space ```
Description
evoxels are not static — they evolve, adapt, and reveal. Whether you're modeling phase transitions, predicting effective properties, or coupling imaging and simulation — evoxels is the GPU-native, differentiable core that keeps pace with your science.
Materials science inherently spans disciplines: experimentalists use advanced microscopy to uncover micro- and nanoscale structure, while theorists and computational scientists develop models that link processing, structure, and properties. Bridging these domains is essential for inverse material design where you start from desired performance and work backwards to optimal microstructures and manufacturing routes. Integrating high-resolution imaging with predictive simulations and data‐driven optimization accelerates discovery and deepens understanding of process–structure–property relationships
From a high-level perspective, evoxels is organized around two core abstractions: VoxelFields and VoxelGrid. VoxelFields provides a uniform, NumPy-based container for any number of 3D fields on the same regular grid, maximizing interoperability with image I/O libraries (e.g. tifffile, h5py, napari, scikit-image) and visualization tools (PyVista, VTK). VoxelGrid couples these fields to either a PyTorch or JAX backend, offering pre-defined boundary conditions, finite difference stencils and FFT libraries.
The evoxels package enables large-scale forward and inverse simulations on uniform voxel grids, ensuring direct compatibility with microscopy data and harnessing GPU-optimized FFT and tensor operations. This design supports forward modeling of transport and phase evolution phenomena, as well as backpropagation-based inverse problems such as parameter estimation and neural surrogate training - tasks which are still difficult to achieve with traditional FEM-based solvers. This differentiable‐physics foundation makes it easy to embed voxel‐based solvers as neural‐network layers, train generative models for optimal microstructures, or jointly optimize processing and properties via gradient descent. By keeping each simulation step fast and fully backpropagatable, evoxels enables data‐driven materials discovery and high‐dimensional design‐space exploration.
Installation
TL;DR
bash
conda create --name voxenv python=3.12
conda activate voxenv
pip install "evoxels[torch,jax,dev,notebooks]"
pip install --upgrade "jax[cuda12]"
The package is available on pypi but can also be installed by cloning the repository
git clone git@github.com:daubners/evoxels.git
and then locally installing in editable mode. It is recommended to install the package inside a Python virtual environment so that the dependencies do not interfere with your system packages. Create and activate a virtual environment e.g. using miniconda
bash
conda create --name myenv python=3.12
conda activate myenv
Navigate to the evoxels folder, then
pip install -e .[torch] # install with torch backend
pip install -e .[jax] # install with jax backend
pip install -e .[dev,notebooks] # install testing and notebooks
Note that the default [jax] installation is only CPU compatible. To install the corresponding CUDA libraries check your CUDA version with
bash
nvidia-smi
then install the CUDA-enabled JAX backend via (in this case for CUDA version 12)
bash
pip install -U "jax[cuda12]"
To install both backends within one environment it is important to install torch first and then upgrade the jax installation e.g.
bash
pip install "evoxels[torch,jax,dev,notebooks]"
pip install --upgrade "jax[cuda12]"
To work with the example notebooks install Jupyter and all notebook related dependencies via
pip install -e .[notebooks]
Launch the notebooks with
jupyter notebook
If you are using VSCode open the Command Palette and select
"Jupyter: Create New Blank Notebook" or open an existing notebook file.
Usage
Example of creating a voxel field object and running a Cahn-Hilliard simulation based on a semi-implicit FFT approach
``` import evoxels as evo import numpy as np
nx, ny, nz = [100, 100, 100]
vf = evo.VoxelFields((nx, ny, nz), (nx,ny,nz)) noise = 0.5 + 0.1*np.random.rand(nx, ny, nz) vf.add_field("c", noise)
dt = 0.1 finaltime = 100 steps = int(finaltime/dt)
evo.runcahnhilliardsolver(
vf, 'c', 'torch', jit=True, device='cuda',
timeincrement=dt, frames=10, maxiters=steps,
verbose='plot', vtkout=False, plotbounds=(0,1)
)
As the simulation is running, the "c" field will be overwritten each frame. Therefore, ``vf.fields["c"]`` will give you the last frame of the simulation. This code design has been chosen specifically for large data such that the RAM requirements are rather low.
For visual inspection of your simulation results, you can plot individual slices (e.g. slice=10) for a given direction (e.g. x)
vf.plotslice("c", 10, direction='x', colormap='viridis')
or use the following code for interactive plotting with a slider to go through the volume
%matplotlib widget
vf.plotfieldinteractive("c", direction='x', colormap='turbo')
```
License
This code has been published under the MIT licence.
JOSS Publication
evoxels: A differentiable physics framework for voxel-based microstructure simulations
Authors
Tags
materials science differentiable physics phase-field method microstructureGitHub Events
Total
- Release event: 1
- Delete event: 7
- Pull request event: 9
- Issues event: 1
- Watch event: 11
- Issue comment event: 2
- Push event: 21
- Create event: 5
Last Year
- Release event: 1
- Delete event: 7
- Pull request event: 9
- Issues event: 1
- Watch event: 11
- Issue comment event: 2
- Push event: 21
- Create event: 5
Issues and Pull Requests
Last synced: 5 months ago
All Time
- Total issues: 1
- Total pull requests: 5
- Average time to close issues: 38 minutes
- Average time to close pull requests: about 2 hours
- Total issue authors: 1
- Total pull request authors: 1
- Average comments per issue: 0.0
- Average comments per pull request: 0.0
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 5
- Average time to close issues: 38 minutes
- Average time to close pull requests: about 2 hours
- Issue authors: 1
- Pull request authors: 1
- Average comments per issue: 0.0
- Average comments per pull request: 0.0
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- daubners (1)
Pull Request Authors
- daubners (5)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 162 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 4
- Total maintainers: 1
pypi.org: evoxels
Differentiable physics framework for voxel-based microstructure simulations
- Documentation: https://evoxels.readthedocs.io/
- License: MIT
-
Latest release: 1.0.0
published 4 months ago
