Skip to main content

Minimal Nudged Elastic Band (NEB) implementation for ASE-compatible calculators

Project description

nebwalk

CI PyPI Python License: MIT

nebwalk is a lightweight, transparent, ASE-compatible Nudged Elastic Band (NEB/CI-NEB) library for minimum-energy paths, transition-state barriers, and diffusion mechanisms in atomistic simulations.

It is designed for fast prototyping with classical and machine-learned calculators, while remaining compatible with DFT backends through ASE.

pip install nebwalk

Current source version: v0.9.0.

Note for maintainers: if PyPI still shows an older release after pushing this README, publish the v0.9.0 distribution with the commands in the release section below. The source package metadata is already set to 0.9.0.


Why nebwalk?

nebwalk focuses on one task: making NEB workflows simple, inspectable, and calculator-agnostic.

It is useful when you want to:

  • build and optimize minimum-energy paths;
  • run standard NEB or climbing-image NEB;
  • switch between EMT, MACE-MP-0, Egret-1t, Quantum ESPRESSO, VASP, or any ASE-compatible calculator;
  • prototype surface diffusion, vacancy migration, adsorbate hopping, and molecular conformational changes;
  • export profiles as plots, CSV files, and ASE trajectories;
  • keep the NEB implementation transparent enough to inspect, test, and modify.

This is not a black-box workflow manager. It is a compact research-code layer around ASE calculators and atomic structures.


Features in v0.9.0

  • Standard NEB and climbing-image NEB (CI-NEB).
  • Improved tangent estimate following Henkelman and Jónsson.
  • Perpendicular potential-force projection and spring-force projection.
  • FIRE optimizer, suitable for the non-conservative NEB force field.
  • Linear, IDPP, and regularized geodesic-style interpolation.
  • Minimum-image-convention-aware interpolation and NEB forces for periodic systems.
  • Variable spring constants to concentrate images near high-energy regions.
  • High-level run_neb_calculation() API with calculator factories.
  • Thread-based parallel image evaluation.
  • Restart from ASE .traj files with fresh calculator instances.
  • Energy-profile plotting, CSV export, and .traj output.
  • Quantum ESPRESSO helper layer through ASE calculator construction.
  • Automatic failed-image recovery for Quantum ESPRESSO image calculations: convergence failures and geometry instabilities can be retried with logged recovery attempts; non-retryable process failures stop immediately.

Installation

Stable installation from PyPI

pip install nebwalk

Optional MACE support:

pip install "nebwalk[mace]"

Check the installed version:

python -c "import nebwalk; print(nebwalk.__version__ if hasattr(nebwalk, '__version__') else 'installed')"

Latest source from GitHub

pip install git+https://github.com/Rifat19R/nebwalk.git

Development installation

git clone https://github.com/Rifat19R/nebwalk.git
cd nebwalk
pip install -e ".[dev]"
pytest tests/ -v

Quick start

from ase.calculators.emt import EMT
from nebwalk import NEBRunConfig, run_neb_calculation

initial = ...  # relaxed ase.Atoms endpoint
final = ...    # relaxed ase.Atoms endpoint

config = NEBRunConfig(
    n_images=7,
    interpolation="idpp",
    k=0.1,
    k_min=0.033,
    climb=True,
    climb_delay=50,
    fmax=0.05,
    max_steps=500,
)

result = run_neb_calculation(
    initial=initial,
    final=final,
    calculator_factory=lambda: EMT(),
    config=config,
)

print(f"Converged       : {result.converged}")
print(f"Barrier         : {result.barrier:.3f} eV")
print(f"Reverse barrier : {result.reverse_barrier:.3f} eV")
print(f"Reaction energy : {result.reaction_energy:.3f} eV")

result.neb.plot("profile.png")
result.neb.save_csv("profile.csv")
result.neb.save_trajectory("path.traj")

The calculator factory must return a fresh calculator instance. Do not share one ASE calculator object across all images.


Example with MACE-MP-0

from mace.calculators import mace_mp
from nebwalk import NEBRunConfig, run_neb_calculation

def make_calc():
    return mace_mp(
        model="medium",
        dispersion=False,
        default_dtype="float64",
        device="cpu",  # use "cuda" if available
    )

config = NEBRunConfig(
    n_images=5,
    interpolation="idpp",
    k=0.5,
    climb=True,
    climb_delay=50,
    fmax=0.03,
    max_steps=1000,
)

result = run_neb_calculation(initial, final, make_calc, config)

MACE-MP-0 is a PBE-level foundation model. It can be excellent for rapid prototyping, but absolute barriers should be validated against DFT or experiment for the specific chemistry.


What materials can nebwalk handle?

nebwalk operates on ASE Atoms objects, so the practical materials space is defined by the calculator you attach.

Currently demonstrated or directly supported workflow classes include:

Class Examples
Molecular paths H3 Morse benchmark, ethane torsion
Surface diffusion Al/Cu/Ni/Pd/Ru slab adsorbate hopping, H on Cu(111)
Bulk vacancy migration fcc metals, hcp Mg, simple oxides
Ionic migration MgO, Li2O-style vacancy/interstitial paths
2D/slab systems MXenes, MAX phases, graphene-derived slabs, catalytic surfaces
DFT-backed systems Quantum ESPRESSO via ASE calculator helpers

The code is calculator-agnostic. The scientific reliability of any result still depends on the chosen calculator, pseudopotentials, k-points, slab thickness, coverage, spin state, and convergence settings.


Benchmark spotlight: H diffusion on Cu(111)

A reproducible benchmark is included in:

benchmarks/h_cu111_mace_mp/

The measured result uses MACE-MP-0 with a 4×4×4 Cu(111) slab, one H adatom (1/16 ML), 15 Å vacuum, bottom two Cu layers fixed, IDPP interpolation, and CI-NEB.

Elementary fcc → hcp hop

Quantity Result
Calculator MACE-MP-0 small
Path fcc hollow → bridge-like TS → hcp hollow
Internal images 5
Converged True
Wall time 2.67 min
Forward barrier 125.92 meV
Reverse barrier 136.67 meV
Reaction energy −10.75 meV
TS image 3

The profile is a clean single-saddle elementary hop:

image 00:   +0.000 meV   fcc initial
image 01:  +44.614 meV
image 02: +111.234 meV
image 03: +125.917 meV   transition state
image 04: +104.770 meV
image 05:  +33.294 meV
image 06:  -10.749 meV   hcp final

fcc → fcc full hop

A longer fcc-to-fcc hop also converged. It shows the expected two-saddle sequence:

fcc → bridge TS → hcp hollow → bridge TS → fcc
Quantity Result
Calculator MACE-MP-0 small
Internal images 7
Converged True
Wall time 6.42 min
Forward barrier 125.56 meV
Reverse barrier 125.41 meV
Reaction energy +0.146 meV

This confirms endpoint equivalence and path symmetry.

Interpretation

The Cu(111) benchmark validates the NEB workflow: endpoint handling, minimum-image interpolation, CI-NEB optimization, image-energy reporting, and profile export. The absolute MACE barrier should not be overinterpreted as an experimental activation energy. Experiments on H/Cu(111) report macroscopic diffusion behavior affected by thermal activation, quantum effects, coverage, and surface morphology. MACE-MP-0 is trained to reproduce PBE-level energetics, so a lower static flat-terrace barrier is expected.


Validated results

14 systems validated across 4 calculators. Every error is attributed to the calculator, not the algorithm — reaction energy (endpoint ΔE) is verified near zero for all symmetric hops.

System Calculator Barrier Reference Error
Morse H3 collinear Morse (analytical) 0.200 eV 0.193 eV (exact) 4%
Al adatom / Al(100) EMT 0.237 eV ~0.40 eV (DFT-PBE) finite-size slab
Cu adatom / Cu(100) EMT 0.418 eV ~0.40 eV (DFT-LDA/exp.) 4.6%
Ni adatom / Ni(100) EMT 0.555 eV ~0.63 eV (DFT-GGA) 12%§
Ethane C–C torsion Egret-1t 0.113 eV 0.126 eV (exp.) 10%
Al vacancy / FCC Al MACE-MP-0 0.508 eV 0.61 eV (DFT-PBE) 17%†
Mg vacancy / HCP Mg MACE-MP-0 0.508 eV ~0.52 eV (DFT-PBE) 2%
Li vacancy / Li₂O MACE-MP-0 0.284 eV ~0.28 eV (DFT-GGA) 1.4%
Mg vacancy / MgO MACE-MP-0 2.254 eV ~2.20 eV (DFT-PBE) 2.5%
Cu vacancy / FCC Cu EMT 0.755 eV ~0.70 eV (DFT-PBE) 7.9%
Ni vacancy / FCC Ni EMT 1.095 eV ~1.04 eV (DFT-PBE) 5.3%
Pd vacancy / FCC Pd EMT 0.839 eV ~0.91 eV (DFT-PBE) 7.8%
Ag vacancy / FCC Ag EMT 0.682 eV ~0.66 eV (DFT-PBE) 3.3%
Cu adatom Cu(100) EMT 0.418 eV ~0.44 eV (DFT-PBE) 4.6%
Ni adatom Ni(100) EMT 0.555 eV ~0.63 eV (DFT-PBE) 12%§
Li vacancy Li₂O MACE-MP-0 0.284 eV 0.28 eV (DFT-GGA) 1.4%
Mg vacancy MgO MACE-MP-0 2.254 eV ~2.2 eV (DFT-PBE) 2.5%
H/Cu(111) MACE-MP-0 0.126 eV ~0.15 eV (DFT-PBE) ~16%¶
Pt vacancy / FCC Pt EMT 0.971 eV ~1.49 eV (DFT-PBE) 34.8%‡

† MACE-MP-0 systematically underestimates vacancy migration barriers by 10–20%. Known model limitation, not a nebwalk bug.

‡ EMT does not capture relativistic effects in Pt. NEB converged cleanly in 60 steps — error is from the calculator.

§ Ni adatom on Ni(100): 12% vs DFT-PBE. Reflects EMT surface-energy anisotropy; NEB converged cleanly.

¶ H/Cu(111): surface diffusion benchmark. Error reflects MACE-MP-0 surface accuracy limitations, not a library bug.

§ EMT underestimates Ni adatom barriers due to strong d-band character at the Ni(100) saddle-point geometry. Profile shape and convergence correct.


Other examples

python examples/morse_h3.py
python examples/al_diffusion_emt.py
python examples/ethane_egret.py
python examples/al_vacancy_macemp.py
python examples/mg_vacancy_macemp.py
python examples/li2o_vacancy_macemp.py
python examples/cu_adatom_cu100_emt.py
python examples/ni_adatom_ni100_emt.py
python examples/mg_vacancy_mgo_macemp.py
python examples/al_diffusion_qe.py
python examples/al_vacancy_qe.py

For a clean Al vacancy QE rerun, remove stale partial QE outputs through the script's explicit clean flag:

export ESPRESSO_PSEUDO=$HOME/pseudo
export AL_PSEUDO=Al.pbe-n-kjpaw_psl.1.0.0.UPF
export ESPRESSO_COMMAND="pw.x"
export NEBWALK_QE_CLEAN=1
python examples/al_vacancy_qe.py
tail -f al_vacancy_qe.log

Some calculators are intentionally optional. Egret-1t model files and MACE model weights are not distributed with this repository.


Quantum ESPRESSO Interface

nebwalk includes a built-in interface to Quantum ESPRESSO via nebwalk.qe. Use this for production NEB calculations where universal MLIPs are out of distribution — surface reactions, MXene catalysis, MAX phase defects.

In v0.9.0, QE factories attach QERecoveryStrategy by default. During NEB image evaluation, retryable failures are classified and retried up to three times. Clean runs keep the reproducibility shape unchanged; failed retry attempts are available through neb.recovery_log.

from nebwalk import run_neb_calculation, NEBRunConfig
from nebwalk.qe import QEParams, make_qe_factory, validate_qe_setup

params = QEParams(
    ecutwfc                = 60.0,       # plane-wave cutoff (Ry)
    ecutrho                = 480.0,      # 8× ecutwfc for PAW
    kpts                   = (4, 4, 1), # k-point grid for metal slab
    occupations            = "smearing",
    smearing               = "marzari-vanderbilt",
    degauss                = 0.02,
    nspin                  = 2,          # required for Fe, Co, Ni, Mn
    starting_magnetization = {1: 0.5},   # species 1 = 50% spin-up
)

# Validates pw.x binary and all UPF files exist before starting
validate_qe_setup(
    pseudo_dir       = "/path/to/pseudo",
    pseudopotentials = {"Fe": "Fe.pbe-spn-kjpaw_psl.1.0.0.UPF",
                        "N":  "N.pbe-n-radius_5.UPF"},
    command          = "pw.x",
)

# Each image gets an independent subdirectory — prevents wavefunction conflicts
factory = make_qe_factory(
    params           = params,
    pseudo_dir       = "/path/to/pseudo",
    pseudopotentials = {"Fe": "Fe.pbe-spn-kjpaw_psl.1.0.0.UPF",
                        "N":  "N.pbe-n-radius_5.UPF"},
    base_dir         = "neb_qe_workdir",
    command          = "pw.x",   # or "mpirun -np 4 pw.x"
)

result = run_neb_calculation(
    initial            = initial,
    final              = final,
    calculator_factory = factory,
    config             = NEBRunConfig(n_images=7, climb=True, fmax=0.05),
)
print(f"Barrier: {result.barrier:.3f} eV")

QEParams key parameters:

Parameter Default Notes
ecutwfc 40.0 Plane-wave cutoff (Ry). Check your pseudopotential's recommended value.
ecutrho 320.0 Charge density cutoff (Ry). Use 8× ecutwfc for USPP/PAW, 4× for NC.
kpts (1,1,1) k-point grid. (1,1,1) for molecules; (4,4,1) for metal slabs.
nspin 1 Set to 2 for magnetic systems (Fe, Co, Ni, Mn). Required — not optional.
starting_magnetization None Dict of {species_index: value}. Required when nspin=2.
conv_thr 1e-8 SCF convergence threshold (Ry). Tight convergence reduces NEB force noise.

Requirements: Quantum ESPRESSO ≥ 6.8, pw.x in PATH, UPF pseudopotential files. Recommended set: SSSP Efficiency (PBE).

See examples/template_qe_neb.py for a complete annotated template and examples/al_vacancy_qe.py for a concrete Al vacancy QE/PBE benchmark script.


Testing

pip install -e ".[test]"
pytest tests/ -v

The test suite (106 tests) covers interpolation, NEB force projection, tangent construction, minimum-image convention handling, variable springs, parallel image evaluation, restart helpers, calculator-factory workflows, and QE failed-image recovery.


Roadmap

Short-term priorities:

  1. Keep PyPI, GitHub tags, and source metadata synchronized for v0.9.x releases.
  2. Expand DFT-backed Quantum ESPRESSO benchmarks with small inputs and clear cost warnings.
  3. Add post-NEB transition-state refinement using a dimer method.
  4. Build a documentation site with theory, API usage, calculator setup, and benchmarks.

Long-term priorities:

  • dimer/RFO transition-state refinement;
  • imaginary-mode validation utilities;
  • better benchmark provenance files;
  • larger measured MACE-medium/large CPU/GPU parallel-scaling benchmarks;
  • more surface diffusion and ionic migration examples.

Release checklist for maintainers

Use this when publishing a new release:

python -m pip install --upgrade build twine
rm -rf dist/ build/ *.egg-info
python -m build
python -m twine check dist/*
python -m twine upload dist/*
git tag -a v0.9.0 -m "nebwalk v0.9.0"
git push origin main --tags

After release:

pip install --upgrade nebwalk
python -c "import nebwalk; print(nebwalk.__version__ if hasattr(nebwalk, '__version__') else 'installed')"

References

  1. H. Jónsson, G. Mills, K. W. Jacobsen, Nudged Elastic Band Method for Finding Minimum Energy Paths of Transitions, World Scientific, 1998.
  2. G. Henkelman and H. Jónsson, Improved tangent estimate in the nudged elastic band method for finding minimum energy paths and saddle points, J. Chem. Phys. 113, 9978 (2000).
  3. G. Henkelman, B. P. Uberuaga, and H. Jónsson, A climbing image nudged elastic band method for finding saddle points and minimum energy paths, J. Chem. Phys. 113, 9901 (2000).
  4. E. Bitzek, P. Koskinen, F. Gähler, M. Moseler, and P. Gumbsch, Structural Relaxation Made Simple, Phys. Rev. Lett. 97, 170201 (2006).
  5. S. Smidstrup, A. Pedersen, K. Stokbro, and H. Jónsson, Improved initial guess for minimum energy path calculations, J. Chem. Phys. 141, 214106 (2014).
  6. MACE-MP-0 documentation and foundation model papers for ML-potential context.
  7. H/Cu(111) diffusion literature should be treated as macroscopic diffusion reference, not a one-to-one static NEB barrier target.

License

MIT License. See LICENSE.

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

nebwalk-0.9.0.tar.gz (45.6 kB view details)

Uploaded Source

Built Distribution

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

nebwalk-0.9.0-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file nebwalk-0.9.0.tar.gz.

File metadata

  • Download URL: nebwalk-0.9.0.tar.gz
  • Upload date:
  • Size: 45.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for nebwalk-0.9.0.tar.gz
Algorithm Hash digest
SHA256 d35e2b6a54b6e93e00933bcb42a4c960a26be4d613b05b68f6878b254b67f356
MD5 4bef4e467e544f2805a50cc16fb82392
BLAKE2b-256 daaeee446b3245041fea68de2ac102a53f4f01bf3e86872c3e03d187c3cbbf79

See more details on using hashes here.

File details

Details for the file nebwalk-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: nebwalk-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for nebwalk-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c5db1dd12a4b9626c93a323bba86a5c725c479ce333c8ffc732f65ba8d8276f1
MD5 84e058630fe1dcdd4a338ea4812b915a
BLAKE2b-256 b3c215d575709e922e6b006f959e112ffde4486f50c26e2544a4106a61d618cf

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