Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Latest commit

 

History

History
105 lines (81 loc) · 3.18 KB

enzyme_TS_cp2k_V.md

File metadata and controls

105 lines (81 loc) · 3.18 KB

V - TS optimization with the Dimer method


&GLOBAL
    RUN_TYPE GEO_OPT
...


In this section, we use the dimer method to optimize the geometry of the TS guess:

  • With the TYPE TRANSITION_STATE keyword we specify a transition state optimization in the &MOTION/&GEO_OPT section.

&MOTION
    &GEO_OPT
        TYPE TRANSITION_STATE
    ...

  • We use a conjugate gradients algorithm for the geometry optimization.

&MOTION
    &GEO_OPT
        ...
        OPTIMIZER CG
        &CG
            MAX_STEEP_STEPS 10
            &LINE_SEARCH
                TYPE 2PNT
                &2PNT
                ...

  • Then we specify the transition state search method in the &MOTION/&GEO_OPT/&TRANSITION_STATE section with the METHOD DIMER keyword. In the &MOTION/&GEO_OPT/&TRANSITION_STATE/&DIMER section we specify the DR parameter, which is associated with the displacement between dimer images and influences the efficiency of your search, since it has to be adequate for the PES region we are studying and might require some tunning. In addition we have to set the ANGLE_TOLERANCE parameter, which controls the tolerance of the angle used in the optimization of the dimer orientation, and turn on the INTERPOLATE_GRADIENT keyword to interpolate the gradient whenever possible during the dimer optimization.

&MOTION
    &GEO_OPT
        ...
        &TRANSITION_STATE
            METHOD DIMER
            &DIMER
                DR 0.01
                ANGLE_TOLERANCE [deg] 1.5
                INTERPOLATE_GRADIENT  T

  • In the &MOTION/&GEO_OPT/&TRANSITION_STATE/&DIMER/&DIMER_VECTOR section we take advantage from the previous VIBRATIONAL_ANALYSIS run by specifying the initial dimer vector to direct the orientation of the dimer instead of being chosen randomly.

&MOTION
    &GEO_OPT
        ...
        &TRANSITION_STATE
            ...
            &DIMER
                ...
                &DIMER_VECTOR
                    @INCLUDE dimer_vector.inc
                ...

  • We also have to specify the section that defines the parameters for the optimization of the dimer rotation.

&MOTION
    &GEO_OPT
        ...
        &TRANSITION_STATE
            ...
            &DIMER
                ...
                &ROT_OPT
                    OPTIMIZER CG
                    MAX_ITER  500
                    &CG
                        MAX_STEEP_STEPS 10
                        &LINE_SEARCH
                            TYPE 2PNT
                            &2PNT
                            ...

  • After getting an optimized TS structure, we recommend doing a geometry optimization of the minima corresponding to reactant and product, as well as a vibrational analysis to check if there aren't any imaginary frequencies in the minima, and a single imaginary frequency in your saddle point. We also suggest to further re-optimize these final structures with a higher level of theory, such as DFT with the PBE or B3LYP functional, to refine your results.