X

Search Results

Searching....

7.13 Core Ionization Energies and Core-Excited States

7.13.1 Many-Body Methods for Core-Excited States

(July 14, 2022)

A highly robust and accurate strategy is to invoke many-body methods, such as EOM or ADC, together with the core-valence separation (CVS) scheme. 185 Cederbaum L. S., Domcke W., Schirmer J.
Phys. Rev. A
(1980), 22, pp. 206.
Link
In this approach, the excitations involving core electrons are decoupled from the rest of the configurational space. This allows one to reduce computational costs and decouple the highly excited core states from the continuum. These methods are described in Sections 7.10.8 and 7.11.6; CVS can also be deployed within TDDFT as described in Section 7.13.2. Error introduced by the CVS approximation is negligible for K-edge (1s virtual) excitations, 492 Herbst M. F., Fransson T.
J. Chem. Phys.
(2020), 153, pp. 054114.
Link
though its accuracy for other types of x-ray excitations is less certain.

An alternative highly accurate approach for finding core-excitation energies of closed-shell molecules is to use the restricted open-shell Kohn-Sham (ROKS) approach that is described in Section 7.8.2. ROKS is not systematically improvable like EOM or ADC methods, but is nonetheless quite accurate and modern density functionals are capable of predicting excitation energies to <0.5 eV error. 435 Hait D., Head-Gordon M.
J. Phys. Chem. Lett.
(2020), 11, pp. 775.
Link
The great strength of the ROKS approach is its computational efficiency: highly accurate results can be obtained for the same 𝒪(N3) scaling as ground-state meta-GGAs, versus the 𝒪(N6) scaling of EOM-CCSD or 𝒪(N5) scaling of ADC(2). The basis set requirements of ROKS are also much more modest than wave function theories, with a mixed basis strategy being highly effective in practice. Details about using ROKS for core-level excitations can be found in Section 7.13.4.

Within EOM-CC formalism, one can also use an approximate EOM-EE/IP methods in which the target states are described by single excitations and double excitations are treated perturbatively; these methods are described in Section 7.10.15. While being moderately useful, these methods are less accurate than the CVS-EOM variants. 1047 Sadybekov A., Krylov A. I.
J. Chem. Phys.
(2017), 147, pp. 014107.
Link

In addition, one can use the ΔE approach, which amounts to a simple energy difference calculation in which core ionization is computed from energy differences computed for the neutral and core-ionized state. This procedure is illustrated by Example 7.13.1 below.

Example 7.147  Q-Chem input for calculating chemical shift for 1s-level of methane (CH4). The first job is just an SCF calculation to obtain the orbitals and CCSD energy of the neutral. The second job solves the HF and CCSD equations for the core-ionized state.

$molecule
   0,1
   C      0.000000    0.000000    0.000000
   H      0.631339    0.631339    0.631339
   H     -0.631339   -0.631339    0.631339
   H     -0.631339    0.631339   -0.631339
   H      0.631339   -0.631339   -0.631339
$end

$rem
   EXCHANGE        = HF
   CORRELATION     = CCSD
   BASIS           = 6-31G*
   MAX_CIS_CYCLES  = 100
$end

@@@

$molecule
   +1,2
   C      0.000000    0.000000    0.000000
   H      0.631339    0.631339    0.631339
   H     -0.631339   -0.631339    0.631339
   H     -0.631339    0.631339   -0.631339
   H      0.631339   -0.631339   -0.631339
$end

$rem
   UNRESTRICTED    = TRUE
   EXCHANGE        = HF
   BASIS           = 6-31G*
   MAX_CIS_CYCLES  = 100
   SCF_GUESS       = read  Read MOs from previous job and use occupied as specified below
   CORRELATION     = CCSD
   MOM_START       = 1 Do not reorder orbitals in SCF procedure!
$end

$occupied
   1 2 3 4 5
   2 3 4 5
$end

In this job, we first compute the HF and CCSD energies of neutral CH4: ESCF=-40.1949062375Eh and ECCSD=-40.35748087Eh (HF orbital energy of the neutral gives the Koopmans IE, which is 11.210 hartree = 305.03 eV). In the second job, we do the same for core-ionized CH4. To obtain the desired SCF solution, MOM_START option and $occupied keyword are used. The resulting energies are ESCF=-29.4656758483Eh (S^2 = 0.7730) and ECCSD=-29.64793957Eh. Thus, ΔECCSD=10.709Eh=291.42 eV.

This approach can be further extended to obtain multiple excited states involving core electrons by performing CIS, TDDFT, or EOM-EE calculations.

Note:  This approach often leads to convergence problems in correlated calculations.

One can also use the following trick illustrated by Example 7.13.1.

Example 7.148  Q-Chem input for calculating chemical shift for 1s-level of methane using EOM-IP. Here we solve SCF as usual, then reorder the MOs such that the core orbital becomes the “HOMO”, then solve the CCSD and EOM-IP equations with all valence orbitals frozen and the core orbital being active.

$molecule
   0,1
   C      0.000000    0.000000    0.000000
   H      0.631339    0.631339    0.631339
   H     -0.631339   -0.631339    0.631339
   H     -0.631339    0.631339   -0.631339
   H      0.631339   -0.631339   -0.631339
$end

$rem
   EXCHANGE        = HF
   BASIS           = 6-31G*
   MAX_CIS_CYCLES  = 100
   CORRELATION     = CCSD
   CCMAN2          = false
   N_FROZEN_CORE   = 4 Freeze all valence orbitals
   IP_STATES       = [1,0,0,0] Find one EOM_IP state
$end

$reorder_mo
   5 2 3 4 1
   5 2 3 4 1
$end

Here we use EOM-IP to compute core-ionized states. Since core states are very high in energy, we use “frozen core” trick to eliminate valence ionized states from the calculation. That is, we reorder MOs such that our core is the last occupied orbital and then freeze all the rest. The so computed EOM-IP energy is 245.57 eV. From the EOM-IP amplitude, we note that this state of a Koopmans character (dominated by single core ionization); thus, canonical HF MOs provide good representation of the correlated Dyson orbital. The same strategy can be used to compute core-excited states.

Note:  The accuracy of this approach is rather poor and is similar to Koopmans’ approximation.