(git:41cb813)
Loading...
Searching...
No Matches
qs_ot_scf.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 basic functionality for using ot in the scf routines.
10!> \par History
11!> 01.2003 : Joost VandeVondele : adapted for LSD
12!> \author Joost VandeVondele (25.08.2002)
13! **************************************************************************************************
16 USE cp_dbcsr_api, ONLY: &
18 dbcsr_set, dbcsr_type, dbcsr_type_no_symmetry
19 USE cp_dbcsr_contrib, ONLY: dbcsr_dot,&
25 USE cp_fm_types, ONLY: cp_fm_type
33 USE kinds, ONLY: dp
35 USE qs_mo_types, ONLY: get_mo_set,&
38 USE qs_ot, ONLY: qs_ot_get_orbitals,&
41 USE qs_ot_minimizer, ONLY: ot_mini
49#include "./base/base_uses.f90"
50
51 IMPLICIT NONE
52
53 PRIVATE
54
55 CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'qs_ot_scf'
56 ! *** Public subroutines ***
57
58 PUBLIC :: ot_scf_init
59 PUBLIC :: ot_scf_mini
60 PUBLIC :: ot_scf_destroy
61 PUBLIC :: ot_scf_read_input
62
63CONTAINS
64
65! **************************************************************************************************
66!> \brief ...
67!> \param qs_ot_env ...
68!> \param scf_section ...
69! **************************************************************************************************
70 SUBROUTINE ot_scf_read_input(qs_ot_env, scf_section)
71 TYPE(qs_ot_type), DIMENSION(:), POINTER :: qs_ot_env
72 TYPE(section_vals_type), POINTER :: scf_section
73
74 CHARACTER(len=*), PARAMETER :: routinen = 'ot_scf_read_input'
75
76 INTEGER :: handle, ispin, nspin, output_unit
77 LOGICAL :: explicit
78 TYPE(cp_logger_type), POINTER :: logger
79 TYPE(section_vals_type), POINTER :: ot_section
80
81 CALL timeset(routinen, handle)
82
83 logger => cp_get_default_logger()
84 output_unit = cp_print_key_unit_nr(logger, scf_section, "PRINT%PROGRAM_RUN_INFO", &
85 extension=".log")
86
87 ! decide default settings
88 CALL qs_ot_settings_init(qs_ot_env(1)%settings)
89
90 ! use ot input new style
91 ot_section => section_vals_get_subs_vals(scf_section, "OT")
92 CALL section_vals_get(ot_section, explicit=explicit)
93
94 CALL ot_readwrite_input(qs_ot_env(1)%settings, ot_section, output_unit)
95
96 CALL cp_print_key_finished_output(output_unit, logger, scf_section, &
97 "PRINT%PROGRAM_RUN_INFO")
98
99 ! copy the ot settings type so it is identical
100 nspin = SIZE(qs_ot_env)
101 DO ispin = 2, nspin
102 qs_ot_env(ispin)%settings = qs_ot_env(1)%settings
103 END DO
104
105 CALL timestop(handle)
106
107 END SUBROUTINE ot_scf_read_input
108
109! **************************************************************************************************
110!> \brief performs the actual minimisation, needs only limited info
111!> updated for restricted calculations
112!> matrix_dedc is the derivative of the energy with respect to the orbitals (except for a factor 2*fi)
113!> a null pointer for matrix_s implies that matrix_s is the unit matrix
114!> \param mo_array ...
115!> \param matrix_dedc ...
116!> \param smear ...
117!> \param matrix_s ...
118!> \param energy ...
119!> \param energy_only ...
120!> \param delta ...
121!> \param qs_ot_env ...
122! **************************************************************************************************
123 SUBROUTINE ot_scf_mini(mo_array, matrix_dedc, smear, matrix_s, energy, &
124 energy_only, delta, qs_ot_env)
125
126 TYPE(mo_set_type), DIMENSION(:), INTENT(INOUT) :: mo_array
127 TYPE(dbcsr_p_type), DIMENSION(:), POINTER :: matrix_dedc
128 TYPE(smear_type), POINTER :: smear
129 TYPE(dbcsr_type), POINTER :: matrix_s
130 REAL(kind=dp) :: energy
131 LOGICAL, INTENT(INOUT) :: energy_only
132 REAL(kind=dp) :: delta
133 TYPE(qs_ot_type), DIMENSION(:), POINTER :: qs_ot_env
134
135 CHARACTER(len=*), PARAMETER :: routinen = 'ot_scf_mini'
136
137 INTEGER :: handle, ispin, k, n, nspin
138 REAL(kind=dp) :: ener_nondiag, trace
139 TYPE(cp_1d_r_p_type), ALLOCATABLE, DIMENSION(:) :: expectation_values, occupation_numbers, &
140 scaling_factor
141 TYPE(cp_logger_type), POINTER :: logger
142 TYPE(dbcsr_p_type), DIMENSION(:), POINTER :: matrix_dedc_scaled
143 TYPE(dbcsr_type), POINTER :: mo_coeff
144
145 CALL timeset(routinen, handle)
146
147 NULLIFY (logger)
148 logger => cp_get_default_logger()
149
150 nspin = SIZE(mo_array)
151
152 ALLOCATE (occupation_numbers(nspin))
153 ALLOCATE (scaling_factor(nspin))
154
155 IF (qs_ot_env(1)%settings%do_ener) THEN
156 ALLOCATE (expectation_values(nspin))
157 END IF
158
159 DO ispin = 1, nspin
160 CALL get_mo_set(mo_set=mo_array(ispin), occupation_numbers=occupation_numbers(ispin)%array)
161 ALLOCATE (scaling_factor(ispin)%array(SIZE(occupation_numbers(ispin)%array)))
162 scaling_factor(ispin)%array = 2.0_dp*occupation_numbers(ispin)%array
163 IF (qs_ot_env(1)%settings%do_ener) THEN
164 ALLOCATE (expectation_values(ispin)%array(SIZE(occupation_numbers(ispin)%array)))
165 END IF
166 END DO
167
168 ! optimizing orbital energies somehow implies non-equivalent orbitals
169 IF (qs_ot_env(1)%settings%do_ener) THEN
170 cpassert(qs_ot_env(1)%settings%do_rotation)
171 END IF
172 ! add_nondiag_energy requires do_ener
173 IF (qs_ot_env(1)%settings%add_nondiag_energy) THEN
174 cpassert(qs_ot_env(1)%settings%do_ener)
175 END IF
176
177 ! get a rotational force
178 IF (.NOT. energy_only) THEN
179 IF (qs_ot_env(1)%settings%do_rotation) THEN
180 DO ispin = 1, SIZE(qs_ot_env)
181 CALL get_mo_set(mo_set=mo_array(ispin), mo_coeff_b=mo_coeff)
182 CALL dbcsr_get_info(mo_coeff, nfullrows_total=n, nfullcols_total=k)
183 CALL dbcsr_multiply('T', 'N', 1.0_dp, mo_coeff, matrix_dedc(ispin)%matrix, &
184 0.0_dp, qs_ot_env(ispin)%rot_mat_chc)
185 CALL dbcsr_copy(qs_ot_env(ispin)%matrix_buf1, qs_ot_env(ispin)%rot_mat_chc)
186
187 CALL dbcsr_scale_by_vector(qs_ot_env(ispin)%matrix_buf1, alpha=scaling_factor(ispin)%array, side='right')
188 ! create the derivative of the energy wrt to rot_mat_u
189 CALL dbcsr_multiply('N', 'N', 1.0_dp, qs_ot_env(ispin)%rot_mat_u, qs_ot_env(ispin)%matrix_buf1, &
190 0.0_dp, qs_ot_env(ispin)%rot_mat_dedu)
191 END DO
192
193 ! here we construct the derivative of the free energy with respect to the evals
194 ! (note that this requires the diagonal elements of chc)
195 ! the mo occupations should in principle remain unaltered
196 IF (qs_ot_env(1)%settings%do_ener) THEN
197 DO ispin = 1, SIZE(mo_array)
198 CALL dbcsr_get_diag(qs_ot_env(ispin)%rot_mat_chc, expectation_values(ispin)%array)
199 qs_ot_env(ispin)%ener_gx = expectation_values(ispin)%array
200 CALL set_mo_occupation(mo_set=mo_array(ispin), &
201 smear=smear, eval_deriv=qs_ot_env(ispin)%ener_gx)
202 END DO
203 END IF
204
205 ! chc only needs to be stored in u independent form if we require add_nondiag_energy,
206 ! which will use it in non-selfconsistent form for e.g. the linesearch
207 ! transform C^T H C -> U C^T H C U ^ T
208 IF (qs_ot_env(1)%settings%add_nondiag_energy) THEN
209 DO ispin = 1, SIZE(qs_ot_env)
210 CALL dbcsr_get_info(qs_ot_env(ispin)%rot_mat_u, nfullcols_total=k)
211 CALL dbcsr_multiply('N', 'N', 1.0_dp, qs_ot_env(ispin)%rot_mat_u, qs_ot_env(ispin)%rot_mat_chc, &
212 0.0_dp, qs_ot_env(ispin)%matrix_buf1)
213 CALL dbcsr_multiply('N', 'T', 1.0_dp, qs_ot_env(ispin)%matrix_buf1, qs_ot_env(ispin)%rot_mat_u, &
214 0.0_dp, qs_ot_env(ispin)%rot_mat_chc)
215 END DO
216 END IF
217 END IF
218 END IF
219
220 ! evaluate non-diagonal energy contribution
221 ener_nondiag = 0.0_dp
222 IF (qs_ot_env(1)%settings%add_nondiag_energy) THEN
223 DO ispin = 1, SIZE(qs_ot_env)
224 ! transform \tilde H to the current basis of C (assuming non-selfconsistent H)
225 CALL dbcsr_get_info(qs_ot_env(ispin)%rot_mat_u, nfullcols_total=k)
226 CALL dbcsr_multiply('T', 'N', 1.0_dp, qs_ot_env(ispin)%rot_mat_u, qs_ot_env(ispin)%rot_mat_chc, &
227 0.0_dp, qs_ot_env(ispin)%matrix_buf1)
228 CALL dbcsr_multiply('N', 'N', 1.0_dp, qs_ot_env(ispin)%matrix_buf1, qs_ot_env(ispin)%rot_mat_u, &
229 0.0_dp, qs_ot_env(ispin)%matrix_buf2)
230
231 ! subtract the current ener_x from the diagonal
232 CALL dbcsr_get_diag(qs_ot_env(ispin)%matrix_buf2, expectation_values(ispin)%array)
233 expectation_values(ispin)%array = expectation_values(ispin)%array - qs_ot_env(ispin)%ener_x
234 CALL dbcsr_set_diag(qs_ot_env(ispin)%matrix_buf2, expectation_values(ispin)%array)
235
236 ! get nondiag energy trace (D^T D)
237 CALL dbcsr_dot(qs_ot_env(ispin)%matrix_buf2, qs_ot_env(ispin)%matrix_buf2, trace)
238 ener_nondiag = ener_nondiag + 0.5_dp*qs_ot_env(1)%settings%nondiag_energy_strength*trace
239
240 ! get gradient (again ignoring dependencies of H)
241 IF (.NOT. energy_only) THEN
242 ! first for the ener_x (-2*(diag(C^T H C)-ener_x))
243 qs_ot_env(ispin)%ener_gx = qs_ot_env(ispin)%ener_gx - &
244 qs_ot_env(1)%settings%nondiag_energy_strength*expectation_values(ispin)%array
245
246 ! next for the rot_mat_u derivative (2 * k * \tilde H U D)
247 CALL dbcsr_multiply('N', 'N', 1.0_dp, qs_ot_env(ispin)%rot_mat_chc, qs_ot_env(ispin)%rot_mat_u, &
248 0.0_dp, qs_ot_env(ispin)%matrix_buf1)
249 CALL dbcsr_multiply('N', 'N', 2.0_dp*qs_ot_env(1)%settings%nondiag_energy_strength, &
250 qs_ot_env(ispin)%matrix_buf1, qs_ot_env(ispin)%matrix_buf2, &
251 1.0_dp, qs_ot_env(ispin)%rot_mat_dedu)
252 END IF
253 END DO
254 END IF
255
256 ! this is kind of a hack so far (costly memory wise), we locally recreate the scaled matrix_hc, and
257 ! use it in the following, eventually, as occupations numbers get more integrated, it should become possible
258 ! to remove this.
259 ALLOCATE (matrix_dedc_scaled(SIZE(matrix_dedc)))
260 DO ispin = 1, SIZE(matrix_dedc)
261 ALLOCATE (matrix_dedc_scaled(ispin)%matrix)
262 CALL dbcsr_copy(matrix_dedc_scaled(ispin)%matrix, matrix_dedc(ispin)%matrix)
263
264 ! as a preconditioner, one might want to scale only with a constant, not with f(i)
265 ! for the convergence criterion, maybe take it back out
266 IF (qs_ot_env(1)%settings%occupation_preconditioner) THEN
267 scaling_factor(ispin)%array = 2.0_dp
268 END IF
269 CALL dbcsr_scale_by_vector(matrix_dedc_scaled(ispin)%matrix, alpha=scaling_factor(ispin)%array, side='right')
270 END DO
271
272 ! notice we use qs_ot_env(1) for driving all output and the minimization in case of LSD
273 qs_ot_env(1)%etotal = energy + ener_nondiag
274
275 CALL ot_mini(qs_ot_env, matrix_dedc_scaled)
276
277 delta = qs_ot_env(1)%delta
278 energy_only = qs_ot_env(1)%energy_only
279
280 ! generate the orbitals using the new matrix_x
281 DO ispin = 1, SIZE(qs_ot_env)
282 CALL get_mo_set(mo_set=mo_array(ispin), mo_coeff_b=mo_coeff)
283 CALL dbcsr_get_info(mo_coeff, nfullrows_total=n, nfullcols_total=k)
284 SELECT CASE (qs_ot_env(1)%settings%ot_algorithm)
285 CASE ("TOD")
286 IF (ASSOCIATED(matrix_s)) THEN
287 CALL dbcsr_multiply('N', 'N', 1.0_dp, matrix_s, qs_ot_env(ispin)%matrix_x, &
288 0.0_dp, qs_ot_env(ispin)%matrix_sx)
289 ELSE
290 CALL dbcsr_copy(qs_ot_env(ispin)%matrix_sx, qs_ot_env(ispin)%matrix_x)
291 END IF
292 CALL qs_ot_get_p(qs_ot_env(ispin)%matrix_x, qs_ot_env(ispin)%matrix_sx, qs_ot_env(ispin))
293 CALL qs_ot_get_orbitals(mo_coeff, qs_ot_env(ispin)%matrix_x, qs_ot_env(ispin))
294 CASE ("REF")
295 CALL qs_ot_get_orbitals_ref(mo_coeff, matrix_s, qs_ot_env(ispin)%matrix_x, &
296 qs_ot_env(ispin)%matrix_sx, qs_ot_env(ispin)%matrix_gx_old, &
297 qs_ot_env(ispin)%matrix_dx, qs_ot_env(ispin), qs_ot_env(1))
298 CASE DEFAULT
299 cpabort("Algorithm not yet implemented")
300 END SELECT
301 END DO
302
303 IF (qs_ot_env(1)%restricted) THEN
304 CALL mo_set_restrict(mo_array, convert_dbcsr=.true.)
305 END IF
306 !
307 ! obtain the new set of OT eigenvalues and set the occupations accordingly
308 !
309 IF (qs_ot_env(1)%settings%do_ener) THEN
310 DO ispin = 1, SIZE(mo_array)
311 mo_array(ispin)%eigenvalues = qs_ot_env(ispin)%ener_x
312 CALL set_mo_occupation(mo_set=mo_array(ispin), &
313 smear=smear)
314 END DO
315 END IF
316
317 ! cleanup
318 DO ispin = 1, SIZE(scaling_factor)
319 DEALLOCATE (scaling_factor(ispin)%array)
320 END DO
321 DEALLOCATE (scaling_factor)
322 IF (qs_ot_env(1)%settings%do_ener) THEN
323 DO ispin = 1, SIZE(expectation_values)
324 DEALLOCATE (expectation_values(ispin)%array)
325 END DO
326 DEALLOCATE (expectation_values)
327 END IF
328 DEALLOCATE (occupation_numbers)
329 DO ispin = 1, SIZE(matrix_dedc_scaled)
330 CALL dbcsr_release(matrix_dedc_scaled(ispin)%matrix)
331 DEALLOCATE (matrix_dedc_scaled(ispin)%matrix)
332 END DO
333 DEALLOCATE (matrix_dedc_scaled)
334
335 CALL timestop(handle)
336
337 END SUBROUTINE ot_scf_mini
338
339! **************************************************************************************************
340!> \brief initialises qs_ot_env so that mo_coeff is the current point
341!> and that the minization can be started.
342!> \param mo_array ...
343!> \param matrix_s ...
344!> \param qs_ot_env ...
345!> \param matrix_ks ...
346!> \param broyden_adaptive_sigma ...
347! **************************************************************************************************
348 SUBROUTINE ot_scf_init(mo_array, matrix_s, qs_ot_env, matrix_ks, broyden_adaptive_sigma)
349
350 TYPE(mo_set_type), DIMENSION(:), INTENT(IN) :: mo_array
351 TYPE(dbcsr_type), POINTER :: matrix_s
352 TYPE(qs_ot_type), DIMENSION(:), POINTER :: qs_ot_env
353 TYPE(dbcsr_type), POINTER :: matrix_ks
354 REAL(kind=dp) :: broyden_adaptive_sigma
355
356 CHARACTER(len=*), PARAMETER :: routinen = 'ot_scf_init'
357
358 INTEGER :: handle, ispin, k, n, nspin
359 LOGICAL :: is_equal
360 TYPE(cp_fm_type), POINTER :: mo_coeff_fm
361 TYPE(dbcsr_type), POINTER :: mo_coeff
362
363 CALL timeset(routinen, handle)
364
365 DO ispin = 1, SIZE(mo_array)
366 IF (.NOT. ASSOCIATED(mo_array(ispin)%mo_coeff_b)) THEN
367 cpabort("Shouldn't get there")
368 ! we do ot then copy fm to dbcsr
369 ! allocate that somewhere else ! fm -> dbcsr
370 CALL dbcsr_init_p(mo_array(ispin)%mo_coeff_b)
371 CALL cp_dbcsr_m_by_n_from_row_template(mo_array(ispin)%mo_coeff_b, template=matrix_ks, &
372 n=mo_array(ispin)%nmo, &
373 sym=dbcsr_type_no_symmetry)
374 END IF
375 END DO
376
377 ! *** set a history for broyden
378 DO ispin = 1, SIZE(qs_ot_env)
379 qs_ot_env(ispin)%broyden_adaptive_sigma = broyden_adaptive_sigma
380 END DO
381
382 ! **** SCP
383 ! **** SCP
384 ! adapted for work with the restricted keyword
385 nspin = SIZE(qs_ot_env)
386
387 DO ispin = 1, nspin
388
389 NULLIFY (mo_coeff)
390 CALL get_mo_set(mo_set=mo_array(ispin), mo_coeff_b=mo_coeff, mo_coeff=mo_coeff_fm)
391 CALL copy_fm_to_dbcsr(mo_coeff_fm, mo_coeff) !fm -> dbcsr
392
393 CALL dbcsr_get_info(mo_coeff, nfullrows_total=n, nfullcols_total=k)
394
395 ! allocate
396 CALL qs_ot_allocate(qs_ot_env(ispin), matrix_ks, mo_coeff_fm%matrix_struct)
397
398 ! set c0,sc0
399 CALL dbcsr_copy(qs_ot_env(ispin)%matrix_c0, mo_coeff)
400 IF (ASSOCIATED(matrix_s)) THEN
401 CALL dbcsr_multiply('N', 'N', 1.0_dp, matrix_s, qs_ot_env(ispin)%matrix_c0, &
402 0.0_dp, qs_ot_env(ispin)%matrix_sc0)
403 ELSE
404 CALL dbcsr_copy(qs_ot_env(ispin)%matrix_sc0, qs_ot_env(ispin)%matrix_c0)
405 END IF
406
407 ! init
408 CALL qs_ot_init(qs_ot_env(ispin))
409
410 ! set x
411 CALL dbcsr_set(qs_ot_env(ispin)%matrix_x, 0.0_dp)
412 CALL dbcsr_set(qs_ot_env(ispin)%matrix_sx, 0.0_dp)
413
414 IF (qs_ot_env(ispin)%settings%do_rotation) THEN
415 CALL dbcsr_set(qs_ot_env(ispin)%rot_mat_x, 0.0_dp)
416 END IF
417
418 IF (qs_ot_env(ispin)%settings%do_ener) THEN
419 is_equal = SIZE(qs_ot_env(ispin)%ener_x) == SIZE(mo_array(ispin)%eigenvalues)
420 cpassert(is_equal)
421 qs_ot_env(ispin)%ener_x = mo_array(ispin)%eigenvalues
422 END IF
423
424 SELECT CASE (qs_ot_env(1)%settings%ot_algorithm)
425 CASE ("TOD")
426 ! get c
427 CALL qs_ot_get_p(qs_ot_env(ispin)%matrix_x, qs_ot_env(ispin)%matrix_sx, qs_ot_env(ispin))
428 CASE ("REF")
429 CALL dbcsr_copy(qs_ot_env(ispin)%matrix_x, qs_ot_env(ispin)%matrix_c0)
430 CALL dbcsr_copy(qs_ot_env(ispin)%matrix_sx, qs_ot_env(ispin)%matrix_sc0)
431 CASE DEFAULT
432 cpabort("Algorithm not yet implemented")
433 END SELECT
434
435 END DO
436 CALL timestop(handle)
437 END SUBROUTINE ot_scf_init
438
439! **************************************************************************************************
440!> \brief ...
441!> \param qs_ot_env ...
442! **************************************************************************************************
443 SUBROUTINE ot_scf_destroy(qs_ot_env)
444
445 TYPE(qs_ot_type) :: qs_ot_env
446
447 CALL qs_ot_destroy(qs_ot_env)
448
449 END SUBROUTINE ot_scf_destroy
450
451END MODULE qs_ot_scf
452
various utilities that regard array of different kinds: output, allocation,... maybe it is not a good...
subroutine, public dbcsr_copy(matrix_b, matrix_a, name, keep_sparsity, keep_imaginary)
...
subroutine, public dbcsr_multiply(transa, transb, alpha, matrix_a, matrix_b, beta, matrix_c, first_row, last_row, first_column, last_column, first_k, last_k, retain_sparsity, filter_eps, flop)
...
subroutine, public dbcsr_get_info(matrix, nblkrows_total, nblkcols_total, nfullrows_total, nfullcols_total, nblkrows_local, nblkcols_local, nfullrows_local, nfullcols_local, my_prow, my_pcol, local_rows, local_cols, proc_row_dist, proc_col_dist, row_blk_size, col_blk_size, row_blk_offset, col_blk_offset, distribution, name, matrix_type, group)
...
subroutine, public dbcsr_init_p(matrix)
...
subroutine, public dbcsr_set(matrix, alpha)
...
subroutine, public dbcsr_release(matrix)
...
subroutine, public dbcsr_set_diag(matrix, diag)
Copies the diagonal elements from the given array into the given matrix.
subroutine, public dbcsr_get_diag(matrix, diag)
Copies the diagonal elements from the given matrix into the given array.
subroutine, public dbcsr_dot(matrix_a, matrix_b, trace)
Computes the dot product of two matrices, also known as the trace of their matrix product.
subroutine, public dbcsr_scale_by_vector(matrix, alpha, side)
Scales the rows/columns of given matrix.
DBCSR operations in CP2K.
subroutine, public cp_dbcsr_m_by_n_from_row_template(matrix, template, n, sym)
Utility function to create dbcsr matrix, m x n matrix (n arbitrary) with the same processor grid and ...
subroutine, public copy_fm_to_dbcsr(fm, matrix, keep_sparsity)
Copy a BLACS matrix to a dbcsr matrix.
represent a full matrix distributed on many processors
Definition cp_fm_types.F:15
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,...
objects that represent the structure of input sections and the data contained in an input section
recursive type(section_vals_type) function, pointer, public section_vals_get_subs_vals(section_vals, subsection_name, i_rep_section, can_return_null)
returns the values of the requested subsection
subroutine, public section_vals_get(section_vals, ref_count, n_repetition, n_subs_vals_rep, section, explicit)
returns various attributes about the section_vals
Defines the basic variable types.
Definition kinds.F:23
integer, parameter, public dp
Definition kinds.F:34
Set occupation of molecular orbitals.
Definition and initialisation of the mo data type.
Definition qs_mo_types.F:22
subroutine, public mo_set_restrict(mo_array, convert_dbcsr)
make the beta orbitals explicitly equal to the alpha orbitals effectively copying the orbital data
subroutine, public get_mo_set(mo_set, maxocc, homo, lfomo, nao, nelectron, n_el_f, nmo, eigenvalues, occupation_numbers, mo_coeff, mo_coeff_b, uniform_occupation, kts, mu, flexible_electron_count)
Get the components of a MO set data structure.
orbital transformations
subroutine, public ot_mini(qs_ot_env, matrix_hc)
...
basic functionality for using ot in the scf routines.
Definition qs_ot_scf.F:14
subroutine, public ot_scf_read_input(qs_ot_env, scf_section)
...
Definition qs_ot_scf.F:71
subroutine, public ot_scf_init(mo_array, matrix_s, qs_ot_env, matrix_ks, broyden_adaptive_sigma)
initialises qs_ot_env so that mo_coeff is the current point and that the minization can be started.
Definition qs_ot_scf.F:349
subroutine, public ot_scf_mini(mo_array, matrix_dedc, smear, matrix_s, energy, energy_only, delta, qs_ot_env)
performs the actual minimisation, needs only limited info updated for restricted calculations matrix_...
Definition qs_ot_scf.F:125
subroutine, public ot_scf_destroy(qs_ot_env)
...
Definition qs_ot_scf.F:444
orbital transformations
Definition qs_ot_types.F:15
subroutine, public qs_ot_init(qs_ot_env)
init matrices, needs c0 and sc0 so that c0*sc0=1
subroutine, public qs_ot_allocate(qs_ot_env, matrix_s, fm_struct_ref, ortho_k)
allocates the data in qs_ot_env, for a calculation with fm_struct_ref ortho_k allows for specifying a...
subroutine, public qs_ot_settings_init(settings)
sets default values for the settings type
subroutine, public qs_ot_destroy(qs_ot_env)
deallocates data
subroutine, public ot_readwrite_input(settings, ot_section, output_unit)
...
orbital transformations
Definition qs_ot.F:15
subroutine, public qs_ot_get_p(matrix_x, matrix_sx, qs_ot_env)
computes p=x*S*x and the matrix functionals related matrices
Definition qs_ot.F:748
subroutine, public qs_ot_get_orbitals(matrix_c, matrix_x, qs_ot_env)
c=(c0*cos(p^0.5)+x*sin(p^0.5)*p^(-0.5)) x rot_mat_u this assumes that x is already ortho to S*C0,...
Definition qs_ot.F:1020
subroutine, public qs_ot_get_orbitals_ref(matrix_c, matrix_s, matrix_x, matrix_sx, matrix_gx_old, matrix_dx, qs_ot_env, qs_ot_env1)
...
Definition qs_ot.F:516
parameters that control an scf iteration
represent a pointer to a 1d array
represent a full matrix
type of a logger, at the moment it contains just a print level starting at which level it should be l...
contains the parameters needed by a scf run