Physical motivation
The equation of state (EOS) of a crystal describes how its total energy changes as a function of unit cell volume. Its key output is the bulk modulus B₀ (in GPa), which measures a material’s resistance to uniform compression. A model that correctly predicts EOS curves demonstrates:- Accurate energy derivatives with respect to volume (related to pressure)
- Consistent behavior under both compression and tension
- Physically plausible response for crystal structures spanning a wide range of chemistries
What is measured
For each structure in the WBM dataset, the benchmark:- Relaxes the structure to its equilibrium geometry using the MLIP
- Applies isotropic volumetric strains from −10% to +10% around the relaxed volume (11 points by default)
- Computes the energy at each strained volume
- Fits a Birch-Murnaghan EOS to extract B₀, the equilibrium volume V₀, and the equilibrium energy E₀
mlip_arena.tasks.eos using pymatgen.analysis.eos.BirchMurnaghan.
Dataset
The benchmark uses structures from the WBM dataset (Wang, Bai, and Materials Project). The compiled structures are stored inbenchmarks/wbm_structures.db as an ASE database file.
The WBM dataset contains materials predicted to be thermodynamically stable by a high-throughput DFT screening workflow. It spans a broad range of elemental compositions and crystal symmetries.
Metrics
The leaderboard reports the following per-structure metrics, aggregated across all evaluated structures:The
tortuosity and energy-diff-flip-times metrics are model-architecture-agnostic proxies for physical consistency. A physically correct EOS curve should be smooth and convex near the minimum, with no oscillations.Model support
The following models support this benchmark (gpu-tasks: eos_bulk in the model registry):
How to run
The benchmark uses Prefect for parallel orchestration and Dask-JobQueue for dispatch to SLURM clusters.1
Configure your cluster
Edit the SLURM cluster settings in Adjust
benchmarks/eos_bulk/run.py to match your HPC environment. The defaults allocate 1 GPU per node with 64 GB RAM and a 30-minute wall time.minimum_jobs and maximum_jobs based on the number of structures and models you want to run.2
Run the benchmark
benchmarks/eos_bulk/<ModelName>.parquet.3
Analyze results
summary.csv and summary.tex with per-model aggregate statistics.To plot the EOS curves for individual structures:Interpreting results
A model with good EOS performance shows:- Low tortuosity — the energy curve is smooth without oscillations between sampled volumes
- Zero energy-diff-flip-times — the energy decreases monotonically under compression and increases monotonically under tension, as physics requires
- Spearman correlation near +1 (compression) and −1 (tension) — the model correctly predicts that compressing a crystal raises its energy and expanding it also raises its energy
- Low missing rate — the model can process diverse crystal structures without numerical failures
energy-diff-flip-times or a tortuosity significantly above 1.0 indicates that the model’s energy surface is non-convex, which will cause instabilities in geometry optimization and MD simulations.