(git:71c3ab0)
Loading...
Searching...
No Matches
xtb_ehess.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 Calculation of Coulomb Hessian contributions in xTB
10!> \author JGH
11! **************************************************************************************************
15 USE cell_types, ONLY: cell_type,&
16 get_cell,&
17 pbc
33 USE kinds, ONLY: dp
34 USE mathconstants, ONLY: oorootpi,&
35 pi
44 USE qs_kind_types, ONLY: get_qs_kind,&
52 USE virial_types, ONLY: virial_type
53 USE xtb_coulomb, ONLY: gamma_rab_sr
55 USE xtb_types, ONLY: get_xtb_atom_param,&
57#include "./base/base_uses.f90"
58
59 IMPLICIT NONE
60
61 PRIVATE
62
63 CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'xtb_ehess'
64
65 PUBLIC :: xtb_coulomb_hessian
66
67CONTAINS
68
69! **************************************************************************************************
70!> \brief ...
71!> \param qs_env ...
72!> \param ks_matrix ...
73!> \param charges1 ...
74!> \param mcharge1 ...
75!> \param mcharge ...
76!> \param matrix_p1 ...
77! **************************************************************************************************
78 SUBROUTINE xtb_coulomb_hessian(qs_env, ks_matrix, charges1, mcharge1, mcharge, matrix_p1)
79
80 TYPE(qs_environment_type), POINTER :: qs_env
81 TYPE(dbcsr_p_type), DIMENSION(:), POINTER :: ks_matrix
82 REAL(dp), DIMENSION(:, :) :: charges1
83 REAL(dp), DIMENSION(:) :: mcharge1, mcharge
84 TYPE(dbcsr_p_type), DIMENSION(:), POINTER :: matrix_p1
85
86 CHARACTER(len=*), PARAMETER :: routinen = 'xtb_coulomb_hessian'
87
88 INTEGER :: ewald_type, handle, i, ia, iatom, icol, ikind, irow, is, j, jatom, jkind, la, lb, &
89 lmaxa, lmaxb, natom, natorb_a, natorb_b, ni, nj, nkind, nmat, za, zb
90 INTEGER, ALLOCATABLE, DIMENSION(:) :: kind_of
91 INTEGER, DIMENSION(25) :: laoa, laob
92 INTEGER, DIMENSION(3) :: cellind, periodic
93 LOGICAL :: defined, do_ewald, found
94 REAL(kind=dp) :: alpha, deth, dr, etaa, etab, gmij, kg, &
95 rcut, rcuta, rcutb
96 REAL(kind=dp), ALLOCATABLE, DIMENSION(:) :: xgamma
97 REAL(kind=dp), ALLOCATABLE, DIMENSION(:, :) :: gammab, gcij, gmcharge
98 REAL(kind=dp), ALLOCATABLE, DIMENSION(:, :, :) :: gchrg
99 REAL(kind=dp), DIMENSION(3) :: rij
100 REAL(kind=dp), DIMENSION(5) :: kappaa, kappab
101 REAL(kind=dp), DIMENSION(:, :), POINTER :: ksblock, sblock
102 TYPE(atomic_kind_type), DIMENSION(:), POINTER :: atomic_kind_set
103 TYPE(cell_type), POINTER :: cell
104 TYPE(dbcsr_iterator_type) :: iter
105 TYPE(dbcsr_p_type), DIMENSION(:, :), POINTER :: matrix_s
106 TYPE(dft_control_type), POINTER :: dft_control
107 TYPE(distribution_1d_type), POINTER :: local_particles
108 TYPE(ewald_environment_type), POINTER :: ewald_env
109 TYPE(ewald_pw_type), POINTER :: ewald_pw
110 TYPE(mp_para_env_type), POINTER :: para_env
112 DIMENSION(:), POINTER :: nl_iterator
113 TYPE(neighbor_list_set_p_type), DIMENSION(:), &
114 POINTER :: n_list
115 TYPE(particle_type), DIMENSION(:), POINTER :: particle_set
116 TYPE(qs_kind_type), DIMENSION(:), POINTER :: qs_kind_set
117 TYPE(virial_type), POINTER :: virial
118 TYPE(xtb_atom_type), POINTER :: xtb_atom_a, xtb_atom_b, xtb_kind
119 TYPE(xtb_control_type), POINTER :: xtb_control
120
121 CALL timeset(routinen, handle)
122
123 CALL get_qs_env(qs_env, &
124 matrix_s_kp=matrix_s, &
125 qs_kind_set=qs_kind_set, &
126 particle_set=particle_set, &
127 cell=cell, &
128 dft_control=dft_control)
129
130 xtb_control => dft_control%qs_control%xtb_control
131
132 IF (dft_control%nimages /= 1) THEN
133 cpabort("No kpoints allowed in xTB response calculation")
134 END IF
135
136 CALL get_qs_env(qs_env, nkind=nkind, natom=natom)
137 nmat = 1
138 ALLOCATE (gchrg(natom, 5, nmat))
139 gchrg = 0._dp
140 ALLOCATE (gmcharge(natom, nmat))
141 gmcharge = 0._dp
142
143 ! short range contribution (gamma)
144 ! loop over all atom pairs (sab_xtbe)
145 kg = xtb_control%kg
146 NULLIFY (n_list)
147 CALL get_qs_env(qs_env=qs_env, sab_xtbe=n_list)
148 CALL neighbor_list_iterator_create(nl_iterator, n_list)
149 DO WHILE (neighbor_list_iterate(nl_iterator) == 0)
150 CALL get_iterator_info(nl_iterator, ikind=ikind, jkind=jkind, &
151 iatom=iatom, jatom=jatom, r=rij, cell=cellind)
152 CALL get_qs_kind(qs_kind_set(ikind), xtb_parameter=xtb_atom_a)
153 CALL get_xtb_atom_param(xtb_atom_a, defined=defined, natorb=natorb_a)
154 IF (.NOT. defined .OR. natorb_a < 1) cycle
155 CALL get_qs_kind(qs_kind_set(jkind), xtb_parameter=xtb_atom_b)
156 CALL get_xtb_atom_param(xtb_atom_b, defined=defined, natorb=natorb_b)
157 IF (.NOT. defined .OR. natorb_b < 1) cycle
158 ! atomic parameters
159 CALL get_xtb_atom_param(xtb_atom_a, eta=etaa, lmax=lmaxa, kappa=kappaa, rcut=rcuta)
160 CALL get_xtb_atom_param(xtb_atom_b, eta=etab, lmax=lmaxb, kappa=kappab, rcut=rcutb)
161 ! gamma matrix
162 ni = lmaxa + 1
163 nj = lmaxb + 1
164 ALLOCATE (gammab(ni, nj))
165 rcut = rcuta + rcutb
166 dr = sqrt(sum(rij(:)**2))
167 CALL gamma_rab_sr(gammab, dr, ni, kappaa, etaa, nj, kappab, etab, kg, rcut)
168 gchrg(iatom, 1:ni, 1) = gchrg(iatom, 1:ni, 1) + matmul(gammab, charges1(jatom, 1:nj))
169 IF (iatom /= jatom) THEN
170 gchrg(jatom, 1:nj, 1) = gchrg(jatom, 1:nj, 1) + matmul(charges1(iatom, 1:ni), gammab)
171 END IF
172 DEALLOCATE (gammab)
173 END DO
174 CALL neighbor_list_iterator_release(nl_iterator)
175
176 ! 1/R contribution
177
178 IF (xtb_control%coulomb_lr) THEN
179 do_ewald = xtb_control%do_ewald
180 IF (do_ewald) THEN
181 ! Ewald sum
182 NULLIFY (ewald_env, ewald_pw)
183 NULLIFY (virial)
184 CALL get_qs_env(qs_env=qs_env, &
185 ewald_env=ewald_env, ewald_pw=ewald_pw)
186 CALL get_cell(cell=cell, periodic=periodic, deth=deth)
187 CALL ewald_env_get(ewald_env, alpha=alpha, ewald_type=ewald_type)
188 CALL get_qs_env(qs_env=qs_env, sab_tbe=n_list)
189 CALL tb_ewald_overlap(gmcharge, mcharge1, alpha, n_list, virial, .false.)
190 SELECT CASE (ewald_type)
191 CASE DEFAULT
192 cpabort("Invalid Ewald type")
193 CASE (do_ewald_none)
194 cpabort("Not allowed with DFTB")
195 CASE (do_ewald_ewald)
196 cpabort("Standard Ewald not implemented in DFTB")
197 CASE (do_ewald_pme)
198 cpabort("PME not implemented in DFTB")
199 CASE (do_ewald_spme)
200 CALL tb_spme_evaluate(ewald_env, ewald_pw, particle_set, cell, &
201 gmcharge, mcharge1, .false., virial, .false.)
202 END SELECT
203 ELSE
204 ! direct sum
205 CALL get_qs_env(qs_env=qs_env, &
206 local_particles=local_particles)
207 DO ikind = 1, SIZE(local_particles%n_el)
208 DO ia = 1, local_particles%n_el(ikind)
209 iatom = local_particles%list(ikind)%array(ia)
210 DO jatom = 1, iatom - 1
211 rij = particle_set(iatom)%r - particle_set(jatom)%r
212 rij = pbc(rij, cell)
213 dr = sqrt(sum(rij(:)**2))
214 IF (dr > 1.e-6_dp) THEN
215 gmcharge(iatom, 1) = gmcharge(iatom, 1) + mcharge1(jatom)/dr
216 gmcharge(jatom, 1) = gmcharge(jatom, 1) + mcharge1(iatom)/dr
217 END IF
218 END DO
219 END DO
220 END DO
221 END IF
222 END IF
223
224 ! global sum of gamma*p arrays
225 CALL get_qs_env(qs_env=qs_env, para_env=para_env)
226 CALL para_env%sum(gmcharge(:, 1))
227 CALL para_env%sum(gchrg(:, :, 1))
228
229 IF (xtb_control%coulomb_lr) THEN
230 IF (do_ewald) THEN
231 ! add self charge interaction and background charge contribution
232 gmcharge(:, 1) = gmcharge(:, 1) - 2._dp*alpha*oorootpi*mcharge1(:)
233 IF (any(periodic(:) == 1)) THEN
234 gmcharge(:, 1) = gmcharge(:, 1) - pi/alpha**2/deth
235 END IF
236 END IF
237 END IF
238
239 CALL get_qs_env(qs_env=qs_env, atomic_kind_set=atomic_kind_set)
240 CALL get_atomic_kind_set(atomic_kind_set=atomic_kind_set, kind_of=kind_of)
241
242 ! no k-points; all matrices have been transformed to periodic bsf
243 CALL dbcsr_iterator_start(iter, matrix_s(1, 1)%matrix)
244 DO WHILE (dbcsr_iterator_blocks_left(iter))
245 CALL dbcsr_iterator_next_block(iter, irow, icol, sblock)
246 ikind = kind_of(irow)
247 jkind = kind_of(icol)
248
249 ! atomic parameters
250 CALL get_qs_kind(qs_kind_set(ikind), xtb_parameter=xtb_atom_a)
251 CALL get_qs_kind(qs_kind_set(jkind), xtb_parameter=xtb_atom_b)
252 CALL get_xtb_atom_param(xtb_atom_a, z=za, lao=laoa)
253 CALL get_xtb_atom_param(xtb_atom_b, z=zb, lao=laob)
254
255 ni = SIZE(sblock, 1)
256 nj = SIZE(sblock, 2)
257 ALLOCATE (gcij(ni, nj))
258 DO i = 1, ni
259 DO j = 1, nj
260 la = laoa(i) + 1
261 lb = laob(j) + 1
262 gcij(i, j) = gchrg(irow, la, 1) + gchrg(icol, lb, 1)
263 END DO
264 END DO
265 gmij = gmcharge(irow, 1) + gmcharge(icol, 1)
266 DO is = 1, SIZE(ks_matrix)
267 NULLIFY (ksblock)
268 CALL dbcsr_get_block_p(matrix=ks_matrix(is)%matrix, &
269 row=irow, col=icol, block=ksblock, found=found)
270 cpassert(found)
271 ksblock = ksblock - gcij*sblock
272 ksblock = ksblock - gmij*sblock
273 END DO
274 DEALLOCATE (gcij)
275 END DO
276 CALL dbcsr_iterator_stop(iter)
277
278 IF (xtb_control%tb3_interaction) THEN
279 CALL get_qs_env(qs_env, nkind=nkind)
280 ALLOCATE (xgamma(nkind))
281 DO ikind = 1, nkind
282 CALL get_qs_kind(qs_kind_set(ikind), xtb_parameter=xtb_kind)
283 CALL get_xtb_atom_param(xtb_kind, xgamma=xgamma(ikind))
284 END DO
285 ! Diagonal 3rd order correction (DFTB3)
286 CALL dftb3_diagonal_hessian(qs_env, ks_matrix, mcharge, mcharge1, xgamma)
287 DEALLOCATE (xgamma)
288 END IF
289
290 IF (xtb_control%do_spinpol) THEN
291 CALL xtb_spinpol_hessian(qs_env, ks_matrix, matrix_p1)
292 END IF
293
294 IF (qs_env%qmmm .AND. qs_env%qmmm_periodic) THEN
295 cpabort("QMMM not available in xTB response calculations")
296 END IF
297
298 DEALLOCATE (gmcharge, gchrg)
299
300 CALL timestop(handle)
301
302 END SUBROUTINE xtb_coulomb_hessian
303
304! **************************************************************************************************
305!> \brief ...
306!> \param qs_env ...
307!> \param ks_matrix ...
308!> \param mcharge ...
309!> \param mcharge1 ...
310!> \param xgamma ...
311! **************************************************************************************************
312 SUBROUTINE dftb3_diagonal_hessian(qs_env, ks_matrix, mcharge, mcharge1, xgamma)
313
314 TYPE(qs_environment_type), POINTER :: qs_env
315 TYPE(dbcsr_p_type), DIMENSION(:), POINTER :: ks_matrix
316 REAL(dp), DIMENSION(:) :: mcharge, mcharge1, xgamma
317
318 CHARACTER(len=*), PARAMETER :: routinen = 'dftb3_diagonal_hessian'
319
320 INTEGER :: handle, icol, ikind, irow, is, jkind
321 INTEGER, ALLOCATABLE, DIMENSION(:) :: kind_of
322 LOGICAL :: found
323 REAL(kind=dp) :: gmij, ui, uj
324 REAL(kind=dp), DIMENSION(:, :), POINTER :: ksblock, sblock
325 TYPE(atomic_kind_type), DIMENSION(:), POINTER :: atomic_kind_set
326 TYPE(dbcsr_iterator_type) :: iter
327 TYPE(dbcsr_p_type), DIMENSION(:, :), POINTER :: matrix_s
328 TYPE(qs_kind_type), DIMENSION(:), POINTER :: qs_kind_set
329
330 CALL timeset(routinen, handle)
331
332 CALL get_qs_env(qs_env=qs_env, matrix_s_kp=matrix_s)
333 CALL get_qs_env(qs_env=qs_env, atomic_kind_set=atomic_kind_set, qs_kind_set=qs_kind_set)
334 CALL get_atomic_kind_set(atomic_kind_set=atomic_kind_set, kind_of=kind_of)
335 ! no k-points; all matrices have been transformed to periodic bsf
336 CALL dbcsr_iterator_start(iter, matrix_s(1, 1)%matrix)
337 DO WHILE (dbcsr_iterator_blocks_left(iter))
338 CALL dbcsr_iterator_next_block(iter, irow, icol, sblock)
339 ikind = kind_of(irow)
340 ui = xgamma(ikind)
341 jkind = kind_of(icol)
342 uj = xgamma(jkind)
343 gmij = ui*mcharge(irow)*mcharge1(irow) + uj*mcharge(icol)*mcharge1(icol)
344 DO is = 1, SIZE(ks_matrix)
345 NULLIFY (ksblock)
346 CALL dbcsr_get_block_p(matrix=ks_matrix(is)%matrix, &
347 row=irow, col=icol, block=ksblock, found=found)
348 cpassert(found)
349 ksblock = ksblock + gmij*sblock
350 END DO
351 END DO
352 CALL dbcsr_iterator_stop(iter)
353
354 CALL timestop(handle)
355
356 END SUBROUTINE dftb3_diagonal_hessian
357
358END MODULE xtb_ehess
359
Define the atomic kind types and their sub types.
subroutine, public get_atomic_kind_set(atomic_kind_set, atom_of_kind, kind_of, natom_of_kind, maxatom, natom, nshell, fist_potential_present, shell_present, shell_adiabatic, shell_check_distance, damping_present)
Get attributes of an atomic kind set.
Handles all functions related to the CELL.
Definition cell_types.F:15
subroutine, public get_cell(cell, alpha, beta, gamma, deth, orthorhombic, abc, periodic, h, h_inv, symmetry_id, tag)
Get informations about a simulation cell.
Definition cell_types.F:210
Defines control structures, which contain the parameters and the settings for the DFT-based calculati...
logical function, public dbcsr_iterator_blocks_left(iterator)
...
subroutine, public dbcsr_iterator_stop(iterator)
...
subroutine, public dbcsr_get_block_p(matrix, row, col, block, found, row_size, col_size)
...
subroutine, public dbcsr_iterator_next_block(iterator, row, column, block, block_number_argument_has_been_removed, row_size, col_size, row_offset, col_offset, transposed)
...
subroutine, public dbcsr_iterator_start(iterator, matrix, shared, dynamic, dynamic_byrows)
...
stores a lists of integer that are local to a processor. The idea is that these integers represent ob...
subroutine, public ewald_env_get(ewald_env, ewald_type, alpha, eps_pol, epsilon, gmax, ns_max, o_spline, group, para_env, poisson_section, precs, rcut, do_multipoles, max_multipole, do_ipol, max_ipol_iter, interaction_cutoffs, cell_hmat)
Purpose: Get the EWALD environment.
Calculation of Ewald contributions in DFTB.
subroutine, public tb_ewald_overlap(gmcharge, mcharge, alpha, n_list, virial, use_virial)
...
subroutine, public tb_spme_evaluate(ewald_env, ewald_pw, particle_set, box, gmcharge, mcharge, calculate_forces, virial, use_virial)
...
Defines the basic variable types.
Definition kinds.F:23
integer, parameter, public dp
Definition kinds.F:34
Definition of mathematical constants and functions.
real(kind=dp), parameter, public oorootpi
real(kind=dp), parameter, public pi
Interface to the message passing library MPI.
Define the data structure for the particle information.
functions related to the poisson solver on regular grids
integer, parameter, public do_ewald_pme
integer, parameter, public do_ewald_ewald
integer, parameter, public do_ewald_none
integer, parameter, public do_ewald_spme
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, 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.
Define the quickstep kind type and their sub types.
subroutine, public get_qs_kind(qs_kind, basis_set, basis_type, ncgf, nsgf, all_potential, tnadd_potential, gth_potential, sgp_potential, upf_potential, cneo_potential, se_parameter, dftb_parameter, xtb_parameter, dftb3_param, zatom, zeff, elec_conf, mao, lmax_dftb, alpha_core_charge, ccore_charge, core_charge, core_charge_radius, paw_proj_set, paw_atom, hard_radius, hard0_radius, max_rad_local, covalent_radius, vdw_radius, gpw_type_forced, harmonics, max_iso_not0, max_s_harm, grid_atom, ngrid_ang, ngrid_rad, lmax_rho0, dft_plus_u_atom, l_of_dft_plus_u, n_of_dft_plus_u, u_minus_j, u_of_dft_plus_u, j_of_dft_plus_u, alpha_of_dft_plus_u, beta_of_dft_plus_u, j0_of_dft_plus_u, occupation_of_dft_plus_u, dispersion, bs_occupation, magnetization, no_optimize, addel, laddel, naddel, orbitals, max_scf, eps_scf, smear, u_ramping, u_minus_j_target, eps_u_ramping, init_u_ramping_each_scf, reltmat, ghost, monovalent, floating, name, element_symbol, pao_basis_size, pao_model_file, pao_potentials, pao_descriptors, nelec)
Get attributes of an atomic kind.
Define the neighbor list data types and the corresponding functionality.
subroutine, public neighbor_list_iterator_create(iterator_set, nl, search, nthread)
Neighbor list iterator functions.
subroutine, public neighbor_list_iterator_release(iterator_set)
...
integer function, public neighbor_list_iterate(iterator_set, mepos)
...
subroutine, public get_iterator_info(iterator_set, mepos, ikind, jkind, nkind, ilist, nlist, inode, nnode, iatom, jatom, r, cell)
...
Calculation of Coulomb contributions in xTB.
Definition xtb_coulomb.F:12
subroutine, public gamma_rab_sr(gmat, rab, nla, kappaa, etaa, nlb, kappab, etab, kg, rcut)
Computes the short-range gamma parameter from Nataga-Mishimoto-Ohno-Klopman formula for xTB WARNING: ...
Calculation of Coulomb Hessian contributions in xTB.
Definition xtb_ehess.F:12
subroutine, public xtb_coulomb_hessian(qs_env, ks_matrix, charges1, mcharge1, mcharge, matrix_p1)
...
Definition xtb_ehess.F:79
Calculation of Spin Polarisation contributions in xTB.
Definition xtb_spinpol.F:12
subroutine, public xtb_spinpol_hessian(qs_env, ks_matrix, matrix_p1)
...
Definition of the xTB parameter types.
Definition xtb_types.F:20
subroutine, public get_xtb_atom_param(xtb_parameter, symbol, aname, typ, defined, z, zeff, natorb, lmax, nao, lao, rcut, rcov, kx, eta, xgamma, alpha, zneff, nshell, nval, lval, kpoly, kappa, wall, hen, zeta, xi, kappa0, alpg, occupation, electronegativity, chmax, en, kqat2, kcn, kq)
...
Definition xtb_types.F:203
Provides all information about an atomic kind.
Type defining parameters related to the simulation cell.
Definition cell_types.F:60
structure to store local (to a processor) ordered lists of integers.
stores all the informations relevant to an mpi environment
Provides all information about a quickstep kind.