You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Project#05/README.md
+13-38
Original file line number
Diff line number
Diff line change
@@ -6,50 +6,27 @@ amplitudes as well as Fock-matrix elements and antisymmetrized, Dirac-notation t
6
6
(as opposed to the spatial-orbital basis used in the earlier [MP2 Project](https://github.com/CrawfordGroup/ProgrammingProjects/tree/master/Project%2304).
7
7
Thus, the transformation of the AO-basis integrals into the spatial-MO basis must also include their translation into the spin-orbital basis:
8
8
9
-
```
10
-
EQUATION
11
-
\begin{eqnarray*}
12
-
\langle p q | r s \rangle & \equiv & \int d{\mathbf r}_1 d{\mathbf r}_2 d\omega_1 d\omega_1 \phi_p({\mathbf r}_1)\sigma_p(\omega_1) \phi_q({\mathbf r}_2)\sigma_q(\omega_2) \frac{1}{{\mathbf r}_{12}} \phi_r({\mathbf r}_1)\sigma_r(\omega_1) \phi_s({\mathbf r}_2)\sigma_s(\omega_2) \\
Thus, if you know the ordering of the orbitals (e.g. all occupied orbitals before virtual orbitals, perhaps alternating between alpha and beta spins), it is straightforward to carry out the integration over the spin components (the sigmas) in the above expression. Thus, each spatial-orbital MO-basis two-electron integral translates to 16 possible spin-orbital integrals, only four of which are non-zero.
20
12
21
13
Don't forget that you must also create the spin-orbital Fock matrix:
Suggestion: For simplicity, store the two-electron integrals in a four-dimensional array. This will greatly facilitate debugging of the complicated CCSD equations.
29
18
30
-
* Hint: Sample spatial- to spin-orbital translation code.
19
+
*[Hint 1](./hints/hint1.md): Sample spatial- to spin-orbital translation code.
31
20
32
21
## Step #2: Build the Initial-Guess Cluster Amplitudes
33
22
For Hartree-Fock reference determinants, the most common initial guess for the cluster amplitudes are the Moller-Plesset first-order perturbed wave function:
34
-
```
35
-
EQUATION
36
-
t_i^a = 0
37
-
```
38
-
39
-
```
40
-
EQUATION
41
-
t_{ij}^{ab} = \frac{\langle ij || ab \rangle}{\epsilon_i + \epsilon_j - \epsilon_a - \epsilon_b}
42
23
43
-
```
24
+
<imgsrc="./figures/init-t-amps.png"height="85">
44
25
45
26
Note that if you have constructed the Fock matrix, two-electron integrals, and initial-guess amplitudes correctly at this point,
46
-
you should be able to compute the MP2 correlation energy using the simple spin-orbital expression and get identical results to those from
you should be able to compute the MP2 correlation energy using the simple spin-orbital expression and get identical results to those from [Project #4](./Project%2304):
Use the spin-orbital Eqs. 3-13 from Stanton's paper to build the two-index (F) and four-index (W) intermediates, as well as the effective doubles (labelled with the Greek letter tau).
@@ -60,18 +37,16 @@ Use Eqs. 1 and 2 from Stanton's paper to compute the updated T<sub>1</sub> and T
0 commit comments