File: idpp.rst

package info (click to toggle)
python-ase 3.26.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,484 kB
  • sloc: python: 148,112; xml: 2,728; makefile: 110; javascript: 47
file content (67 lines) | stat: -rw-r--r-- 2,840 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.. _idpp_tutorial:

==============================================================================
Image Dependent Pair Potential for improved interpolation of NEB initial guess
==============================================================================

Reference: S. Smidstrup, A. Pedersen, K. Stokbro and H. Jonsson,
Improved initial guess for minimum energy path calculations,
J. Chem. Phys. 140, 214106 (2014).

Use of the NEB method is dependent upon generating an initial guess 
for the images lying between the initial and final states. The most 
simple approach is to use linear interpolation of the 
atomic coordinates. However, this can be problematic as the quality 
of the interpolated path can ofter be far from the real one. The implication being
that a lot of time is spent in the NEB routine optimising the shape of
the path, before the transition state is homed-in upon. 

The image dependent pair potential is a method that has been 
developed to provide an improvement to the initial guess for the NEB path. 
The IDPP method uses the bond distance between the atoms involved in 
the transition state to create target structures for the images, rather
than interpolating the atomic positions. By defining an objective function in terms
of the distances between atoms, the NEB algorithm is used with this 
image dependent pair potential (IDPP) to create the initial guess for the
full NEB calculation.

Note: The examples below utilise the EMT calculator for illustrative purposes, the
results should not be over interpreted. 

Example 1: Ethane 
=================

This example illustrates the use of the IDPP interpolation scheme to 
generate an initial guess for rotation of a methyl group around the CC bond. 

Using the standard linear interpolation approach, as in the following example, we can see
that 46 iterations are required to find the transition state.

.. literalinclude:: idpp1.py

However if we modify our script slightly and use the IDPP method to find the initial
guess, we can see that the number of iterations required to find the transition
state is reduced to 14. 

.. literalinclude:: idpp2.py

Clearly, if one was using a full DFT calculator one can
potentially gain a significant time improvement.

Example 2: N diffusion over a step edge
=======================================

Often we are interested in generating an initial guess for a surface reaction. 
This example illustrates how we can optimise our initial and final state structures
before using the IDPP interpolation to generate our initial guess 
for the NEB calculation:

.. literalinclude:: idpp3.py

To again illustrate the potential speedup, the following script which
uses the linear interpolation takes 23 iterations to find a transition
state, compared to 12 using the IDPP interpolation. 

.. literalinclude:: idpp4.py