(git:6d276e9)
Loading...
Searching...
No Matches
cg_optimizer.F
Go to the documentation of this file.
1!--------------------------------------------------------------------------------------------------!
2! CP2K: A general program to perform molecular dynamics simulations !
3! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
4! !
5! SPDX-License-Identifier: GPL-2.0-or-later !
6!--------------------------------------------------------------------------------------------------!
7
8! **************************************************************************************************
9!> \brief Routines for Geometry optimization using Conjugate Gradients
10!> \author Teodoro Laino [teo]
11!> 10.2005
12! **************************************************************************************************
14
15 USE cell_types, ONLY: cell_type
16 USE cg_utils, ONLY: cg_linmin,&
28 USE gopt_f_methods, ONLY: cp_eval_at,&
29 gopt_f_ii,&
30 gopt_f_io,&
35 USE gopt_f_types, ONLY: gopt_f_type
43 USE kinds, ONLY: dp
44 USE machine, ONLY: m_walltime
50#include "../base/base_uses.f90"
51
52 IMPLICIT NONE
53 PRIVATE
54
55 PUBLIC :: geoopt_cg
56 LOGICAL, PRIVATE, PARAMETER :: debug_this_module = .true.
57 CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'cg_optimizer'
58
59CONTAINS
60
61! **************************************************************************************************
62!> \brief Driver for conjugate gradient optimization technique
63!> \param force_env ...
64!> \param gopt_param ...
65!> \param globenv ...
66!> \param geo_section ...
67!> \param gopt_env ...
68!> \param x0 ...
69!> \param do_update ...
70!> \par History
71!> 10.2005 created [tlaino]
72!> \author Teodoro Laino
73! **************************************************************************************************
74 RECURSIVE SUBROUTINE geoopt_cg(force_env, gopt_param, globenv, geo_section, &
75 gopt_env, x0, do_update)
76
77 TYPE(force_env_type), POINTER :: force_env
78 TYPE(gopt_param_type), POINTER :: gopt_param
79 TYPE(global_environment_type), POINTER :: globenv
80 TYPE(section_vals_type), POINTER :: geo_section
81 TYPE(gopt_f_type), POINTER :: gopt_env
82 REAL(kind=dp), DIMENSION(:), POINTER :: x0
83 LOGICAL, INTENT(OUT), OPTIONAL :: do_update
84
85 CHARACTER(len=*), PARAMETER :: routinen = 'geoopt_cg'
86
87 INTEGER :: handle, output_unit
88 LOGICAL :: my_do_update
89 TYPE(cp_logger_type), POINTER :: logger
90 TYPE(cp_subsys_type), POINTER :: subsys
91 TYPE(spgr_type), POINTER :: spgr
92
93 CALL timeset(routinen, handle)
94
95 NULLIFY (spgr)
96 logger => cp_get_default_logger()
97 spgr => gopt_env%spgr
98
99 output_unit = cp_print_key_unit_nr(logger, geo_section, "PRINT%PROGRAM_RUN_INFO", &
100 extension=".geoLog")
101 CALL print_geo_opt_header(gopt_env, output_unit, "CONJUGATE GRADIENTS")
102
103 ! find space_group
104 CALL force_env_get(force_env, subsys=subsys)
105 CALL section_vals_val_get(geo_section, "KEEP_SPACE_GROUP", l_val=spgr%keep_space_group)
106 IF (spgr%keep_space_group) THEN
107 SELECT CASE (gopt_env%type_id)
109 CALL force_env_get(force_env, subsys=subsys)
110 CALL identify_space_group(subsys, geo_section, gopt_env, output_unit)
111 CALL spgr_apply_rotations_coord(spgr, x0)
112 CALL print_spgr(spgr)
114 CALL force_env_get(force_env, subsys=subsys)
115 CALL identify_space_group(subsys, geo_section, gopt_env, output_unit)
116 CALL spgr_apply_rotations_coord(spgr, x0)
117 CALL print_spgr(spgr)
118 CASE DEFAULT
119 spgr%keep_space_group = .false.
120 END SELECT
121 END IF
122
123 CALL cp_cg_main(force_env, x0, gopt_param, output_unit, globenv, &
124 gopt_env, do_update=my_do_update)
125
126 ! show space_group
127 CALL section_vals_val_get(geo_section, "SHOW_SPACE_GROUP", l_val=spgr%show_space_group)
128 IF (spgr%show_space_group) THEN
129 IF (spgr%keep_space_group) THEN
130 CALL force_env_get(force_env, subsys=subsys)
131 END IF
132 CALL identify_space_group(subsys, geo_section, gopt_env, output_unit)
133 CALL print_spgr(spgr)
134 END IF
135
136 CALL cp_print_key_finished_output(output_unit, logger, geo_section, &
137 "PRINT%PROGRAM_RUN_INFO")
138 IF (PRESENT(do_update)) do_update = my_do_update
139
140 CALL timestop(handle)
141
142 END SUBROUTINE geoopt_cg
143
144! **************************************************************************************************
145!> \brief This really performs the conjugate gradients optimization
146!> \param force_env ...
147!> \param x0 ...
148!> \param gopt_param ...
149!> \param output_unit ...
150!> \param globenv ...
151!> \param gopt_env ...
152!> \param do_update ...
153!> \par History
154!> 10.2005 created [tlaino]
155!> \author Teodoro Laino
156! **************************************************************************************************
157 RECURSIVE SUBROUTINE cp_cg_main(force_env, x0, gopt_param, output_unit, globenv, &
158 gopt_env, do_update)
159 TYPE(force_env_type), POINTER :: force_env
160 REAL(kind=dp), DIMENSION(:), POINTER :: x0
161 TYPE(gopt_param_type), POINTER :: gopt_param
162 INTEGER, INTENT(IN) :: output_unit
163 TYPE(global_environment_type), POINTER :: globenv
164 TYPE(gopt_f_type), POINTER :: gopt_env
165 LOGICAL, INTENT(OUT), OPTIONAL :: do_update
166
167 CHARACTER(len=*), PARAMETER :: routinen = 'cp_cg_main'
168
169 CHARACTER(LEN=5) :: wildcard
170 INTEGER :: handle, iter_nr, its, max_steep_steps, &
171 maxiter
172 LOGICAL :: conv, fletcher_reeves, &
173 save_consistent_energy_force, &
174 should_stop
175 REAL(kind=dp) :: emin, eold, opt_energy, res_lim, t_diff, &
176 t_now, t_old
177 REAL(kind=dp), ALLOCATABLE, DIMENSION(:) :: xold
178 REAL(kind=dp), DIMENSION(:), POINTER :: g, h, xi
179 TYPE(cell_type), POINTER :: cell
180 TYPE(cp_logger_type), POINTER :: logger
181 TYPE(cp_subsys_type), POINTER :: subsys
182 TYPE(section_vals_type), POINTER :: root_section
183 TYPE(spgr_type), POINTER :: spgr
184
185 CALL timeset(routinen, handle)
186 t_old = m_walltime()
187 NULLIFY (logger, g, h, xi, spgr)
188 root_section => force_env%root_section
189 logger => cp_get_default_logger()
190 conv = .false.
191 maxiter = gopt_param%max_iter
192 max_steep_steps = gopt_param%max_steep_steps
193 fletcher_reeves = gopt_param%Fletcher_Reeves
194 res_lim = gopt_param%restart_limit
195 ALLOCATE (g(SIZE(x0)))
196 ALLOCATE (h(SIZE(x0)))
197 ALLOCATE (xi(SIZE(x0)))
198 ALLOCATE (xold(SIZE(x0)))
199 CALL force_env_get(force_env, cell=cell, subsys=subsys)
200
201 spgr => gopt_env%spgr
202 ! applies rotation matrices to coordinates
203 IF (spgr%keep_space_group) THEN
204 CALL spgr_apply_rotations_coord(spgr, x0)
205 END IF
206
207 ! Evaluate energy and forces at the first step
208 ![NB] consistent energies and forces not required for CG, but some line minimizers might set it
209 save_consistent_energy_force = gopt_env%require_consistent_energy_force
210 gopt_env%require_consistent_energy_force = .false.
211
212 CALL cp_eval_at(gopt_env, x0, opt_energy, xi, master=gopt_env%force_env%para_env%mepos, &
213 para_env=gopt_env%force_env%para_env)
214
215 gopt_env%require_consistent_energy_force = save_consistent_energy_force
216
217 ! Symmetrize coordinates and forces
218 IF (spgr%keep_space_group) THEN
219 CALL spgr_apply_rotations_coord(spgr, x0)
220 CALL spgr_apply_rotations_force(spgr, xi)
221 END IF
222
223 g = -xi
224 h = g
225 xi = h
226 emin = huge(0.0_dp)
227 CALL cp_iterate(logger%iter_info, increment=0, iter_nr_out=iter_nr)
228 ! Main Loop
229 wildcard = " SD"
230 t_now = m_walltime()
231 t_diff = t_now - t_old
232 t_old = t_now
233 CALL gopt_f_io_init(gopt_env, output_unit, opt_energy, wildcard, used_time=t_diff, its=iter_nr)
234 eold = opt_energy
235 DO its = iter_nr + 1, maxiter
236 CALL cp_iterate(logger%iter_info, last=(its == maxiter))
237 CALL section_vals_val_set(gopt_env%geo_section, "STEP_START_VAL", i_val=its)
238 CALL gopt_f_ii(its, output_unit)
239
240 ! Symmetrize coordinates and forces
241 IF (spgr%keep_space_group) THEN
242 CALL spgr_apply_rotations_coord(spgr, x0)
243 CALL spgr_apply_rotations_force(spgr, g)
244 CALL spgr_apply_rotations_force(spgr, xi)
245 END IF
246
247 xold(:) = x0
248
249 ! Line minimization
250 CALL cg_linmin(gopt_env, x0, xi, g, opt_energy, output_unit, gopt_param, globenv)
251
252 ! Applies rotation matrices to coordinates
253 IF (spgr%keep_space_group) THEN
254 CALL spgr_apply_rotations_coord(spgr, x0)
255 END IF
256
257 ! Check for an external exit command
258 CALL external_control(should_stop, "GEO", globenv=globenv)
259 IF (should_stop) EXIT
260
261 ! Some IO and Convergence check
262 t_now = m_walltime()
263 t_diff = t_now - t_old
264 t_old = t_now
265 CALL gopt_f_io(gopt_env, force_env, root_section, its, opt_energy, &
266 output_unit, eold, emin, wildcard, gopt_param, SIZE(x0), x0 - xold, xi, conv, &
267 used_time=t_diff)
268 eold = opt_energy
269 emin = min(emin, opt_energy)
270
271 IF (conv .OR. (its == maxiter)) EXIT
272 ![NB] consistent energies and forces not required for CG, but some line minimizers might set it
273 save_consistent_energy_force = gopt_env%require_consistent_energy_force
274 gopt_env%require_consistent_energy_force = .false.
275
276 CALL cp_eval_at(gopt_env, x0, opt_energy, xi, master=gopt_env%force_env%para_env%mepos, &
277 para_env=gopt_env%force_env%para_env)
278
279 gopt_env%require_consistent_energy_force = save_consistent_energy_force
280
281 ! Symmetrize coordinates and forces
282 IF (spgr%keep_space_group) THEN
283 CALL spgr_apply_rotations_force(spgr, xi)
284 END IF
285
286 ! Get Conjugate Directions: updates the searching direction (h)
287 wildcard = " CG"
288 CALL get_conjugate_direction(gopt_env, fletcher_reeves, g, xi, h)
289
290 ! Symmetrize coordinates and forces
291 IF (spgr%keep_space_group) THEN
292 CALL spgr_apply_rotations_force(spgr, g)
293 CALL spgr_apply_rotations_force(spgr, h)
294 END IF
295
296 ! Reset Condition or Steepest Descent Requested
297 ! ABS(DOT_PRODUCT(g, h))/SQRT((DOT_PRODUCT(g, g)*DOT_PRODUCT(h, h))) > res_lim ...
298 IF ((dot_product(g, h)*dot_product(g, h)) > (res_lim*res_lim*dot_product(g, g)*dot_product(h, h)) &
299 .OR. its + 1 <= max_steep_steps) THEN
300 ! Steepest Descent
301 wildcard = " SD"
302 h = -xi
303 END IF
304 g = -xi
305 xi = h
306 END DO
307
308 IF (its == maxiter .AND. (.NOT. conv)) THEN
309 CALL print_geo_opt_nc(gopt_env, output_unit)
310 END IF
311
312 ! Write final particle information and restart, if converged
313 IF (PRESENT(do_update)) do_update = conv
314 CALL cp_iterate(logger%iter_info, last=.true., increment=0)
315 CALL gopt_f_io_finalize(gopt_env, force_env, x0, conv, its, root_section, &
316 gopt_env%force_env%para_env, gopt_env%force_env%para_env%mepos, output_unit)
317
318 DEALLOCATE (xold)
319 DEALLOCATE (g)
320 DEALLOCATE (h)
321 DEALLOCATE (xi)
322
323 CALL timestop(handle)
324
325 END SUBROUTINE cp_cg_main
326
327END MODULE cg_optimizer
Handles all functions related to the CELL.
Definition cell_types.F:15
Routines for Geometry optimization using Conjugate Gradients.
recursive subroutine, public geoopt_cg(force_env, gopt_param, globenv, geo_section, gopt_env, x0, do_update)
Driver for conjugate gradient optimization technique.
Utilities for Geometry optimization using Conjugate Gradients.
Definition cg_utils.F:13
subroutine, public get_conjugate_direction(gopt_env, fletcher_reeves, g, xi, h)
Computes the Conjugate direction for the next search.
Definition cg_utils.F:1035
recursive subroutine, public cg_linmin(gopt_env, xvec, xi, g, opt_energy, output_unit, gopt_param, globenv)
Main driver for line minimization routines for CG.
Definition cg_utils.F:59
Routines to handle the external control of CP2K.
subroutine, public external_control(should_stop, flag, globenv, target_time, start_time, force_check)
External manipulations during a run : when the <PROJECT_NAME>.EXIT_$runtype command is sent the progr...
various routines to log and control the output. The idea is that decisions about where to log should ...
type(cp_logger_type) function, pointer, public cp_get_default_logger()
returns the default logger
routines to handle the output, The idea is to remove the decision of wheter to output and what to out...
integer function, public cp_print_key_unit_nr(logger, basis_section, print_key_path, extension, middle_name, local, log_filename, ignore_should_output, file_form, file_position, file_action, file_status, do_backup, on_file, is_new_file, mpi_io, fout)
...
subroutine, public cp_print_key_finished_output(unit_nr, logger, basis_section, print_key_path, local, ignore_should_output, on_file, mpi_io)
should be called after you finish working with a unit obtained with cp_print_key_unit_nr,...
subroutine, public cp_iterate(iteration_info, last, iter_nr, increment, iter_nr_out)
adds one to the actual iteration
types that represent a subsys, i.e. a part of the system
Interface for the force calculations.
recursive subroutine, public force_env_get(force_env, in_use, fist_env, qs_env, meta_env, fp_env, subsys, para_env, potential_energy, additional_potential, kinetic_energy, harmonic_shell, kinetic_shell, cell, sub_force_env, qmmm_env, qmmmx_env, eip_env, pwdft_env, globenv, input, force_env_section, method_name_id, root_section, mixed_env, nnp_env, embed_env, ipi_env)
returns various attributes about the force environment
Define type storing the global information of a run. Keep the amount of stored data small....
contains a functional that calculates the energy and its derivatives for the geometry optimizer
subroutine, public print_geo_opt_header(gopt_env, output_unit, label)
...
subroutine, public gopt_f_io_init(gopt_env, output_unit, opt_energy, wildcard, its, used_time)
Handles the Output during an optimization run.
recursive subroutine, public gopt_f_io_finalize(gopt_env, force_env, x0, conv, its, root_section, para_env, master, output_unit)
Handles the Output at the end of an optimization run.
subroutine, public gopt_f_io(gopt_env, force_env, root_section, its, opt_energy, output_unit, eold, emin, wildcard, gopt_param, ndf, dx, xi, conv, pred, rat, step, rad, used_time)
Handles the Output during an optimization run.
subroutine, public print_geo_opt_nc(gopt_env, output_unit)
...
subroutine, public cp_eval_at(gopt_env, x, f, gradient, master, final_evaluation, para_env)
evaluete the potential energy and its gradients using an array with same dimension as the particle_se...
subroutine, public gopt_f_ii(its, output_unit)
Prints iteration step of the optimization procedure on screen.
contains a functional that calculates the energy and its derivatives for the geometry optimizer
contains typo and related routines to handle parameters controlling the GEO_OPT module
collects all constants needed in input so that they can be used without circular dependencies
integer, parameter, public default_cell_method_id
integer, parameter, public default_minimization_method_id
integer, parameter, public default_ts_method_id
objects that represent the structure of input sections and the data contained in an input section
subroutine, public section_vals_val_set(section_vals, keyword_name, i_rep_section, i_rep_val, val, l_val, i_val, r_val, c_val, l_vals_ptr, i_vals_ptr, r_vals_ptr, c_vals_ptr)
sets the requested value
subroutine, public section_vals_val_get(section_vals, keyword_name, i_rep_section, i_rep_val, n_rep_val, val, l_val, i_val, r_val, c_val, l_vals, i_vals, r_vals, c_vals, explicit)
returns the requested value
Defines the basic variable types.
Definition kinds.F:23
integer, parameter, public dp
Definition kinds.F:34
Machine interface based on Fortran 2003 and POSIX.
Definition machine.F:17
real(kind=dp) function, public m_walltime()
returns time from a real-time clock, protected against rolling early/easily
Definition machine.F:141
Space Group Symmetry Type Module (version 1.0, Ferbruary 12, 2021)
Space Group Symmetry Module (version 1.0, January 16, 2020)
subroutine, public print_spgr(spgr)
routine prints Space Group Information.
subroutine, public spgr_apply_rotations_coord(spgr, coord)
routine applies the rotation matrices to the coordinates.
subroutine, public identify_space_group(subsys, geo_section, gopt_env, iunit)
routine indentifies the space group and finds rotation matrices.
subroutine, public spgr_apply_rotations_force(spgr, force)
routine applies the rotation matrices to the forces.
Type defining parameters related to the simulation cell.
Definition cell_types.F:60
type of a logger, at the moment it contains just a print level starting at which level it should be l...
represents a system: atoms, molecules, their pos,vel,...
wrapper to abstract the force evaluation of the various methods
contains the initially parsed file and the initial parallel environment
calculates the potential energy of a system, and its derivatives