(git:d3d49ac)
Loading...
Searching...
No Matches
mscfg_methods.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 Subroutines to perform calculations on molecules from a bigger
10!> system. Useful to generate a high-quality MO guess for systems
11!> of many molecules with complex electronic structure, to bootstrap
12!> ALMO simulations, etc.
13!> \par History
14!> 10.2014 Rustam Z Khaliullin
15!> 09.2018 ALMO smearing support and ALMO diag+molecular_guess patch [Ruben Staub]
16!> \author Rustam Z Khaliullin
17! **************************************************************************************************
21 USE cp_dbcsr_api, ONLY: dbcsr_copy,&
23 dbcsr_type_no_symmetry
37 do_qs,&
51 USE qs_energy, ONLY: qs_energies
53 USE qs_environment, ONLY: qs_init
58 USE qs_mo_types, ONLY: get_mo_set,&
60#include "./base/base_uses.f90"
61
62 IMPLICIT NONE
63 PRIVATE
64
65 CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'mscfg_methods'
66
68
69CONTAINS
70
71! **************************************************************************************************
72!> \brief Prepare data for calculations on isolated molecules.
73!> \param globenv ...
74!> \param force_env ...
75!> \par History
76!> 10.2014 created [Rustam Z Khaliullin]
77!> \author Rustam Z Khaliullin
78! **************************************************************************************************
79 SUBROUTINE loop_over_molecules(globenv, force_env)
80
81 TYPE(global_environment_type), POINTER :: globenv
82 TYPE(force_env_type), POINTER :: force_env
83
84 INTEGER :: nmols
85 INTEGER, ALLOCATABLE, DIMENSION(:) :: charge_of_frag, first_atom_of_frag, &
86 last_atom_of_frag, multip_of_frag
87 TYPE(molecule_type), DIMENSION(:), POINTER :: molecule_set
88 TYPE(qs_environment_type), POINTER :: qs_env
89
90 CALL force_env_get(force_env, qs_env=qs_env)
91 cpassert(ASSOCIATED(qs_env))
92 CALL get_qs_env(qs_env, &
93 molecule_set=molecule_set)
94
95 nmols = SIZE(molecule_set)
96
97 ALLOCATE (first_atom_of_frag(nmols))
98 ALLOCATE (last_atom_of_frag(nmols))
99 ALLOCATE (charge_of_frag(nmols))
100 ALLOCATE (multip_of_frag(nmols))
101
102 CALL get_molecule_set_info(molecule_set, &
103 mol_to_first_atom=first_atom_of_frag, &
104 mol_to_last_atom=last_atom_of_frag, &
105 mol_to_charge=charge_of_frag, &
106 mol_to_multiplicity=multip_of_frag)
107
108 CALL calcs_on_isolated_molecules(force_env, globenv, nmols, &
109 first_atom_of_frag, last_atom_of_frag, charge_of_frag, multip_of_frag)
110
111 DEALLOCATE (first_atom_of_frag)
112 DEALLOCATE (last_atom_of_frag)
113 DEALLOCATE (charge_of_frag)
114 DEALLOCATE (multip_of_frag)
115
116 END SUBROUTINE loop_over_molecules
117
118! **************************************************************************************************
119!> \brief Run calculations on isolated molecules. The ideas for setting up
120!> the calculations are borrowed from BSSE files
121!> \param force_env ...
122!> \param globenv ...
123!> \param nfrags ...
124!> \param first_atom_of_frag ...
125!> \param last_atom_of_frag ...
126!> \param charge_of_frag ...
127!> \param multip_of_frag ...
128!> \par History
129!> 10.2014 created
130!> 09.2018 ALMO smearing support, and ALMO diag+molecular_guess patch [Ruben Staub]
131!> \author Rustam Z Khaliullin
132! **************************************************************************************************
133 SUBROUTINE calcs_on_isolated_molecules(force_env, globenv, nfrags, &
134 first_atom_of_frag, last_atom_of_frag, charge_of_frag, multip_of_frag)
135
136 TYPE(force_env_type), POINTER :: force_env
137 TYPE(global_environment_type), POINTER :: globenv
138 INTEGER, INTENT(IN) :: nfrags
139 INTEGER, DIMENSION(:), INTENT(INOUT) :: first_atom_of_frag, last_atom_of_frag, &
140 charge_of_frag, multip_of_frag
141
142 CHARACTER(LEN=*), PARAMETER :: routinen = 'calcs_on_isolated_molecules'
143
144 CHARACTER(LEN=default_string_length) :: name
145 CHARACTER(LEN=default_string_length), &
146 DIMENSION(:), POINTER :: atom_type
147 INTEGER :: first_atom, force_method, global_charge, global_multpl, handle, i, ifrag, imo, &
148 isize, j, k, last_atom, my_targ, nb_eigenval_stored, nmo, nmo_of_frag, nmosets_of_frag, &
149 tot_added_mos, tot_isize
150 INTEGER, DIMENSION(:), POINTER :: atom_index, atom_list
151 LOGICAL :: global_almo_scf_keyword, smear_almo_scf
152 TYPE(almo_scf_env_type), POINTER :: almo_scf_env
153 TYPE(cp_subsys_type), POINTER :: subsys, subsys_loc
154 TYPE(mo_set_type), DIMENSION(:), POINTER :: mos, mos_of_frag
155 TYPE(molecular_scf_guess_env_type), POINTER :: mscfg_env
156 TYPE(mp_para_env_type), POINTER :: para_env
157 TYPE(particle_list_type), POINTER :: particles
158 TYPE(qs_energy_type), POINTER :: qs_energy
159 TYPE(qs_environment_type), POINTER :: qs_env, qs_env_loc
160 TYPE(section_vals_type), POINTER :: dft_section, force_env_section, &
161 qs_section, root_section, scf_section, &
162 subsys_section
163
164 CALL timeset(routinen, handle)
165
166 NULLIFY (subsys_loc, subsys, particles, para_env, atom_index, atom_type, &
167 force_env_section, qs_env_loc, mscfg_env, qs_env, qs_energy)
168 CALL force_env_get(force_env, force_env_section=force_env_section, &
169 qs_env=qs_env)
170 CALL section_vals_val_get(force_env_section, "METHOD", i_val=force_method)
171 cpassert(force_method == do_qs)
172 root_section => force_env%root_section
173 subsys_section => section_vals_get_subs_vals(force_env_section, "SUBSYS")
174 dft_section => section_vals_get_subs_vals(force_env_section, "DFT")
175 !
176 ! Save several global settings to restore them after the loop:
177 ! charge, multiplicity, ALMO flag
178 !
179 CALL section_vals_val_get(dft_section, "CHARGE", i_val=global_charge)
180 CALL section_vals_val_get(dft_section, "MULTIPLICITY", i_val=global_multpl)
181 qs_section => section_vals_get_subs_vals(dft_section, "QS")
182 CALL section_vals_val_get(qs_section, "ALMO_SCF", l_val=global_almo_scf_keyword)
183 !
184 ! Get access to critical data before the loop
185 !
186 CALL force_env_get(force_env=force_env, subsys=subsys, para_env=para_env)
187 CALL cp_subsys_get(subsys, particles=particles)
188 CALL get_qs_env(qs_env, mscfg_env=mscfg_env, almo_scf_env=almo_scf_env)
189 cpassert(ASSOCIATED(mscfg_env))
190 IF (global_almo_scf_keyword) THEN !! Check if smearing is on, and retrieve smearing parameters accordingly
191 smear_almo_scf = qs_env%scf_control%smear%do_smear
192 IF (smear_almo_scf) THEN
193 scf_section => section_vals_get_subs_vals(dft_section, "SCF")
194 !! Get total number of added MOs
195 CALL section_vals_val_get(scf_section, "added_mos", i_val=tot_added_mos)
196 !! Get total number of atoms (assume consecutive atoms)
197 tot_isize = last_atom_of_frag(nfrags) - first_atom_of_frag(1) + 1
198 !! Check that number of added MOs matches the number of atoms
199 !! (to ensure compatibility, since each fragment will be computed with such parameters)
200 IF (tot_isize /= tot_added_mos) THEN
201 cpabort("ALMO smearing currently requires ADDED_MOS == total number of atoms")
202 END IF
203 !! Get total number of MOs
204 CALL get_qs_env(qs_env, mos=mos)
205 !! Unrestricted ALMO is not implemented yet
206 IF (SIZE(mos) > 1) cpabort("Unrestricted ALMO methods are NYI")
207 CALL get_mo_set(mo_set=mos(1), nmo=nmo)
208 !! Initialize storage of MO energies for ALMO smearing
209 cpassert(ASSOCIATED(almo_scf_env))
210 ALLOCATE (almo_scf_env%mo_energies(nmo, SIZE(mos)))
211 ALLOCATE (almo_scf_env%kTS(SIZE(mos)))
212 nb_eigenval_stored = 0 !! Keep track of how many eigenvalues were stored in mo_energies
213 END IF
214 ELSE
215 smear_almo_scf = .false.
216 END IF
217 !
218 ! These flags determine the options of molecular runs (e.g. cell size)
219 !
220 !!!LATER is_fast_dirty = mscfg_env%is_fast_dirty - shrink the cell
221 !!!LATER is_crystal = mscfg_env%is_crystal - remove periodicity
222 !
223 ! Prepare storage for the results
224 ! Until molecular_scf_guess_env is destroyed it will keep
225 ! the results of fragment calculations
226 !
227 CALL molecular_scf_guess_env_init(mscfg_env, nfrags)
228
229 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
230 !
231 ! Start the loop over molecules
232 !
233 ! Here is the list of modifications necessary to run isolated molecules:
234 ! * Atom list of a subsystem and their names
235 ! * Charge and multiplicity of a subsystem
236 ! * ALMO SCF flag off (unless several levels of recursion is desired)
237 ! * Smaller cell can be provided if a fast-and-dirty approach is ok
238 ! * Set ADDED_MOS to number of atoms in the fragment, if smearing requested (VASP default)
239 ! * ... add your own and explain it here ...
240 !
241 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
242 DO ifrag = 1, nfrags
243 !
244 ! Turn ALMO SCF flag off
245 !
246 CALL section_vals_val_set(qs_section, "ALMO_SCF", l_val=.false.)
247 !
248 ! Setup the charge and multiplicity of the molecule
249 !
250
251 IF (almo_scf_env%activate(1) == 1) THEN
252 multip_of_frag(ifrag) = almo_scf_env%multiplicity_of_domain(ifrag)
253 charge_of_frag(ifrag) = almo_scf_env%charge_of_domain(ifrag)
254 ELSE
255 CALL section_vals_val_set(dft_section, "CHARGE", i_val=charge_of_frag(ifrag))
256 CALL section_vals_val_set(dft_section, "MULTIPLICITY", i_val=multip_of_frag(ifrag))
257 END IF
258
259 !
260 ! Create a list of atoms in the current molecule
261 !
262 ! Assume that atoms arranged consecutively (in ALMO SCF it is always the case)
263 ! It is important to have a linear scaling procedure here
264 first_atom = first_atom_of_frag(ifrag)
265 last_atom = last_atom_of_frag(ifrag)
266 isize = last_atom - first_atom + 1
267 ALLOCATE (atom_index(isize))
268 atom_index(1:isize) = [(i, i=first_atom, last_atom)]
269 !
270 ! Get atom type names
271 !
272 ALLOCATE (atom_type(isize))
273 DO j = 1, isize
274 my_targ = atom_index(j)
275 DO k = 1, SIZE(particles%els)
276 CALL get_atomic_kind(particles%els(k)%atomic_kind, atom_list=atom_list, name=name)
277 IF (any(atom_list == my_targ)) EXIT
278 END DO
279 atom_type(j) = name
280 END DO
281 !
282 ! If smearing requested, setup ADDED_MOS correctly for each fragment (i.e. number of atoms in fragment)
283 !
284 IF (smear_almo_scf) THEN
285 CALL section_vals_val_set(scf_section, "added_mos", i_val=isize)
286 END IF
287 !
288 ! Create the environment of a subsystem
289 !
290 CALL create_small_subsys(subsys_loc, big_subsys=subsys, small_para_env=para_env, &
291 small_cell=subsys%cell, sub_atom_index=atom_index, &
292 sub_atom_kind_name=atom_type, para_env=para_env, &
293 force_env_section=force_env_section, subsys_section=subsys_section)
294 ALLOCATE (qs_env_loc)
295 CALL qs_env_create(qs_env_loc, globenv)
296 CALL qs_init(qs_env_loc, para_env, root_section, globenv=globenv, cp_subsys=subsys_loc, &
297 force_env_section=force_env_section, subsys_section=subsys_section, &
298 use_motion_section=.false., multip=multip_of_frag(ifrag), charge=charge_of_frag(ifrag))
299 CALL cp_subsys_release(subsys_loc)
300
301 !
302 ! Print-out fragment info
303 !
304 CALL print_frag_info(atom_index, atom_type, ifrag, nfrags, &
305 charge_of_frag(ifrag), multip_of_frag(ifrag))
306 !
307 ! Run calculations on a subsystem
308 !
309 CALL qs_energies(qs_env_loc)
310 !
311 ! Get the desired results (energy and MOs) out
312 !
313 CALL get_qs_env(qs_env_loc, mos=mos_of_frag, energy=qs_energy)
314 !
315 ! Store all desired results of fragment calculations in the fragment_env
316 ! of the qs_env to use them later as needed
317 !
318 mscfg_env%energy_of_frag(ifrag) = qs_energy%total
319 nmosets_of_frag = SIZE(mos_of_frag)
320 cpassert(nmosets_of_frag <= mscfg_max_moset_size)
321 mscfg_env%nmosets_of_frag(ifrag) = nmosets_of_frag
322 DO imo = 1, nmosets_of_frag
323 !! Forcing compatibility for ALMO smearing
324 IF (global_almo_scf_keyword) THEN
325 !! Manually add compatibility between ALMO SCF and diag SCF (used for smearing compatibility)
326 !! MOs are required to compute ALMO orbitals, but not stored with diag SCF algorithm...
327 !! RS-WARNING: Should be properly fixed, this is just a raw fix.
328 CALL copy_fm_to_dbcsr(mos_of_frag(imo)%mo_coeff, &
329 mos_of_frag(imo)%mo_coeff_b)
330 IF (smear_almo_scf) THEN
331 !! Store MOs energies for ALMO smearing purpose
332 nmo_of_frag = SIZE(mos_of_frag(imo)%eigenvalues)
333 almo_scf_env%mo_energies(nb_eigenval_stored + 1:nb_eigenval_stored + nmo_of_frag, imo) &
334 = mos_of_frag(imo)%eigenvalues(:)
335 !! update stored energies offset. Assumes nmosets_of_frag == 1 (general smearing ALMO assumption)
336 nb_eigenval_stored = nb_eigenval_stored + nmo_of_frag
337 END IF
338 END IF !! ALMO
339
340 ! the matrices have been allocated already - copy the results there
341 CALL dbcsr_create(mscfg_env%mos_of_frag(ifrag, imo), &
342 template=mos_of_frag(imo)%mo_coeff_b, &
343 matrix_type=dbcsr_type_no_symmetry)
344 CALL dbcsr_copy(mscfg_env%mos_of_frag(ifrag, imo), &
345 mos_of_frag(imo)%mo_coeff_b)
346 END DO
347 !
348 ! Clean up
349 !
350 NULLIFY (qs_energy)
351 CALL qs_env_release(qs_env_loc)
352 DEALLOCATE (qs_env_loc)
353 DEALLOCATE (atom_index)
354 DEALLOCATE (atom_type)
355
356 END DO
357
358 CALL section_vals_val_set(dft_section, "CHARGE", i_val=global_charge)
359 CALL section_vals_val_set(dft_section, "MULTIPLICITY", i_val=global_multpl)
360 CALL section_vals_val_set(qs_section, "ALMO_SCF", l_val=global_almo_scf_keyword)
361
362 CALL timestop(handle)
363
364 END SUBROUTINE calcs_on_isolated_molecules
365
366! **************************************************************************************************
367!> \brief Print info about fragment
368!> \param atom_index ...
369!> \param atom_type ...
370!> \param frag ...
371!> \param nfrags ...
372!> \param charge ...
373!> \param multpl ...
374!> \par History
375!> 07.2005 created as a part of BSSE calculations [tlaino]
376!> 10.2014 adapted to ALMO guess calculations [Rustam Z Khaliullin]
377!> \author Rustam Z Khaliullin
378! **************************************************************************************************
379 SUBROUTINE print_frag_info(atom_index, atom_type, frag, nfrags, charge, &
380 multpl)
381
382 INTEGER, DIMENSION(:), POINTER :: atom_index
383 CHARACTER(len=default_string_length), &
384 DIMENSION(:), POINTER :: atom_type
385 INTEGER, INTENT(IN) :: frag, nfrags, charge, multpl
386
387 CHARACTER(len=11) :: chari
388 INTEGER :: i, iw
389 TYPE(cp_logger_type), POINTER :: logger
390
391 NULLIFY (logger)
392 logger => cp_get_default_logger()
393 IF (logger%para_env%is_source()) THEN
394 iw = cp_logger_get_default_unit_nr(logger, local=.true.)
395 ELSE
396 iw = -1
397 END IF
398
399 IF (iw > 0) THEN
400
401 WRITE (unit=iw, fmt="(/,T2,A)") repeat("-", 79)
402 WRITE (unit=iw, fmt="(T2,A,T80,A)") "-", "-"
403 WRITE (unit=iw, fmt="(T2,A,T5,A,T25,A,T40,I11,T53,A,T67,I11,T80,A)") &
404 "-", "MOLECULAR GUESS:", "FRAGMENT", frag, "OUT OF", nfrags, "-"
405 WRITE (unit=iw, fmt="(T2,A,T25,A,T40,I11,T53,A,T67,I11,T80,A)") "-", "CHARGE", charge, "MULTIPLICITY", &
406 multpl, "-"
407 WRITE (unit=iw, fmt="(T2,A,T80,A)") "-", "-"
408 WRITE (unit=iw, fmt="(T2,A,T25,A,T53,A,T80,A)") "-", "ATOM INDEX", "ATOM NAME", "-"
409 WRITE (unit=iw, fmt="(T2,A,T25,A,T53,A,T80,A)") "-", "----------", "---------", "-"
410 DO i = 1, SIZE(atom_index)
411 WRITE (chari, '(I11)') atom_index(i)
412 WRITE (unit=iw, fmt="(T2,A,T25,A,T53,A,T80,A)") "-", adjustl(chari), trim(atom_type(i)), "-"
413 END DO
414 WRITE (unit=iw, fmt="(T2,A)") repeat("-", 79)
415 END IF
416
417 END SUBROUTINE print_frag_info
418
419! **************************************************************************************************
420!> \brief Is the loop over molecules requested?
421!> \param force_env ...
422!> \return ...
423!> \par History
424!> 10.2014 created [Rustam Z. Khaliullin]
425!> \author Rustam Z. Khaliullin
426! **************************************************************************************************
427 FUNCTION do_mol_loop(force_env)
428
429 TYPE(force_env_type), POINTER :: force_env
430 LOGICAL :: do_mol_loop
431
432 INTEGER :: almo_guess_type, frz_term_type, &
433 method_name_id, scf_guess_type
434 LOGICAL :: almo_scf_is_on, is_crystal, is_fast_dirty
435 TYPE(molecular_scf_guess_env_type), POINTER :: mscfg_env
436 TYPE(qs_environment_type), POINTER :: qs_env
437 TYPE(section_vals_type), POINTER :: force_env_section, subsection
438
439 do_mol_loop = .false.
440 ! What kind of options are we using in the loop ?
441 is_fast_dirty = .true.
442 is_crystal = .false.
443 almo_scf_is_on = .false.
444
445 NULLIFY (qs_env, mscfg_env, force_env_section, subsection)
446 CALL force_env_get(force_env, force_env_section=force_env_section)
447 CALL section_vals_val_get(force_env_section, "METHOD", i_val=method_name_id)
448
449 IF (method_name_id == do_qs) THEN
450
451 CALL force_env_get(force_env, qs_env=qs_env)
452 cpassert(ASSOCIATED(qs_env))
453
454 CALL get_qs_env(qs_env, mscfg_env=mscfg_env)
455 cpassert(ASSOCIATED(mscfg_env))
456
457 !!!! RZK-warning: All decisions are based on the values of input keywords
458 !!!! The real danger is that many of these keywords might not be even
459 !!!! in control of the job. They might be simply present in the input
460 !!!! This section must be re-written more accurately
461
462 ! check ALMO SCF guess option
463 NULLIFY (subsection)
464 subsection => section_vals_get_subs_vals(force_env_section, "DFT%ALMO_SCF")
465 CALL section_vals_val_get(subsection, "ALMO_SCF_GUESS", i_val=almo_guess_type)
466 ! check whether ALMO SCF is on
467 NULLIFY (subsection)
468 subsection => section_vals_get_subs_vals(force_env_section, "DFT%QS")
469 CALL section_vals_val_get(subsection, "ALMO_SCF", l_val=almo_scf_is_on)
470
471 ! check SCF guess option
472 NULLIFY (subsection)
473 subsection => section_vals_get_subs_vals(force_env_section, "DFT%SCF")
474 CALL section_vals_val_get(subsection, "SCF_GUESS", i_val=scf_guess_type)
475
476 ! check ALMO EDA options
477 NULLIFY (subsection)
478 !!!LATER subsection => section_vals_get_subs_vals(force_env_section,"DFT%ALMO_SCF%ALMO_DA")
479 !!!LATER CALL section_vals_val_get(subsection,"FRZ_TERM",i_val=frz_term_type)
480 frz_term_type = almo_frz_none
481
482 ! Are we doing the loop ?
483 IF (scf_guess_type == molecular_guess .OR. & ! SCF guess is molecular
484 (almo_guess_type == molecular_guess .AND. almo_scf_is_on) .OR. & ! ALMO SCF guess is molecular
485 frz_term_type /= almo_frz_none) THEN ! ALMO FRZ term is requested
486
487 do_mol_loop = .true.
488
489 ! If we are calculating molecular guess it is OK to do fast and dirty loop
490 ! It is NOT ok to be sloppy with ALMO EDA calculations of the FRZ term
491 IF (frz_term_type /= almo_frz_none) THEN
492 is_fast_dirty = .false.
493 IF (frz_term_type == almo_frz_crystal) THEN
494 is_crystal = .true.
495 END IF
496 END IF
497
498 END IF
499
500 mscfg_env%is_fast_dirty = is_fast_dirty
501 mscfg_env%is_crystal = is_crystal
502
503 END IF
504
505 RETURN
506
507 END FUNCTION do_mol_loop
508
509END MODULE mscfg_methods
510
Types for all ALMO-based methods.
Define the atomic kind types and their sub types.
subroutine, public get_atomic_kind(atomic_kind, fist_potential, element_symbol, name, mass, kind_number, natom, atom_list, rcov, rvdw, z, qeff, apol, cpol, mm_radius, shell, shell_active, damping)
Get attributes of an atomic kind.
subroutine, public dbcsr_copy(matrix_b, matrix_a, name, keep_sparsity, keep_imaginary)
...
DBCSR operations in CP2K.
subroutine, public copy_fm_to_dbcsr(fm, matrix, keep_sparsity)
Copy a BLACS matrix to a dbcsr matrix.
various routines to log and control the output. The idea is that decisions about where to log should ...
recursive integer function, public cp_logger_get_default_unit_nr(logger, local, skip_not_ionode)
asks the default unit number of the given logger. try to use cp_logger_get_unit_nr
type(cp_logger_type) function, pointer, public cp_get_default_logger()
returns the default logger
Initialize a small environment for a particular calculation.
subroutine, public create_small_subsys(small_subsys, big_subsys, small_cell, small_para_env, sub_atom_index, sub_atom_kind_name, para_env, force_env_section, subsys_section, ignore_outside_box)
updates the molecule information of the given subsys
types that represent a subsys, i.e. a part of the system
subroutine, public cp_subsys_release(subsys)
releases a subsys (see doc/ReferenceCounting.html)
subroutine, public cp_subsys_get(subsys, ref_count, atomic_kinds, atomic_kind_set, particles, particle_set, local_particles, molecules, molecule_set, molecule_kinds, molecule_kind_set, local_molecules, para_env, colvar_p, shell_particles, core_particles, gci, multipoles, natom, nparticle, ncore, nshell, nkind, atprop, virial, results, cell, cell_ref, use_ref_cell)
returns information about various attributes of the given subsys
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....
collects all constants needed in input so that they can be used without circular dependencies
integer, parameter, public molecular_guess
integer, parameter, public almo_frz_crystal
integer, parameter, public almo_frz_none
integer, parameter, public do_qs
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
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_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 default_string_length
Definition kinds.F:57
Interface to the message passing library MPI.
Define the data structure for the molecule information.
subroutine, public get_molecule_set_info(molecule_set, atom_to_mol, mol_to_first_atom, mol_to_last_atom, mol_to_nelectrons, mol_to_nbasis, mol_to_charge, mol_to_multiplicity)
returns information about molecules in the set.
Subroutines to perform calculations on molecules from a bigger system. Useful to generate a high-qual...
subroutine, public loop_over_molecules(globenv, force_env)
Prepare data for calculations on isolated molecules.
logical function, public do_mol_loop(force_env)
Is the loop over molecules requested?
Types used to generate the molecular SCF guess.
Definition mscfg_types.F:14
integer, parameter, public mscfg_max_moset_size
Definition mscfg_types.F:30
subroutine, public molecular_scf_guess_env_init(env, nfrags)
Allocates data.
Definition mscfg_types.F:66
represent a simple array based list of the given type
Perform a QUICKSTEP wavefunction optimization (single point)
Definition qs_energy.F:14
subroutine, public qs_energies(qs_env, consistent_energies, calc_forces)
Driver routine for QUICKSTEP single point wavefunction optimization.
Definition qs_energy.F:70
subroutine, public get_qs_env(qs_env, atomic_kind_set, qs_kind_set, cell, super_cell, cell_ref, use_ref_cell, kpoints, dft_control, mos, sab_orb, sab_all, qmmm, qmmm_periodic, mimic, sac_ae, sac_ppl, sac_lri, sap_ppnl, sab_vdw, sab_scp, sap_oce, sab_lrc, sab_se, sab_xtbe, sab_tbe, sab_core, sab_xb, sab_xtb_pp, sab_xtb_nonbond, sab_almo, sab_kp, sab_kp_nosym, sab_cneo, particle_set, energy, force, matrix_h, matrix_h_im, matrix_ks, matrix_ks_im, matrix_vxc, run_rtp, rtp, matrix_h_kp, matrix_h_im_kp, matrix_ks_kp, matrix_ks_im_kp, matrix_vxc_kp, kinetic_kp, matrix_s_kp, matrix_w_kp, matrix_s_ri_aux_kp, matrix_s, matrix_s_ri_aux, matrix_w, matrix_p_mp2, matrix_p_mp2_admm, matrix_vhxc, rho, rho_xc, pw_env, ewald_env, ewald_pw, active_space, mpools, input, para_env, blacs_env, scf_control, rel_control, kinetic, qs_charges, vppl, xcint_weights, rho_core, rho_nlcc, rho_nlcc_g, ks_env, ks_qmmm_env, wf_history, scf_env, local_particles, local_molecules, distribution_2d, dbcsr_dist, molecule_kind_set, molecule_set, subsys, cp_subsys, oce, local_rho_set, rho_atom_set, task_list, task_list_soft, rho0_atom_set, rho0_mpole, rhoz_set, rhoz_cneo_set, ecoul_1c, rho0_s_rs, rho0_s_gs, rhoz_cneo_s_rs, rhoz_cneo_s_gs, do_kpoints, has_unit_metric, requires_mo_derivs, mo_derivs, mo_loc_history, nkind, natom, nelectron_total, nelectron_spin, efield, neighbor_list_id, linres_control, xas_env, virial, cp_ddapc_env, cp_ddapc_ewald, outer_scf_history, outer_scf_ihistory, x_data, et_coupling, dftb_potential, results, se_taper, se_store_int_env, se_nddo_mpole, se_nonbond_env, admm_env, lri_env, lri_density, exstate_env, ec_env, harris_env, dispersion_env, gcp_env, vee, rho_external, external_vxc, mask, mp2_env, bs_env, kg_env, wanniercentres, atprop, ls_scf_env, do_transport, transport_env, v_hartree_rspace, s_mstruct_changed, rho_changed, potential_changed, forces_up_to_date, mscfg_env, almo_scf_env, gradient_history, variable_history, embed_pot, spin_embed_pot, polar_env, mos_last_converged, eeq, rhs, do_rixs, tb_tblite)
Get the QUICKSTEP environment.
subroutine, public qs_env_release(qs_env)
releases the given qs_env (see doc/ReferenceCounting.html)
subroutine, public qs_env_create(qs_env, globenv)
allocates and intitializes a qs_env
subroutine, public qs_init(qs_env, para_env, root_section, globenv, cp_subsys, kpoint_env, qmmm, qmmm_env_qm, force_env_section, subsys_section, use_motion_section, silent, multip, charge)
Read the input and the database files for the setup of the QUICKSTEP environment.
Definition and initialisation of the mo data type.
Definition qs_mo_types.F:22
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.
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
stores all the informations relevant to an mpi environment