Skip to main content

Voxel-based structure simulation solvers

Project description

Python package

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

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

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

nvidia-smi

then install the CUDA-enabled JAX backend via (in this case for CUDA version 12)

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.

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
final_time = 100
steps = int(final_time/dt)

evo.run_cahn_hilliard_solver(
    vf, 'c', 'torch', jit=True, device='cuda',
    time_increment=dt, frames=10, max_iters=steps,
    verbose='plot', vtk_out=False, plot_bounds=(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.plot_slice("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.plot_field_interactive("c", direction='x', colormap='turbo')

License

This code has been published under the MIT licence.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

evoxels-0.1.0.tar.gz (31.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

evoxels-0.1.0-py3-none-any.whl (30.2 kB view details)

Uploaded Python 3

File details

Details for the file evoxels-0.1.0.tar.gz.

File metadata

  • Download URL: evoxels-0.1.0.tar.gz
  • Upload date:
  • Size: 31.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for evoxels-0.1.0.tar.gz
Algorithm Hash digest
SHA256 eed097dc178276aad57975384b138f2fa8b3a0cfa58f443e7956e0d30b1c0c0e
MD5 e4d97aea9f2ae629453f155d31736820
BLAKE2b-256 999d925e5c51c74586c0282c6984d18d373e22208143d6d31ca680573b0ad4b7

See more details on using hashes here.

File details

Details for the file evoxels-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: evoxels-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for evoxels-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ab4b211b20fc67930f02d6bae368577b0b82b787dcd374af3822437f1302b371
MD5 a05ba809b1ca2e6a1ffeeef88b33c7b5
BLAKE2b-256 da011e7b6d6142be9196d1510c0fec5c7b5448d6758ae699866b6decc967d3a5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page