@@ -34,7 +34,7 @@ iteration rather than stored on disk.))
34
34
35
35
At the heart of the SCF procedure is the expensive Fock-matrix term:
36
36
37
- <img src =" ./figures/fock-matrix.png " height =" 50 " >
37
+ <img src =" ./figures/fock-matrix.png " height =" 75 " >
38
38
39
39
where we use * i* , * j* , * k* , and * l* to denote AO-basis indices. As described
40
40
in [ Project #3 ] ( https://github.com/CrawfordGroup/ProgrammingProjects/tree/master/Project%2303 ) , a simple algorithm for
@@ -116,22 +116,22 @@ each individual integral to the Fock matrix:
116
116
117
117
Thus a given integral, (ij|kl), would contribute to <b><i>at least two</i></b> Fock matrix elements as:
118
118
119
- <img src="./figures/fock-contribution-1.png" height="25 ">
119
+ <img src="./figures/fock-contribution-1.png" height="20 ">
120
120
121
121
and
122
122
123
- <img src="./figures/fock-contribution-2.png" height="25 ">
123
+ <img src="./figures/fock-contribution-2.png" height="20 ">
124
124
125
125
## Handling Permutational Symmetry
126
126
127
127
The most difficult aspect of the out-of-core algorithm is the fact that file contains only the permutationally unique integrals,
128
128
*(ij|kl)*, such that:
129
129
130
- <img src="./figures/index-restrictions.png" height="25 ">
130
+ <img src="./figures/index-restrictions.png" height="20 ">
131
131
132
132
where
133
133
134
- <img src="./figures/compound-indices.png" height="25 ">
134
+ <img src="./figures/compound-indices.png" height="20 ">
135
135
136
136
Thus, when determining the contribution of a given integral to various elements
137
137
of the Fock matrix, one must consider all possible unique permutations of the
@@ -140,7 +140,7 @@ indices can limit the number of possibilities. For example, if one encountered
140
140
the integral *(22|11)*, it would contribute to a total of <b><i>four</i></b> Fock
141
141
matrix elements, viz.
142
142
143
- <img src="./figures/fock-contribution-3.png" height="25 ">
143
+ <img src="./figures/fock-contribution-3.png" height="20 ">
144
144
145
145
All such cases must be included in the algorithm to obtain a correct Fock matrix.
146
146
0 commit comments