Q-Chem can accept a list of atoms and their Cartesian coordinates. The atoms can be entered either as atomic numbers or atomic symbols where each line corresponds to a single atom. The Q-Chem format for declaring a molecular geometry using Cartesian coordinates (in Angstroms) is:
atom x-coordinate y-coordinate z-coordinate
Note: The geometry can by specified in bohr; to do so, set the INPUT_BOHR $rem variable to TRUE.
Example 3.6 Atomic number Cartesian coordinate input for HO.
$molecule
0 1
8 0.000000 0.000000 -0.212195
1 1.370265 0.000000 0.848778
1 -1.370265 0.000000 0.848778
$end
Example 3.7 Atomic symbol Cartesian coordinate input for HO.
$molecule
0 1
O 0.000000 0.000000 -0.212195
H 1.370265 0.000000 0.848778
H -1.370265 0.000000 0.848778
$end
Note: (1) Atoms can be declared by either atomic number or symbol.
(2) Coordinates can be entered either as variables/parameters or real numbers.
(3) Variables/parameters can be declared in any order.
(4) A single blank line separates parameters from the atom declaration.
Once all the molecular Cartesian coordinates have been entered, terminate the molecular coordinate input with the $end keyword.