Skip to content

Latest commit

 

History

History
92 lines (64 loc) · 4.12 KB

File metadata and controls

92 lines (64 loc) · 4.12 KB

Project #2: Harmonic Vibrational Analysis

The purpose of this project is to extend your fundamental C-language programming techniques through a normal coordinate/harmonic vibrational frequency calculation. The theoretical background and a concise set of instructions for this project may be found here

We thank Dr. Yukio Yamaguchi of the University of Georgia for the original version of this project.

Step 1: Read the Coordinate Data

The coordinate data are given in a format identical to that for Project #1. The test case for the remainder of this project is the water molecule, optimized at the SCF/DZP level of theory. You can find the coordinates (in bohr) in the input directory.

Step 2: Read the Cartesian Hessian Data

The primary input data for the harmonic vibrational calculation is the Hessian matrix, which consists of second derivatives of the energy with respect to atomic positions.

The Hessian matrix (in units of Eh/a02) can be downloaded here for the H2O test case. The first integer in the file is the number of atoms (which you should compare to the corresponding value from the geometry file as a test of consistency), while the remaining values have the following format:

Step 3: Mass-Weight the Hessian Matrix

Divide each element of the Hessian matrix by the product of square-roots of the masses of the atoms associated with the given coordinates:

where mi represents the mass of the atom corresponding to atom i. Use atomic mass units (amu) for the masses, just as for Project #1.

Step 4: Diagonalize the Mass-Weighted Hessian Matrix

Compute the eigenvalues of the mass-weighted Hessian:

You should consider using the same canned diagonalization function you used in Project #1.

Step 5: Compute the Harmonic Vibrational Frequencies

The vibrational frequencies are proportional to the squareroot of the eigenvalues of the mass-weighted Hessian:

The most common units to use for vibrational frequencies is cm-1.

Reference

E.B. Willson, J.C. Decius, and P.C. Cross, Molecular Vibrations, McGraw-Hill, 1955.

Test Cases