Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Transition State Theory

In materials science, we’re often interested not just in stable states (minima on the potential energy surface) but also in the transition states that connect them. Transition states are saddle points on the potential energy surface, representing the energy barrier that must be overcome for a system to move from one stable state to another. Examples include:

Knowing the energy of the transition state (the activation energy) is crucial for understanding the kinetics of these processes. The minimum energy path (MEP) is the path connecting two minima that passes through the transition state with the lowest possible energy barrier. The Nudged Elastic Band (NEB) method is a powerful technique for finding the MEP.

Nudged Elastic Band Method

The potential energy surface showing stable states, transition states, and the minimum energy path (MEP). In NEB, a series of images are used to represent the path between the initial and final states. The forces perpendicular to the band are projected to find the MEP.

The potential energy surface showing stable states, transition states, and the minimum energy path (MEP). In NEB, a series of images are used to represent the path between the initial and final states. The forces perpendicular to the band are projected to find the MEP.

NEB creates a series of intermediate configurations (“images”) between the initial and final states, forming a “band” or “chain” of states. These images are connected by fictitious “springs,” and the forces acting on the images are carefully modified to guide the band towards the MEP.

Algorithm

  1. Initialization: Create a set of N images (including the initial and final states) along an initial guess for the path. A simple linear interpolation between the initial and final states is often used as the starting point. Denote the positions of the images as R1,R2,...,RNR_1, R_2, ..., R_N, where R1R_1 is the initial state and RNR_N is the final state.

  2. Spring Forces: Introduce spring forces between adjacent images. These forces tend to keep the images evenly spaced along the band. The spring force on image i is given by:

    Fis=k(Ri+1RiRiRi1)τi\mathbf{F}_i^s = k (|\mathbf{R}_{i+1} - \mathbf{R}_i| - |\mathbf{R}_i - \mathbf{R}_{i-1}|) \boldsymbol{\tau}_i

    where kk is the spring constant (a parameter that controls the strength of the spring forces), Ri+1Ri|\mathbf{R}_{i+1} - \mathbf{R}_i| is the distance between image *i-and image i+1, and τi\boldsymbol{\tau}_i is the unit tangent vector to the band at image i.

    A common approximation for the tangent is: τi=Ri+1Ri1Ri+1Ri1\boldsymbol{\tau}_i = \frac{\mathbf{R}_{i+1} - \mathbf{R}_{i-1}}{|\mathbf{R}_{i+1} - \mathbf{R}_{i-1}|}. More sophisticated tangent estimates are also used (see below).

  3. Force Projection: This is the crucial step that distinguishes NEB from a simple elastic band method. The true forces acting on each image (the negative gradient of the potential energy, V(Ri)-\nabla V(\mathbf{R}_i)) are projected to prevent the band from simply sliding down to the initial or final minima.

    • Calculate true force: Fi=V(Ri)F_i = - \nabla V(R_i).

    • Project out the parallel component of the true force: The component of the true force parallel to the band is removed. This prevents the images from sliding down along the band towards the minima. The force perpendicular to the band is: Fi=V(Ri)+(V(Ri)τi)τi=V(Ri)\mathbf{F}_i^{\perp} = -\nabla V(\mathbf{R}_i) + (\nabla V(\mathbf{R}_i) \cdot \boldsymbol{\tau}_i) \boldsymbol{\tau}_i = -\nabla V(\mathbf{R}_i)|_{\perp}

    • Project out the perpendicular component of the spring force: The component of the spring force perpendicular to the band is removed. This allows the band to find the MEP without being constrained to a straight line.

  4. Total Force: The total force acting on image i is the sum of the projected true force and the projected spring force: Fi=Fi+Fis\mathbf{F}_i = \mathbf{F}_i^{\perp} + \mathbf{F}_i^s

  5. Optimization: The positions of the images (excluding the fixed initial and final states) are updated by moving them in the direction of the total force. This can be done using any standard optimization algorithm, such as:

    • Gradient Descent: Rinew=Riold+αFi\mathbf{R}_i^{new} = \mathbf{R}_i^{old} + \alpha \mathbf{F}_i

    • Velocity Verlet: A common choice in molecular dynamics simulations.

    • BFGS or other quasi-Newton methods: Can be more efficient than gradient descent.

  6. Iteration: Repeat steps 3-5 until the forces on the images are sufficiently small (i.e., the system has converged to the MEP).

Climbing Image NEB (CI-NEB):

The standard NEB method tends to distribute images evenly along the MEP, which can result in poor resolution around the transition state. The Climbing Image NEB (CI-NEB) modification addresses this issue.

In CI-NEB, the image with the highest potential energy is identified (the “climbing image”). The spring forces acting on this image are removed, and the component of the true force parallel to the band is inverted. This drives the climbing image up the potential energy surface towards the saddle point.