QRC is an abbreviation of Quick Reaction Coordinate. This provides a quick alternative to IRC (intrisic reaction coordinate) calculations. This was first described by Silva and Goodman.1 The original code was developed in java for Jaguar output files. This python version works for Gaussian ouput files.
The program will read a Gaussian frequency calculation and will create a new input file which has been projcted from the final coordinates along the Hessian eigenvector with a negative force constant. The magnitude of displacement can be adjusted on the command line. By default the projection will be in a positive sense (in relation to the imaginary normal mode) and the level of theory in the new input file will match that of the frequency calculation. In addition to the new input file(s) a summary is output to a text file ending in '.qrc'
In addition to a "pound-shop" IRC calculation, a common application for pyQRC is in distorting ground state structures to remove annoying imaginary frequencies after reoptimization. This code has, in some form or other, been in use since around 2010.
- Clone the repository https://github.com/bobbypaton/pyQRC.git and add to your PYTHONPATH variable
- Run the script as a python module with your Gaussian output files (the program expects log or out extensions) and can accept wildcard arguments.
Correct Usage
python -m pyqrc [--amp AMPLITUDE] [--nproc N] [--mem NGB] [--name APPEND] [--route 'B3LYP/6-31G*'] [-v] [--auto] <gaussian_output_file(s)>- The
--ampmultiplies the imaginary normal mode vector by this amount. It defaults to 0.2. Increase for larger displacements, and change the sign for displacement in the reverse direction. - The
--nprocoption selects the number of processors requested in the new input file. It defatuls to 1. - The
--memoption specifies the memory requested in the new input file. It defatuls to 4GB. The correct format of input is XGB or X000MB where X can take any integer value. - The
--routeoption specifies the route line for the new calculation to be performed. - The
--nameoption is appended to the existing filename to create the new input file(s). This defaults to 'QRC'. - The
-voption requests verbose output to be printed. - The
--autooption will only process files with an imaginary frequency. Given any number of files it will ignore those that have no imaginary frequencies.
python -m pyqrc acetaldehyde.log --nproc 4 --mem 8GBThis initial optimization inadvertently produced a transition structure. The code displaces along the normal mode and creates a new input file. A subsequent optimization then fixes the problem since the imaginary frequency disappears.
python -m pyqrc claisen_ts.log --nproc 4 --mem 8GB --amp 0.3 --name QRCF
python -m pyqrc claisen_ts.log --nproc 4 --mem 8GB --amp -0.3 --name QRCRThe initial optimization located a transition structure. The quick reaction coordinate (QRC) is obtained from two optmizations, started from twp points displaced along the reaction coordinate in either direction.
- (a) Goodman, J. M.; Silva, M. A. Tetrahedron Lett. 2003, 44, 8233-8236 DOI: 10.1016/j.tetlet.2003.09.074; (b) Goodman, J. M.; Silva, M. A. Tetrahedron Lett. 2005, 46, 2067-2069 DOI: 10.1016/j.tetlet.2005.01.142
License: MIT