Example: Transition state search with the CINEB method: HCN

Download HCN_CINEB.run

#! /bin/sh

# This example demonstrates the use of the Nudged Elastic Band method in ADF for
# finding a transition state of the HCN isomerisation reaction. A shell script
# used to run the example calculation is shown below:

# A few important points to note:

# Symmetry is set to Cs explicitly because all images must have the same
# symmetry but symmetry of the reaction products is higher, C_infty. Thus, it is
# necessary to lower the overall symmetry to match the lowest.

# In the GEOVAR section, there are six values specified for the coordinates of
# the hydrogen atom. This is necessary in order to bring the initial guess for
# the reaction path closer to the final result. Moreover, if only two values for
# YH were specified (0.0 and 0.0) then the hydrogen atom would be 'dragged'
# along the C-N bond leading to unrealistic geometries and, eventually, to a
# failure.

# In the GEOMETRY section of the input, the number of NEB images is set to 9;
# the convergence criterion is lowered to 0.001; optimization of only the
# coordinates specified in the GEOVAR block is requested;

# the NEB spring parameter is set to a constant (energy-independent) value of
# 0.06 a.u.. The choice of the parameter depends on the stiffness of the bonds
# involved in the reaction and the value of the parameter should, in principle,
# be of about the same magnitude as the Hessian eigenvalue for the coordinates
# participating in the reaction.


$ADFBIN/adf <<eor
TITLE Test of the CI-NEB method

SYMMETRY C(S)

ATOMS
    1.C         0.000000    0.000000    0.000000
    2.N         XN          0.000000    0.000000
    3.H         XH          YH          0.000000
END

GEOVAR
XN      1.180  1.163     
XH      2.196  1.831 1.006 0.105 -0.718 -1.078    
YH      0.000  0.799 1.122 1.163  0.813  0.000
END

BASIS
END

GEOMETRY
  CINEB      9
  OPTIM selected
  converge grad=0.0005
  iterations 100
  NEBOptEnds False
END

SCF
  Converge 0.00000001
END

eor

mv TAPE21 HCN_CINEB.t21

$ADFBIN/adf <<eor
TITLE Test of the CI-NEB method, optimize reaction initial and final states too

SYMMETRY C(S)

ATOMS
    1.C         0.000000    0.000000    0.000000
    2.N         XN          0.000000    0.000000
    3.H         XH          YH          0.000000
END

GEOVAR
XN      1.180  1.163
XH      2.196  1.831 1.006 0.105 -0.718 -1.078
YH      0.000  0.799 1.122 1.163  0.813  0.000
END

FRAGMENTS
  H t21.H
  C t21.C
  N t21.N
END

GEOMETRY
  CINEB      9
  OPTIM selected
  converge grad=0.0005
  iterations 100
END

SCF
  Converge 0.00000001
END

eor

mv TAPE21 HCN_CINEB_fullopt.t21