Difference between revisions of "Debugging odd transition states in OPTIM"

From CUC3
Jump to navigation Jump to search
import>Mp466
import>Mp466
Line 8: Line 8:
   
 
2. If letting the calculation resolve the problem or MAXTSENERGY does not work looking at the interpolation is necessary.
 
2. If letting the calculation resolve the problem or MAXTSENERGY does not work looking at the interpolation is necessary.
In order to do so, new OPTIM keywords, DEBUG, DUMPNEBEOS, and DUMPNEBXYZ need to be added to print the NEB interpolated energy and coordinates in the files neb.xyz.31267.<n>, and neb.EofS.<n>.31267.
+
In order to do so, new OPTIM keywords, DEBUG, DUMPNEBEOS, and DUMPNEBXYZ need to be added to print the NEB interpolated energy and coordinates in the files neb.xyz.31267.<n>, and neb.EofS.<n>.31267, where <n> is the number of NEB interpolations.
   
 
DEBUG
 
DEBUG
DUMPNEBEOS 100
+
DUMPNEBEOS 300
DUMPNEBXYZ 100
+
DUMPNEBXYZ 300
   
  +
3. For the AMH, for highly anharmonic paths setting very small steps, and visualising the output has been helpful with
  +
the use of a combination of the keywords below.
   
  +
USEDIAG 2
3. Another strategy is to use BHINTERP to use basin-hopping to generate more physically reasonable interpolations between the end points. To do so you to use the keywords BHINTERP and BHDEBUG in OPTIM.
 
  +
MAXBFGS 0.1
  +
PUSHOFF 0.01
  +
PATH 1000 0.00000000001
  +
BFGSTS 1000 1 10 0.005 100
  +
MAXSTEP 0.05
  +
MAXMAX 0.1
  +
MINMAX 1.0D-4
  +
TRAD 0.1
  +
CONVERGE 0.1 2.0D-6
  +
 
4. Another strategy is to use BHINTERP to use basin-hopping to generate more physically reasonable interpolations between the end points. To do so you to use the keywords BHINTERP and BHDEBUG in OPTIM.
   
 
BHDEBUG
 
BHDEBUG
BHINTERP 10.0 -350.0 100 0.001 5.0 0.4 0.5 0.05 0.8
+
BHINTERP 5.0 -350.0 100 0.001 1.0 0.4 0.5 0.05 0.8
   
   

Revision as of 14:59, 16 July 2009

Sometimes in OPTIM high energy transition states will be encountered. There are several strategies for understand why these are occurring.

1. OPTIM and PATHSAMPLE may be able to fine lower energy connections if the calculations are allowed to continue. This can very inefficient. One way of preventing high energy transition states from occurring is to explicitly prevent transition states of a certain energy or above from being allowed. This is done by using the keyword MAXTSENERGY in both PATHSAMPLE and OPTIM.

2. If letting the calculation resolve the problem or MAXTSENERGY does not work looking at the interpolation is necessary. In order to do so, new OPTIM keywords, DEBUG, DUMPNEBEOS, and DUMPNEBXYZ need to be added to print the NEB interpolated energy and coordinates in the files neb.xyz.31267.<n>, and neb.EofS.<n>.31267, where <n> is the number of NEB interpolations.

DEBUG 
DUMPNEBEOS 300
DUMPNEBXYZ 300

3. For the AMH, for highly anharmonic paths setting very small steps, and visualising the output has been helpful with the use of a combination of the keywords below.

USEDIAG 2
MAXBFGS 0.1
PUSHOFF 0.01
PATH 1000 0.00000000001
BFGSTS 1000 1 10 0.005 100
MAXSTEP 0.05
MAXMAX 0.1
MINMAX 1.0D-4
TRAD 0.1
CONVERGE 0.1 2.0D-6

4. Another strategy is to use BHINTERP to use basin-hopping to generate more physically reasonable interpolations between the end points. To do so you to use the keywords BHINTERP and BHDEBUG in OPTIM.

BHDEBUG
BHINTERP 5.0 -350.0 100 0.001 1.0 0.4 0.5 0.05 0.8


--mp466 13:48, 23 June 2009 (BST)