forked from cp2k/cp2k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom_optimization.F
242 lines (207 loc) · 9.58 KB
/
atom_optimization.F
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
!--------------------------------------------------------------------------------------------------!
! CP2K: A general program to perform molecular dynamics simulations !
! Copyright (C) 2000 - 2019 CP2K developers group !
!--------------------------------------------------------------------------------------------------!
! **************************************************************************************************
!> \brief Optimizer for the atomic code
! **************************************************************************************************
MODULE atom_optimization
USE atom_types, ONLY: atom_optimization_type
USE kinds, ONLY: dp
USE lapack, ONLY: lapack_sgelss
#include "./base/base_uses.f90"
IMPLICIT NONE
PRIVATE
CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'atom_optimization'
TYPE hmat_type
REAL(dp) :: energy
REAL(dp) :: error
REAL(dp), DIMENSION(:, :, :), POINTER :: emat
REAL(dp), DIMENSION(:, :, :), POINTER :: fmat
REAL(dp), DIMENSION(:, :, :), POINTER :: pmat
END TYPE hmat_type
TYPE atom_history_type
INTEGER :: max_history
INTEGER :: hlen
INTEGER :: hpos
REAL(dp) :: damping
REAL(dp) :: eps_diis
REAL(dp), DIMENSION(:, :), POINTER :: dmat
TYPE(hmat_type), DIMENSION(:), POINTER :: hmat
END TYPE atom_history_type
PUBLIC :: atom_opt_fmat, &
atom_history_type, atom_history_init, atom_history_update, atom_history_release
CONTAINS
! **************************************************************************************************
!> \brief Initialise a circular buffer to keep Kohn-Sham and density matrices from previous iteration.
!> \param history object to initialise
!> \param optimization optimisation parameters
!> \param matrix reference matrix. Historic matrices will have the same size as
!> this reference matrix
!> \par History
!> * 08.2016 new structure element: density matrix [Juerg Hutter]
!> * 08.2008 created [Juerg Hutter]
! **************************************************************************************************
SUBROUTINE atom_history_init(history, optimization, matrix)
TYPE(atom_history_type), INTENT(INOUT) :: history
TYPE(atom_optimization_type), INTENT(IN) :: optimization
REAL(dp), DIMENSION(:, :, :), INTENT(IN) :: matrix
CHARACTER(len=*), PARAMETER :: routineN = 'atom_history_init', &
routineP = moduleN//':'//routineN
INTEGER :: i, n1, n2, n3, ndiis
REAL(dp) :: damp, eps
ndiis = optimization%n_diis
eps = optimization%eps_diis
damp = optimization%damping
CALL atom_history_release(history)
history%max_history = ndiis
history%hlen = 0
history%hpos = 0
history%damping = damp
history%eps_diis = eps
ALLOCATE (history%dmat(ndiis+1, ndiis+1))
ALLOCATE (history%hmat(ndiis))
n1 = SIZE(matrix, 1)
n2 = SIZE(matrix, 2)
n3 = SIZE(matrix, 3)
DO i = 1, ndiis
history%hmat(i)%energy = 0.0_dp
history%hmat(i)%error = 0.0_dp
ALLOCATE (history%hmat(i)%emat(n1, n2, n3))
ALLOCATE (history%hmat(i)%fmat(n1, n2, n3))
ALLOCATE (history%hmat(i)%pmat(n1, n2, n3))
END DO
END SUBROUTINE atom_history_init
! **************************************************************************************************
!> \brief Add matrices from the current iteration into the circular buffer.
!> \param history object to keep historic matrices
!> \param pmat density matrix
!> \param fmat Kohn-Sham matrix
!> \param emat error matrix
!> \param energy total energy
!> \param error convergence
!> \par History
!> * 08.2016 new formal argument: density matrix [Juerg Hutter]
!> * 08.2008 created [Juerg Hutter]
! **************************************************************************************************
SUBROUTINE atom_history_update(history, pmat, fmat, emat, energy, error)
TYPE(atom_history_type), INTENT(INOUT) :: history
REAL(dp), DIMENSION(:, :, :), INTENT(IN) :: pmat, fmat, emat
REAL(dp), INTENT(IN) :: energy, error
CHARACTER(len=*), PARAMETER :: routineN = 'atom_history_update', &
routineP = moduleN//':'//routineN
INTEGER :: nlen, nmax, nnow
nmax = history%max_history
nlen = MIN(history%hlen+1, nmax)
nnow = history%hpos+1
IF (nnow > nmax) nnow = 1
history%hmat(nnow)%energy = energy
history%hmat(nnow)%error = error
history%hmat(nnow)%pmat = pmat
history%hmat(nnow)%fmat = fmat
history%hmat(nnow)%emat = emat
history%hlen = nlen
history%hpos = nnow
END SUBROUTINE atom_history_update
! **************************************************************************************************
!> \brief Release circular buffer to keep historic matrices.
!> \param history object to release
!> \par History
!> * 08.2008 created [Juerg Hutter]
! **************************************************************************************************
SUBROUTINE atom_history_release(history)
TYPE(atom_history_type), INTENT(INOUT) :: history
CHARACTER(len=*), PARAMETER :: routineN = 'atom_history_release', &
routineP = moduleN//':'//routineN
INTEGER :: i
history%max_history = 0
history%hlen = 0
history%hpos = 0
history%damping = 0._dp
history%eps_diis = 0._dp
IF (ASSOCIATED(history%dmat)) THEN
DEALLOCATE (history%dmat)
END IF
IF (ASSOCIATED(history%hmat)) THEN
DO i = 1, SIZE(history%hmat)
IF (ASSOCIATED(history%hmat(i)%emat)) THEN
DEALLOCATE (history%hmat(i)%emat)
END IF
IF (ASSOCIATED(history%hmat(i)%fmat)) THEN
DEALLOCATE (history%hmat(i)%fmat)
END IF
IF (ASSOCIATED(history%hmat(i)%pmat)) THEN
DEALLOCATE (history%hmat(i)%pmat)
END IF
END DO
DEALLOCATE (history%hmat)
END IF
END SUBROUTINE atom_history_release
! **************************************************************************************************
!> \brief Construct a Kohn-Sham matrix for the next iteration based on the historic data.
!> \param fmat new Kohn-Sham matrix
!> \param history historic matrices
!> \param err convergence
!> \par History
!> * 08.2016 renamed to atom_opt_fmat() [Juerg Hutter]
!> * 08.2008 created as atom_opt() [Juerg Hutter]
! **************************************************************************************************
SUBROUTINE atom_opt_fmat(fmat, history, err)
REAL(dp), DIMENSION(:, :, :), INTENT(INOUT) :: fmat
TYPE(atom_history_type), INTENT(INOUT) :: history
REAL(dp), INTENT(IN) :: err
CHARACTER(len=*), PARAMETER :: routineN = 'atom_opt_fmat', routineP = moduleN//':'//routineN
INTEGER :: i, info, j, lwork, na, nb, nlen, nm, &
nmax, nnow, rank
REAL(dp) :: a, rcond, t
REAL(dp), ALLOCATABLE, DIMENSION(:) :: s, work
REAL(dp), ALLOCATABLE, DIMENSION(:, :) :: vec
nmax = history%max_history
nnow = history%hpos
a = history%damping
IF (history%hlen > 1) THEN
IF (err < history%eps_diis) THEN
! DIIS
rcond = 1.e-10_dp
lwork = 25*nmax
ALLOCATE (vec(nmax+1, 2), s(nmax+1), work(lwork))
nlen = history%hlen
vec = 0._dp
vec(nlen+1, 1) = 1._dp
history%dmat(1:nlen, nlen+1) = 1._dp
history%dmat(nlen+1, 1:nlen) = 1._dp
history%dmat(nlen+1, nlen+1) = 0._dp
DO i = 1, nlen
na = nnow+1-i
IF (na < 1) na = nmax+na
DO j = i, nlen
nb = nnow+1-j
IF (nb < 1) nb = nmax+nb
t = SUM(history%hmat(na)%emat*history%hmat(nb)%emat)
history%dmat(i, j) = t
history%dmat(j, i) = t
END DO
END DO
CALL lapack_sgelss(nlen+1, nlen+1, 1, history%dmat, nmax+1, vec, nmax+1, s, &
rcond, rank, work, lwork, info)
CPASSERT(info == 0)
fmat = 0._dp
DO i = 1, nlen
na = nnow+1-i
IF (na < 1) na = nmax+na
fmat = fmat+vec(i, 1)*history%hmat(na)%fmat
END DO
DEALLOCATE (vec, s, work)
ELSE
! damping
nm = nnow-1
IF (nm < 1) nm = history%max_history
fmat = a*history%hmat(nnow)%fmat+(1._dp-a)*history%hmat(nm)%fmat
END IF
ELSEIF (history%hlen == 1) THEN
fmat = history%hmat(nnow)%fmat
ELSE
CPABORT("")
END IF
END SUBROUTINE atom_opt_fmat
END MODULE atom_optimization