X

Search Results

Searching....

11.6 Projection-Based Density Embedding

11.6.4 Previous Implementation Based on “EmbedMan”

(February 4, 2022)

The original implementation of the projection-based embedding in Q-Chem was through the “EmbedMan” module, which was based on the old SCF module that is no longer the default. This implementation applies a level-shift projection operator to enforce the orthogonality between orbitals belonging to fragments 1 and 2. For the 1-in-2 case, the Fock matrix can be written as

𝐟(1)=𝐡+𝐉[γ(1)+γ(2)]+νxc[γ(1)+γ(2)]+μ𝐏(2) (11.111)

where 𝐏(2) is the level-shift projection operator constructed as:

𝐏αβ(2)=[𝐒γ(2)𝐒]αβ (11.112)

where γ(2) is the localized density of fragment 2, and 𝐒 is the AO overlap matrix. Upon convergence, an energy correction term is added to the final energy to account for the level-shift projection operator contribution to the Fock matrix energy. The correction term is calculated as the following:

Ecorrection=μ*tr(γ(1)𝐏(2)) (11.113)

Once the KS-DFT energy of fragment 1-in-2 is computed, a post-SCF method can be applied to this converged density to obtain the high-level QM additive energy of fragment 1. The same procedure can be repeated for fragment 2-in-1, without continuing to a post-SCF method to yield the low-level QM additive energy of the fragment 2. These energies are then summed to yield the total energy.

To run an embedding calculation through the “EmbedMan” module, one must split the super-molecular system into two fragments indexed 1 and 2, and set EMBEDMAN to 1. This is done through the standard Q-Chem fragment input syntax. Two separate jobs must be run to find the total energy of fragment 1-in-2 at a high level QM theory, and fragment 2-in-1 at a low level QM theory. The order of the fragments in the $molecule section determines which fragment will undergo the high level QM. The user must submit a separate job for the 2-in-1 low-level QM calculation, with the order of the fragments reversed and EMBED_THEORY set to 0, which is the default value. The user must then add the final energies of the calculations to determine the total QM/QM embedded energy.

For the current Q-Chem implementation of density embedding, it is necessary to specify the basis as MIXED, which requires to define the basis for each individual atom. When using CCSD(T), one should specify CCMAN2 as TRUE, for Q-Chem’s most updated coupled-cluster code. The current implementation of density embedding only works in combination with the following settings: SCF_ALGORITHM = DIIS, INCFOCK = 0, and PURECART = 222. It is also recommended that users disable symmetry for calculations with SYMMETRY = FALSE, and SYM_IGNORE = TRUE. Refer to the sample input for correct job settings.

EMBEDMAN

EMBEDMAN
       Turns density embedding on.
TYPE:
       INTEGER
DEFAULT:
       0
OPTIONS:
       0 Do not use density embedding. 1 Turn on density embedding.
RECOMMENDATION:
       Use EMBEDMAN for QM/QM density embedded calculations.

EMBED_THEORY

EMBED_THEORY
       Specifies post-DFT method performed on fragment one.
TYPE:
       INTEGER
DEFAULT:
       0
OPTIONS:
       0 No post HF method, only DFT on fragment one. 1 Perform CCSD(T) calculation on fragment one. 2 Perform MP2 calculation on fragment one.
RECOMMENDATION:
       This should be 1 or 2 for the high-level QM calculation of fragment 1-in-2, and 0 for fragment 2-in-1 low-level QM calculation.

EMBED_MU

EMBED_MU
       Specifies exponent value of projection operator scaling factor, μ [Eqs. (11.111) and (11.113)].
TYPE:
       INTEGER
DEFAULT:
       7
OPTIONS:
       n μ=10n.
RECOMMENDATION:
       Values of 2 - 7 are recommended. A higher value of μ leads to better orthogonality of the fragment MOs but μ>107 introduces numerical noise. μ<102 results in non-additive terms becoming too large. Energy corrections are fairly insensitive to changes in μ within the range of 102-107.

EMBED_THRESH

EMBED_THRESH
       Specifies threshold cutoff for AO contribution used to determine which MOs belong to which fragments
TYPE:
       INTEGER
DEFAULT:
       500
OPTIONS:
       n Threshold =n/1000
RECOMMENDATION:
       Acceptable values range from 0 to 1000. Should only need to be tuned for non-highly localized MOs

Example 11.11.38  Input for a MP2/PBE density embedding calculation of He-in-HF. The sum of the final energies for these two jobs will yield the total QM/QM energy.

$molecule
   0 1
--
   0 1
   He      -4.63032        2.10289       -1.62399
--
   0 1
   F       -8.00612        1.74605       -1.25581
   H       -7.40964        1.84462       -0.47756
$end

$rem
   EXCHANGE        PBE
   CORRELATION     PBE
   BASIS           mixed  ! Must specify basis sets per atom in $basis section below
   PURECART        222
   MAX_SCF_CYCLES  100
   SCF_ALGORITHM   DIIS
   INCFOCK         0
   SYMMETRY        false
   SYM_IGNORE      true
   CC_SYMMETRY     false
   EMBEDMAN        1      ! Turning density embedding on
   EMBED_THEORY    2      ! Running MP2 on fragment 1 in 2, or He in FH
   EMBED_MU        7      ! Default value
   EMBED_THRESH    500    ! Default value for assigning MOs to fragments
$end

$basis
  he 1
  6-31G
  ****
  f 2
  6-31G
  ****
  h 3
  6-31G
  ****
$end

@@@

$molecule
0 1
--
0 1
   F       -8.00612        1.74605       -1.25581
   H       -7.40964        1.84462       -0.47756
--
0 1
   He      -4.63032        2.10289       -1.62399
$end

$rem
  EXCHANGE        PBE
  CORRELATION     PBE
  BASIS           mixed
  PURECART        222
  MAXSCF          100
  SCF_ALGORITHM   DIIS
  INCFOCK         0
  SYMMETRY        false
  SYM_IGNORE      true
  EMBEDMAN        1
  EMBED_THEORY    0      ! There will be no post-DFT calculations for HF-in-He
$end

$basis
  f 1
  6-31G
  ****
  h 2
  6-31G
  ****
  he 3
  6-31G
  ****
$end

View output