Gaussian 03 Input Overview

Gaussian 03 input consists of a series of lines in an ASCII text file. The basic structure of a Gaussian input file includes several different sections:

Many Gaussian 03 jobs will include only the second, third, and fourth sections. Here is an example of such a file, which requests a single point energy calculation on water:

# HF/6-31G(d)                  Route section 
 
water energy                   Title section  
0   1                          Molecule specification 
O  -0.464   0.177   0.0 
H  -0.464   1.137   0.0 
H   0.441  -0.143   0.0

In this job, the route and title sections each consist of a single line. The molecule specification section begins with a line giving the charge and spin multiplicity for the molecule: 0 charge (neutral molecule) and spin multiplicity 1 (singlet) in this case. The charge and spin multiplicity line is followed by lines describing the location of each atom in the molecule; this example uses Cartesian coordinates to do so. Molecule specifications are discussed in more detail later in this chapter.

The following input file illustrates the use of Link 0 commands and an additional input section:

%Chk=heavy                                   Link 0 section 
#HF/6-31G(d) Opt=ModRedundant                Route section  

Opt job                                      Title section 
 0    1                                       Molecule Specification section 
atomic coordinates …        

3 8                                          Add a bond and an angle to the internal 
2 1 3                                         coordinates used during the geom. opt.  

This job requests a geometry optimization. The input section following the molecule specification is used by the Opt=ModRedundant keyword, and it serves to add an additional bond and angle in the internal coordinates used in the geometry optimization. The job also specifies a name for the checkpoint file.

Link 0 commands were introduced in the last chapter and are discussed individually in the penultimate section of this chapter. The remaining input sections are discussed in the subsequent subsections of this introductory section. For convenience, the table below lists all possible sections that might appear within a Gaussian 03 input file, along with the keywords associated with each one.

Input Syntax

In general, Gaussian input is subject to the following syntax rules:

            keyword = option  
            keyword(option) 
            keyword=(option1, option2, ...)  
            keyword(option1, option2, ...) 

Gaussian 03 Input Section Ordering

Section Keywords Final blank line?
Link 0 commands % commands no
Route Section (# lines) all yes
Extra Overlays ExtraOverlays yes
Title section all yes
Molecule specification all yes
Modifications to coordinates Opt=ModRedundant yes
Connectivity specifications Geom=Connect or ModConnect yes
2nd title and molecule specification Opt=QST2 or QST3 yes
Modifications to 2nd set of coordinates Opt=ModRedun and QST2 or QST3 yes
Connectivity specifications for 2nd set Geom=Connect or ModConnect and
of coordinates Opt=ModRedun and QST2 or QST3 yes
3rd title and initial TS structure Opt=QST3 yes for both
Modifications to 3rd set of coordinates Opt=(ModRedun, QST3) yes
Connectivity specifications for 3rd set Geom=Connect or ModConnect
of coordinates Opt=(ModRedun, QST3) yes
Atomic masses IRC=ReadIsotopes yes
Frequency of interest CPHF=RdFreq yes
Initial force constants (Cartesian) Opt=FCCards yes
Accuracy of energy & forces Opt=ReadError no
BOMD/ADMP input (1 or more sections) ADMP and BOMD yes
Basis set specification Gen, GenECP, ExtraBasis yes
Basis set alterations Massage yes
ECP specification ExtraBasis, Pseudo=Cards, GenECP yes
Background charge distribution Charge yes
Finite field coefficients Field=Read yes
Symmetry types to combine Guess=LowSymm no
Orbital specifications (separate α & β) Guess=Cards yes
Orbital alterations (separate α & β) Guess=Alter yes
Orbital reordering (separate α & β) Guess=Permute no
PCM solvation model input SCRF=Read yes
Filename for COSMO/RS SCRF=COSMORS no
Weights for CAS state averaging CASSCF=StateAverage no
States of interest for spin orbit coupling CASSCF=Spin no
# Orbitals/GVB pair GVB no
Alternate atomic radii Pop=ReadRadii or ReadAtRadii yes
Data for electrostatic properties Prop=Read or Opt yes
Cube filename (& Cards input) Cube yes
NBO input Pop=NBORead no
Orbital freezing information ReadWindow options yes
OVGF orbitals to refine OVGF=ReadOrbitals yes
Temperature, pressure, atomic masses Freq=ReadIsotopes no
PROAIMS/Pickett output filename Output=WFN or Pickett no


Click here to go on to the next section.