transition-state

Transition State Methods

Transition state methods banner

NEB, dimer methods, and tools for finding reaction pathways on potential energy surfaces

Context

Transition states set the rates of chemical reactions - catalysis, diffusion, phase transitions all hinge on them. Two method families dominate the calculation, and both show up across my work.

Double-ended: Nudged Elastic Band

Nudged elastic band method diagram

NEB connects a known reactant to a known product. Images are distributed along the path and linked by spring forces; the climbing-image variant pushes the highest-energy image uphill to land on the saddle.

Single-ended: Dimer Method

Dimer method diagram

The dimer method needs only a starting geometry. A pair of configurations (the “dimer”) rotates to align with the softest Hessian eigenmode, then walks uphill along it. Two force evaluations per step, no product state required.

Adaptive CI-NEB + MMF hybrid

CI-NEB is reliable but spends most of its force evaluations on the final climb; MMF is cheap but can land on the wrong saddle if started too far from the transition basin. We combined them: run CI-NEB until the climbing image locks onto the right basin, then hand off to MMF to walk the rest of the way (Goswami, Gunde, and Jónsson 2026). A Bayesian regression on the Baker-Chan set with the PET-MAD machine-learned potential measures a median 57% reduction in energy and force evaluations (95% CrI: 50 to 64%) relative to standard CI-NEB, and 31% across 59 heptamer island transitions on Pt(111). A fixed force-cutoff switch at 0.5 eV/A costs 46% more force evaluations than the adaptive criterion - the switch point matters.

Reproducible NEB workflows

A full NEB run has four setup stages before the physics starts: endpoint minimization, structural alignment, path initialization, and band optimization. Most groups glue these together with one-off scripts that drift across projects and machines. We replaced the glue with a Snakemake workflow that couples PET-MAD to the eOn saddle search code and resolves every dependency from conda-forge (Goswami 2026a). The HCN to HNC isomerization validates end-to-end with no manual intermediate steps.

Path visualization

A one-dimensional energy profile discards all geometric context. We project the path into two dimensions using RMSD to a reference, then overlay reliability contours from uncertainty estimates so the viewer can see both the energy barrier and the structural neighborhood it traverses (Goswami 2026b).

Figure 1: Graphical abstract from the MethodsX 2D RMSD visualization paper (Goswami 2026b).

Figure 1: Graphical abstract from the MethodsX 2D RMSD visualization paper (Goswami 2026b).

Code

  • eOn – Lead maintainer; NEB and dimer method implementations
  • ASE – Contributor; eOn .con file I/O, NWChem writer, PDB handling

Tutorials

See also: engineering notes for the implementation under eOn in Software.

Open directions

  • Extending the Hessian-enhanced CI-NEB to work with SOAP-based ML potentials for automated discovery of reaction mechanisms in heterogeneous catalysis.
  • Unified benchmarking framework for path-finding methods (the BENCH CECAM initiative).
  • Combining single-ended and double-ended methods adaptively based on landscape topology.

References

Goswami, Rohit. 2026a. “Reproducible Orchestration of Best Practices for Reaction Path Optimization with the Nudged Elastic Band.” Methodsx, 103899. https://doi.org/10.1016/j.mex.2026.103899.
———. 2026b. “Two-Dimensional RMSD Projections for Reaction Path Visualization and Validation.” Methodsx, March, 103851. https://doi.org/10.1016/j.mex.2026.103851.
Goswami, Rohit, Miha Gunde, and Hannes Jónsson. 2026. “Enhanced Climbing Image Nudged Elastic Band Method with Hessian Eigenmode Alignment.”

← All research threads