exercises:2016_uzh_cmest:path_optimization_neb
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
exercises:2016_uzh_cmest:path_optimization_neb [2016/10/20 11:20] – tmueller | exercises:2016_uzh_cmest:path_optimization_neb [2020/08/21 10:15] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
In the [[geometry_optimization|last exercise]] you have calculated the energy for Ethane for two slightly different geometries and noticed that the geometry optimization was not able to change one structure into the other with lower energy. As presented in the lecture, it may happen quiet often that a minimization algorithm gets stuck in a local minimum, respectively it is not guaranteed to find the global minimum. | In the [[geometry_optimization|last exercise]] you have calculated the energy for Ethane for two slightly different geometries and noticed that the geometry optimization was not able to change one structure into the other with lower energy. As presented in the lecture, it may happen quiet often that a minimization algorithm gets stuck in a local minimum, respectively it is not guaranteed to find the global minimum. | ||
- | In this exercise, we will therefore perform Nudged Elastic Band (NEB) calculations using the same molecule as before and investigate the energy path between the two configurations. | + | In this exercise, we will therefore perform Nudged Elastic Band (NEB) calculations using the same molecule as before and investigate the energy path between the two geometries. |
+ | Following are three geometry files you should put/create in a new exercise directory: | ||
+ | <code - ethane_1_opt.xyz> | ||
+ | 8 | ||
+ | i = 12, E = | ||
+ | C | ||
+ | C | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | </ | ||
+ | <code - ethane_s1.xyz> | ||
+ | 8 | ||
+ | i = 76, E = -14.9559722838 | ||
+ | C | ||
+ | C | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | </ | ||
+ | |||
+ | <code - ethane_ts.xyz> | ||
+ | 8 | ||
+ | i = 76, E = -14.9518421887 | ||
+ | C | ||
+ | C | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | </ | ||
+ | |||
+ | <code - ethane_s2.xyz> | ||
+ | 8 | ||
+ | i = 76, E = -14.9559544815 | ||
+ | C | ||
+ | C | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | </ | ||
+ | |||
+ | You could in principle start from the geometries you already optimized. In fact, the files '' | ||
+ | |||
+ | The input file you need then looks as follows: | ||
+ | |||
+ | <code - ethane_neb_aba.inp> | ||
+ | &GLOBAL | ||
+ | PROJECT ethane_neb_aba | ||
+ | RUN_TYPE BAND | ||
+ | PRINT_LEVEL MEDIUM | ||
+ | &END GLOBAL | ||
+ | |||
+ | & | ||
+ | METHOD Quickstep | ||
+ | &DFT | ||
+ | BASIS_SET_FILE_NAME | ||
+ | POTENTIAL_FILE_NAME | ||
+ | |||
+ | & | ||
+ | PERIODIC XYZ | ||
+ | &END POISSON | ||
+ | & | ||
+ | SCF_GUESS ATOMIC | ||
+ | EPS_SCF 1.0E-6 | ||
+ | MAX_SCF 300 | ||
+ | &END SCF | ||
+ | & | ||
+ | & | ||
+ | &END XC_FUNCTIONAL | ||
+ | &END XC | ||
+ | &END DFT | ||
+ | |||
+ | &SUBSYS | ||
+ | &CELL | ||
+ | ABC 12. 12. 12. | ||
+ | PERIODIC XYZ | ||
+ | &END CELL | ||
+ | & | ||
+ | & | ||
+ | &END | ||
+ | COORD_FILE_FORMAT xyz | ||
+ | COORD_FILE_NAME | ||
+ | &END | ||
+ | &KIND H | ||
+ | ELEMENT H | ||
+ | BASIS_SET DZVP-MOLOPT-GTH | ||
+ | POTENTIAL GTH-PBE-q1 | ||
+ | &END KIND | ||
+ | &KIND C | ||
+ | ELEMENT C | ||
+ | BASIS_SET DZVP-MOLOPT-GTH | ||
+ | POTENTIAL GTH-PBE-q4 | ||
+ | &END KIND | ||
+ | &END SUBSYS | ||
+ | &END FORCE_EVAL | ||
+ | |||
+ | &MOTION | ||
+ | &BAND | ||
+ | BAND_TYPE CI-NEB | ||
+ | NUMBER_OF_REPLICA 8 | ||
+ | K_SPRING 0.05 | ||
+ | & | ||
+ | MAX_FORCE 0.0010 | ||
+ | RMS_FORCE 0.0050 | ||
+ | &END | ||
+ | ROTATE_FRAMES TRUE | ||
+ | ALIGN_FRAMES TRUE | ||
+ | &CI_NEB | ||
+ | NSTEPS_IT 2 | ||
+ | &END | ||
+ | & | ||
+ | OPT_TYPE DIIS | ||
+ | OPTIMIZE_END_POINTS FALSE | ||
+ | &DIIS | ||
+ | MAX_STEPS 1000 | ||
+ | &END | ||
+ | &END | ||
+ | & | ||
+ | &END | ||
+ | & | ||
+ | &END | ||
+ | |||
+ | & | ||
+ | COORD_FILE_NAME ./ | ||
+ | &END | ||
+ | & | ||
+ | COORD_FILE_NAME ./ | ||
+ | &END | ||
+ | & | ||
+ | COORD_FILE_NAME ./ | ||
+ | &END | ||
+ | &END BAND | ||
+ | &END MOTION | ||
+ | </ | ||
+ | |||
+ | One notable difference to the previous input files is the specification of the periodic boundary conditions in the ''& | ||
+ | |||
+ | To run this simulation, we use a slightly different command which will return right away: | ||
+ | |||
+ | < | ||
+ | $ nohup mpirun -np 8 cp2k.popt -i ethane_neb_aba.inp -o ethane_neb_aba.out & | ||
+ | </ | ||
+ | |||
+ | In the background, the process is still running, which you can verify by either watching the changes to the output file (exit this command with '' | ||
+ | |||
+ | < | ||
+ | $ tail -f ethane_neb_aba.out | ||
+ | </ | ||
+ | |||
+ | or by looking at the list of your processes: | ||
+ | |||
+ | < | ||
+ | $ ps uxf | ||
+ | </ | ||
+ | |||
+ | We replaced the CP2K executable '' | ||
+ | |||
+ | This may take a couple of hours. Continue with the exercises below once the calculation finishes. | ||
+ | |||
+ | ====== Visualize the trajectory and plot the energy curve ====== | ||
+ | |||
+ | When you take another peek at the input file you used to run the calculation, | ||
+ | |||
+ | You should therefore find 8 files named '' | ||
+ | |||
+ | < | ||
+ | $ for i in {1..8} ; do tail -n 10 " | ||
+ | </ | ||
+ | |||
+ | Look at the movement again using VMD. | ||
+ | |||
+ | <note tip>The anatomy of a XYZ file: | ||
+ | |||
+ | A XYZ file consists of one or multiple blocks (frames) of the following: | ||
+ | |||
+ | < | ||
+ | | ||
+ | i = 0, E = -14.9559722838 <-- some comment, CP2K writes the number of the iteration and the resulting energy here | ||
+ | C | ||
+ | C | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | H | ||
+ | </ | ||
+ | |||
+ | Extracting the last frame (the optimized geometry in case of a geometry optimization) is therefore simple once you know the number of atoms using the command '' | ||
+ | |||
+ | In our case of 8 atoms this is: | ||
+ | |||
+ | < | ||
+ | $ tail -n 10 geo_opt_output.xyz | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | Since CP2K writes the energy in the comment line of each frame in the XYZ file (see tip above), we can extract the energy values for each bead directly from the newly generated '' | ||
+ | |||
+ | < | ||
+ | awk '/E =/ {i=i+1; printf "%s %16.8f\n", | ||
+ | </ | ||
+ | |||
+ | Create a plot for this energy curve. | ||
+ | |||
+ | ====== Vibrational analysis ====== | ||
+ | |||
+ | To verify whether the point at the highest energy is actually a transition state, we will be doing a vibrational analysis. | ||
+ | |||
+ | First identify the bead with the highest energy (see exercise above) and create a new XYZ file named '' | ||
+ | |||
+ | Use the following input file and the same command as above (with different input and output file names of course) to generate the analysis. | ||
+ | |||
+ | <code - ethane_TS_va.inp> | ||
+ | &GLOBAL | ||
+ | PROJECT ethane_TS_va | ||
+ | RUN_TYPE NORMAL_MODES | ||
+ | PRINT_LEVEL MEDIUM | ||
+ | &END GLOBAL | ||
+ | |||
+ | & | ||
+ | METHOD Quickstep | ||
+ | &DFT | ||
+ | BASIS_SET_FILE_NAME | ||
+ | POTENTIAL_FILE_NAME | ||
+ | |||
+ | & | ||
+ | PERIODIC XYZ | ||
+ | &END POISSON | ||
+ | & | ||
+ | SCF_GUESS ATOMIC | ||
+ | EPS_SCF 1.0E-7 | ||
+ | MAX_SCF 300 | ||
+ | &END SCF | ||
+ | & | ||
+ | & | ||
+ | &END XC_FUNCTIONAL | ||
+ | &END XC | ||
+ | &END DFT | ||
+ | |||
+ | &SUBSYS | ||
+ | &CELL | ||
+ | ABC 12. 12. 12. | ||
+ | PERIODIC XYZ | ||
+ | &END CELL | ||
+ | & | ||
+ | & | ||
+ | &END | ||
+ | COORD_FILE_FORMAT xyz | ||
+ | COORD_FILE_NAME | ||
+ | &END | ||
+ | &KIND H | ||
+ | ELEMENT H | ||
+ | BASIS_SET DZVP-MOLOPT-GTH | ||
+ | POTENTIAL GTH-PBE-q1 | ||
+ | &END KIND | ||
+ | &KIND C | ||
+ | ELEMENT C | ||
+ | BASIS_SET DZVP-MOLOPT-GTH | ||
+ | POTENTIAL GTH-PBE-q4 | ||
+ | &END KIND | ||
+ | &END SUBSYS | ||
+ | &END FORCE_EVAL | ||
+ | |||
+ | & | ||
+ | NPROC_REP 1 | ||
+ | DX 0.01 | ||
+ | FULLY_PERIODIC | ||
+ | |||
+ | & | ||
+ | &END | ||
+ | & | ||
+ | &END | ||
+ | & | ||
+ | &EACH | ||
+ | REPLICA_EVAL 1 | ||
+ | &END | ||
+ | &END | ||
+ | &END | ||
+ | &END | ||
+ | </ | ||
+ | |||
+ | Once this run completes, you should find a file '' | ||
+ | |||
+ | Now we are going to use the application //molden// (which you can load using '' | ||
+ | |||
+ | < | ||
+ | $ molden ethane_TS_va-VIBRATIONS-1.mol | ||
+ | </ | ||
+ | |||
+ | Click the //Norm. Mode// checkbox in the //Molden Control// window to list all the modes. What is the lowest frequency you get? By clicking on it you can visualize it. | ||
+ | |||
+ | The presence of a negative (imaginary) mode means that it is actually a transition state (and not stable). | ||
+ | |||
+ | Now repeat the same steps presented here for the bead with the lowest energy. What is now the first frequency you get in the list? Is this geometry stable? | ||
+ | |||
+ | Please note: while you should get only 18 different frequencies you get 21 instead. That means that 3 frequencies are global rotations instead of modes in the molecule and should be ignored when looking for negative frequencies to identify whether a conformer is stable or not. |
exercises/2016_uzh_cmest/path_optimization_neb.1476962430.txt.gz · Last modified: 2020/08/21 10:15 (external edit)