-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.cpp
341 lines (294 loc) · 9.1 KB
/
common.cpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
#define PI 3.1415926535897932384626
#include<stdio.h>
#include"common.h"
/*
Most names of variables follow those of in Szabo 1996, Dover.
*/
/*****************************************************************************
system related variables
*****************************************************************************/
/****************************************************
int Z:
atomic number
****************************************************/
int Z;
/****************************************************
int Enum:
number of electrons
****************************************************/
int Enum;
/****************************************************
int N_up:
number of electrons of spin up
****************************************************/
int N_up;
/****************************************************
int N_down:
number of electrons of spin down
****************************************************/
int N_down;
/****************************************************
int Orbnum:
number of physical orbitals, for example,
1s,2s,2px,2py,2pz
****************************************************/
int Orbnum;
/****************************************************
int *STOnum:
number of STO for each physical orbital
size:
STOnum[Orbnum]
****************************************************/
int *STOnum;
/****************************************************
int Aorbnum:
number of total orbitals,equals to sum(STOnum)
****************************************************/
int Aorbnum;
/****************************************************
Basis *basis:
#Aorbnum Basis structs.
****************************************************/
Basis *basis;
/****************************************************
int *Ct_L:
contraction length for each STO
size:
Ct_L[AOrbnum]
****************************************************/
int *Ct_L;
/****************************************************
double **Ct_D:
contraction coefficient for each primitive
gaussian orbital in STO
size:
Ct_D[Aorbnum][*Ct_L]
****************************************************/
double **Ct_D;
/****************************************************
double **Ct_A:
orbital exponents for each primitive
gaussian orbital in STO
size:
Ct_A[Aorbnum][*Ct_L]
****************************************************/
double **Ct_A;
/****************************************************
int **Ct_M:
orbital angular momentum for each primitive
gaussian orbital in STO
size:
Ct_M[Orbnum][3]
****************************************************/
int **Ct_M;
/****************************************************
double ***rho:
electron density values at Beck grid
size:
rho[2][N_cheb][N_leb]
****************************************************/
double ***rho;
/****************************************************
double ***phi:
basis function values at Beck grid
size:
phi[Aorbnum][N_cheb][N_leb]
****************************************************/
double ***phi;
/****************************************************
double ***vxc:
xc potential values at Beck grid
size:
vxc[2][N_cheb][N_leb]
****************************************************/
double ***vxc;
/****************************************************
int Max_SCF:
maximum interation number
****************************************************/
int Max_SCF;
/****************************************************
double E_Conv:
convergence criteria
****************************************************/
double E_Conv;
/****************************************************
int Xc_flag:
type of exchange correlation.
0: Hartree Fock
1: LSDA
****************************************************/
int Xc_flag;
/*****************************************************************************
SCF related variables
*****************************************************************************/
/****************************************************
double *Etot:
total energy at each SCF step
size:
Etot[Max_SCF]
****************************************************/
double *Etot;
/****************************************************
double Fermi_Energy:
Fermi_Energy at each SCF step
****************************************************/
double Fermi_Energy;
/****************************************************
double **E_tot:
total energy matrix at each SCF step, see Exercise 3.40
size:
E_tot[Aorbnum][Aorbnum]
****************************************************/
double **E_tot;
/****************************************************
double ****Int_two:
two body integral
size:
Int_two[Aorbnum][Aorbnum][Aorbnum][Aorbnum]
****************************************************/
double ****Int_two;
/****************************************************
double ***H:
Hamiltonian matrix. the first index points to spin.
size:
H[2][Aorbnum][Aorbnum]
****************************************************/
double ***H;
/****************************************************
double **H_kin:
kinetic energy matrix.
size:
H_kin[Aorbnum][Aorbnum]
****************************************************/
double **H_kin;
/****************************************************
double **H_ec:
eletron-core interaction matrix.
size:
H_ec[Aorbnum][Aorbnum]
****************************************************/
double **H_ec;
/****************************************************
double **H_core:
one body matrix.
size:
H_core[Aorbnum][Aorbnum]
****************************************************/
double **H_core;
/****************************************************
double **H_ee:
eletron-electron interaction matrix.
size:
H_ee[Aorbnum][Aorbnum]
****************************************************/
double **H_ee;
/****************************************************
double ***H_xc:
Hamiltonian matrix. the first index points to spin.
size:
H_xc[2][Aorbnum][Aorbnum]
****************************************************/
double ***H_xc;
/****************************************************
double **S:
overlap matrix.
size:
S[Aorbnum][Aorbnum]
****************************************************/
double **S;
/****************************************************
double *S_data:
overlap matrix, continuous memory.
size:
S[Aorbnum*Aorbnum]
****************************************************/
double *S_data;
/****************************************************
double ***C:
expansion coefficients of orbitals
over STOs. the first index points to spin.
size:
C[2][Aorbnum][Aorbnum]
****************************************************/
double ***C;
/****************************************************
double ***P_old:
expansion coefficients of orbitals
over STOs. the first index points to spin.
size:
P_old[2][Aorbnum][Aorbnum]
****************************************************/
double ***P_old;
/****************************************************
double **C_data:
expansion coefficients of orbitals, continuous memory.
size:
C[2][Aorbnum*Aorbnum]
****************************************************/
double **C_data;
/****************************************************
double ***P:
spin polarized density matrix.
size:
P[2][Aorbnum][Aorbnum]
****************************************************/
double ***P;
/****************************************************
double **P_tot:
total density matrix.
size:
P[Aorbnum][Aorbnum]
****************************************************/
double **P_tot;
/****************************************************
double **Eorb:
orbital energy
size:
Eorb[2][Aorbnum]
****************************************************/
double **Eorb;
/****************************************************
int SCF_Step:
global variables.
****************************************************/
int SCF_Step;
/****************************************************
double Mixing:
global variables.
****************************************************/
double Mixing;
/*****************************************************************************
useful sub routines
*****************************************************************************/
void Addition(int N, double **A, double **B){
for(int i=0; i<N; i++){
for(int j=0; j<N; j++){
A[i][j]+=B[i][j];
}
}
}
void Set_Zero(int N, double **A){
for(int i = 0;i<N;i++){
for (int j = 0;j<N;j++){
A[i][j] = 0.0;
}
}
}
double Trace(int N, double **A, double **B){
double t = 0.0;
for(int i = 0;i<N;i++){
for(int j = 0;j<N;j++){
t+=A[i][j]*B[j][i];
}
}
return t;
}
void Print_Matrix(int N1, int N2, double **A){
for (int i = 0;i<N1;i++){
for(int j = 0;j<N2;j++){
printf("%.10f ",A[i][j]);
}
printf("\n");
}
}