Introduction
Suppose
where
and Gaussian-type orbital (GTO): 3
The Fourier transform of
where
Let us consider first the overlap integral (or
The integral can be performed in real-space, i.e.
or momentum space (Fourier space):
where the phase
Overlap integral in momentum space
Starting with Eq.
where
where
-
Note that
is used from Eq. to Eq. . -
The integral over
in Eq. is the inverse spherical Bessel transform of . -
In practice, real spherical harmonics
are often used, which does not affect the validity of any of previous equations, but the Gaunt coefficients should be modified accordingly.and
Gaunt coefficients
Complex spherical harmonics
They Gaunt coefficients defined as Eq.
They obey the following symmetry rules
-
Invariant under space reflection, i.e.
-
Invariant under any permutation of the columns, i.e.
-
Non-zero only for even sum of the
, i.e. for . -
Non-zero for
fulfilling the triangle relation, i.e. . -
Non-zero for
.
As a result, the sum in Eq.
The Gaunt coefficients can be obtained by recursion from Clebsch–Gordan
coefficients.6 In sympy
, one can get
1
2
3
4
from sympy.physics.wigner import gaunt
gaunt(0,0,0,0,0,0) # 1/(2*sqrt(pi))
gaunt(1,0,1,1,0,-1) # -1/(2*sqrt(pi))
gaunt(1000,1000,1200,9,3,-12).n(64) # 0.00689500421922113448...
Real spherical harmonics
As is well known, complex and real spherical harmonics (SPH) can be
inter-transformed by a unitary matrix
Therefore, the Gaunt coefficients defined in Eq.
The Gaunt coefficients
- Invariant under any permutation of the columns.
- Non-zero only for even sum of the
, i.e. for . - Non-zero for
fulfilling the triangle relation, i.e. . -
Zero for
, and . To see this, by combining Eq. and Eq. , we havewhere we have used
for abbreviation.-
The Gaunt coefficients in the first two terms are apparently zero since all
and as a result the sum of could not possibly be zero. -
For the Gaunt coefficients in the rest terms to be non-zero, one of the following conditions must be fulfilled:
Let’s first assume that
so that the Gaunt coefficients in the 3-rd and 4-th terms are not zero. Moreover, Due to the space reflection symmetry, the Gaunt coefficients in these two terms equal to each other. Apparently, the Gaunt coefficients in the rest terms are zero (we could not have , and at the same time). Now the sign before the 3-rd and 4-th terms can be written aswhich is zero for
. The same reasoning applies to the 5/6 and 7/8 terms.
-
-
If
, and , then non-zero for for .In this case, Eq.
expands towhich is again non-zero only when one of the conditions in Eq.
is fulfilled. Assuming that , then the only non-zero terms are the third and fourth ones, where the Gaunt coefficients equal to each other, which leaves us the sign factorObviously, it is non-zero only when
for . - Apparently, not invariant under space reflection.
Gaunt coefficients table
As can be clearly seen, the Gaunt coefficients, be it defined by complex or real
SPH, only depends on the three pairs of quantum numbers
1
2
3
4
from pysbt import GauntTable
GauntTable(l1=0, l2=0, l3=0, m1=0, m2=0, m3=0) # 0.2820947917738781
GauntTable(4, 3, 1, 2, 3, 1) # -0.0435281713775682
GauntTable(4, 3, 1, 2, 3, 1, real=False) # 0.0
Overlap integral of hydrogen 1s orbital
The hydrogen
where the unit of length is Bohr. According to Eq.
where
As is well known, the overlap integral of two hydrogen 1s orbitals can be written as
Below, we show the comparison of the overlap integral from numerical evaluation and analytic solution.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import numpy as np
from pysbt import sbt
from pysbt import GauntTable
N = 256
rmin = 2.0 / 1024 / 32
rmax = 30
rr = np.logspace(np.log10(rmin), np.log10(rmax), N, endpoint=True)
f1 = 2*np.exp(-rr) # R_{10}(r)
Y10 = 1 / 2 / np.sqrt(np.pi)
ss = sbt(rr) # init SBT
g1 = ss.run(f1, direction=1, norm=True) # SBT
s1 = ss.run(g1 * g1, direction=-1, norm=False) # iSBT
sR = 4*np.pi * GauntTable(0, 0, 0, 0, 0, 0) * Y10 * s1
import matplotlib.pyplot as plt
plt.style.use('ggplot')
fig = plt.figure(
dpi=300,
figsize=(4, 2.5),
)
ax = plt.subplot()
ax.plot(rr, sR, ls='none', color='b',
marker='o', ms=3, mew=0.5, mfc='w',
label='Numeric')
ax.plot(rr, np.exp(-rr) * (1 + rr + rr**2 / 3),
color='r', lw=0.8, ls='--', label='Analytic')
ax.legend(loc='upper right')
ax.set_xlabel('$R$ [Bohr]', labelpad=5)
ax.set_ylabel('$S(R)$', labelpad=5)
plt.tight_layout()
plt.savefig('s10.svg')
plt.show()