73#include "./base/base_uses.f90"
79 CHARACTER(len=*),
PARAMETER,
PRIVATE :: moduleN =
'qs_dftb_coulomb'
82 REAL(dp),
PARAMETER :: tol_gamma = 1.e-4_dp
84 REAL(dp),
PARAMETER :: rtiny = 1.e-10_dp
85 REAL(KIND=dp),
PARAMETER,
PRIVATE :: dftb_fd_deriv_step = 1.0e-3_dp
102 calculate_forces, just_energy)
105 TYPE(
dbcsr_p_type),
DIMENSION(:, :),
POINTER :: ks_matrix
107 REAL(dp),
DIMENSION(:) :: mcharge
109 LOGICAL,
INTENT(in) :: calculate_forces, just_energy
111 CHARACTER(len=*),
PARAMETER :: routinen =
'build_dftb_coulomb'
113 INTEGER :: atom_i, atom_j, ewald_type, handle, i, ia, iac, iatom, ic, icol, ikind, img, &
114 irow, is, jatom, jkind, llm, lmaxi, lmaxj, n1, n2, natom, natorb_a, natorb_b, ngrd, &
115 ngrdcut, nimg, nkind, nmat
116 INTEGER,
ALLOCATABLE,
DIMENSION(:) :: atom_of_kind, kind_of
117 INTEGER,
DIMENSION(3) :: cellind, periodic
118 INTEGER,
DIMENSION(:, :, :),
POINTER :: cell_to_index
119 LOGICAL :: defined, defined_a, defined_b, do_ewald, &
120 do_gamma_stress, found, hb_sr_damp, &
122 REAL(kind=dp) :: alpha, background, ddr, deth, dgam, &
123 dgrd, dr, drm, drp, fi, ga, gb, gmat, &
124 gmij, gmij_virial, hb_para, zeff
125 REAL(kind=dp),
ALLOCATABLE,
DIMENSION(:) :: xgamma, zeffk
126 REAL(kind=dp),
DIMENSION(0:3) :: eta_a, eta_b
127 REAL(kind=dp),
DIMENSION(3) :: drij, fij, rij
128 REAL(kind=dp),
DIMENSION(:, :),
POINTER :: dsblock, dsblock_vir, dsblockm_vir, &
129 gmcharge, ksblock, pblock, sblock, &
131 REAL(kind=dp),
DIMENSION(:, :, :),
POINTER :: dsint
136 TYPE(
dbcsr_p_type),
DIMENSION(:, :),
POINTER :: matrix_p, matrix_s
144 DIMENSION(:),
POINTER :: nl_iterator
150 POINTER :: dftb_potential
153 TYPE(
qs_kind_type),
DIMENSION(:),
POINTER :: qs_kind_set
157 CALL timeset(routinen, handle)
159 NULLIFY (matrix_p, matrix_s, virial, atprop, dft_control)
163 IF (calculate_forces)
THEN
169 CALL get_qs_env(qs_env, nkind=nkind, natom=natom)
170 ALLOCATE (gmcharge(natom, nmat))
174 particle_set=particle_set, &
178 dft_control=dft_control, &
179 atomic_kind_set=atomic_kind_set, &
180 qs_kind_set=qs_kind_set, &
181 force=force, para_env=para_env)
183 IF (calculate_forces)
THEN
184 use_virial = virial%pv_availability .AND. (.NOT. virial%pv_numer)
187 NULLIFY (dftb_potential)
188 CALL get_qs_env(qs_env=qs_env, dftb_potential=dftb_potential)
190 CALL get_qs_env(qs_env=qs_env, sab_orb=n_list)
194 iatom=iatom, jatom=jatom, r=rij, cell=cellind)
196 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_kind_a)
198 defined=defined, eta=eta_a, natorb=natorb_a)
199 IF (.NOT. defined .OR. natorb_a < 1) cycle
200 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_kind_b)
202 defined=defined, eta=eta_b, natorb=natorb_b)
203 IF (.NOT. defined .OR. natorb_b < 1) cycle
206 hb_sr_damp = dft_control%qs_control%dftb_control%hb_sr_damp
209 hb_sr_damp =
is_hydrogen(particle_set(iatom)%atomic_kind) .NEQV. &
213 hb_para = dft_control%qs_control%dftb_control%hb_sr_para
219 dr = sqrt(sum(rij(:)**2))
221 gmcharge(jatom, 1) = gmcharge(jatom, 1) + gmat*mcharge(iatom)
222 IF (iatom /= jatom)
THEN
223 gmcharge(iatom, 1) = gmcharge(iatom, 1) + gmat*mcharge(jatom)
225 IF (calculate_forces .AND. (iatom /= jatom .OR. dr > 0.001_dp))
THEN
226 ddr = dftb_fd_deriv_step*dftb_potential(ikind, jkind)%dgrd
231 gmcharge(jatom, i + 1) = gmcharge(jatom, i + 1) - dgam*mcharge(iatom)*rij(i)/dr
232 IF (dr > 0.001_dp)
THEN
233 gmcharge(iatom, i + 1) = gmcharge(iatom, i + 1) + dgam*mcharge(jatom)*rij(i)/dr
236 fij(i) = -mcharge(iatom)*mcharge(jatom)*dgam*rij(i)/dr
241 IF (iatom == jatom) fi = 0.5_dp
248 IF (atprop%energy)
THEN
249 CALL get_qs_env(qs_env=qs_env, particle_set=particle_set)
250 natom =
SIZE(particle_set)
255 do_ewald = dft_control%qs_control%dftb_control%do_ewald
258 NULLIFY (ewald_env, ewald_pw)
260 ewald_env=ewald_env, ewald_pw=ewald_pw)
261 CALL get_cell(cell=cell, periodic=periodic, deth=deth)
262 CALL ewald_env_get(ewald_env, alpha=alpha, ewald_type=ewald_type)
263 CALL get_qs_env(qs_env=qs_env, sab_tbe=n_list)
265 SELECT CASE (ewald_type)
267 cpabort(
"Invalid Ewald type")
269 cpabort(
"Not allowed with DFTB")
271 cpabort(
"Standard Ewald not implemented in DFTB")
273 cpabort(
"PME not implemented in DFTB")
276 gmcharge, mcharge, calculate_forces, virial, use_virial)
281 local_particles=local_particles)
282 DO ikind = 1,
SIZE(local_particles%n_el)
283 DO ia = 1, local_particles%n_el(ikind)
284 iatom = local_particles%list(ikind)%array(ia)
285 DO jatom = 1, iatom - 1
286 rij = particle_set(iatom)%r - particle_set(jatom)%r
288 dr = sqrt(sum(rij(:)**2))
289 gmcharge(iatom, 1) = gmcharge(iatom, 1) + mcharge(jatom)/dr
290 gmcharge(jatom, 1) = gmcharge(jatom, 1) + mcharge(iatom)/dr
292 gmcharge(iatom, i) = gmcharge(iatom, i) + rij(i - 1)*mcharge(jatom)/dr**3
293 gmcharge(jatom, i) = gmcharge(jatom, i) - rij(i - 1)*mcharge(iatom)/dr**3
295 IF (use_virial .AND. dr > 1.e-6_dp)
THEN
297 fij(i) = mcharge(iatom)*mcharge(jatom)*rij(i)/dr**3
306 CALL para_env%sum(gmcharge(:, 1))
311 gmcharge(:, 1) = gmcharge(:, 1) - 2._dp*alpha*
oorootpi*mcharge(:)
312 IF (any(periodic(:) == 1))
THEN
313 background =
pi/alpha**2/deth
317 energy%hartree = energy%hartree + 0.5_dp*sum(mcharge(:)*(gmcharge(:, 1) - background))
318 IF (atprop%energy)
THEN
320 local_particles=local_particles)
321 DO ikind = 1,
SIZE(local_particles%n_el)
322 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_kind)
324 DO ia = 1, local_particles%n_el(ikind)
325 iatom = local_particles%list(ikind)%array(ia)
326 atprop%atecoul(iatom) = atprop%atecoul(iatom) + &
327 0.5_dp*zeff*gmcharge(iatom, 1)
332 IF (calculate_forces)
THEN
335 atom_of_kind=atom_of_kind)
337 gmcharge(:, 2) = gmcharge(:, 2)*mcharge(:)
338 gmcharge(:, 3) = gmcharge(:, 3)*mcharge(:)
339 gmcharge(:, 4) = gmcharge(:, 4)*mcharge(:)
341 ikind = kind_of(iatom)
342 atom_i = atom_of_kind(iatom)
343 force(ikind)%rho_elec(1, atom_i) = force(ikind)%rho_elec(1, atom_i) - gmcharge(iatom, 2)
344 force(ikind)%rho_elec(2, atom_i) = force(ikind)%rho_elec(2, atom_i) - gmcharge(iatom, 3)
345 force(ikind)%rho_elec(3, atom_i) = force(ikind)%rho_elec(3, atom_i) - gmcharge(iatom, 4)
349 do_gamma_stress = .false.
350 IF (.NOT. just_energy .AND. use_virial)
THEN
351 IF (dft_control%nimages == 1) do_gamma_stress = .true.
354 IF (.NOT. just_energy)
THEN
355 CALL get_qs_env(qs_env=qs_env, matrix_s_kp=matrix_s)
358 nimg = dft_control%nimages
359 NULLIFY (cell_to_index)
362 CALL get_qs_env(qs_env=qs_env, kpoints=kpoints)
366 IF (calculate_forces .AND.
SIZE(matrix_p, 1) == 2)
THEN
368 CALL dbcsr_add(matrix_p(1, img)%matrix, matrix_p(2, img)%matrix, &
369 alpha_scalar=1.0_dp, beta_scalar=1.0_dp)
374 IF (do_gamma_stress)
THEN
376 CALL dftb_dsint_list(qs_env, sap_int)
384 gmij = 0.5_dp*(gmcharge(irow, 1) + gmcharge(icol, 1))
385 DO is = 1,
SIZE(ks_matrix, 1)
388 row=irow, col=icol, block=ksblock, found=found)
390 ksblock = ksblock - gmij*sblock
392 IF (calculate_forces)
THEN
393 ikind = kind_of(irow)
394 atom_i = atom_of_kind(irow)
395 jkind = kind_of(icol)
396 atom_j = atom_of_kind(icol)
399 row=irow, col=icol, block=pblock, found=found)
404 row=irow, col=icol, block=dsblock, found=found)
406 fi = -2.0_dp*gmij*sum(pblock*dsblock)
407 force(ikind)%rho_elec(i, atom_i) = force(ikind)%rho_elec(i, atom_i) + fi
408 force(jkind)%rho_elec(i, atom_j) = force(jkind)%rho_elec(i, atom_j) - fi
415 IF (do_gamma_stress)
THEN
418 iac = ikind + nkind*(jkind - 1)
419 IF (.NOT.
ASSOCIATED(sap_int(iac)%alist)) cycle
420 DO ia = 1, sap_int(iac)%nalist
421 IF (.NOT.
ASSOCIATED(sap_int(iac)%alist(ia)%clist)) cycle
422 iatom = sap_int(iac)%alist(ia)%aatom
423 DO ic = 1, sap_int(iac)%alist(ia)%nclist
424 jatom = sap_int(iac)%alist(ia)%clist(ic)%catom
425 rij = sap_int(iac)%alist(ia)%clist(ic)%rac
426 dr = sqrt(sum(rij(:)**2))
427 IF (dr > 1.e-6_dp)
THEN
428 dsint => sap_int(iac)%alist(ia)%clist(ic)%acint
429 gmij = 0.5_dp*(gmcharge(iatom, 1) + gmcharge(jatom, 1))
430 icol = max(iatom, jatom)
431 irow = min(iatom, jatom)
434 row=irow, col=icol, block=pblock, found=found)
437 IF (irow == iatom)
THEN
438 fij(i) = -2.0_dp*gmij*sum(pblock*dsint(:, :, i))
440 fij(i) = -2.0_dp*gmij*sum(transpose(pblock)*dsint(:, :, i))
444 IF (iatom == jatom) fi = 0.5_dp
454 CALL get_qs_env(qs_env=qs_env, sab_orb=n_list)
458 iatom=iatom, jatom=jatom, r=rij, cell=cellind)
460 icol = max(iatom, jatom)
461 irow = min(iatom, jatom)
462 ic = cell_to_index(cellind(1), cellind(2), cellind(3))
465 gmij = 0.5_dp*(gmcharge(iatom, 1) + gmcharge(jatom, 1))
469 row=irow, col=icol, block=sblock, found=found)
471 DO is = 1,
SIZE(ks_matrix, 1)
474 row=irow, col=icol, block=ksblock, found=found)
476 ksblock = ksblock - gmij*sblock
479 IF (calculate_forces)
THEN
480 ikind = kind_of(iatom)
481 atom_i = atom_of_kind(iatom)
482 jkind = kind_of(jatom)
483 atom_j = atom_of_kind(jatom)
484 IF (irow == jatom) gmij = -gmij
487 row=irow, col=icol, block=pblock, found=found)
492 row=irow, col=icol, block=dsblock, found=found)
494 fi = -2.0_dp*gmij*sum(pblock*dsblock)
495 force(ikind)%rho_elec(i, atom_i) = force(ikind)%rho_elec(i, atom_i) + fi
496 force(jkind)%rho_elec(i, atom_j) = force(jkind)%rho_elec(i, atom_j) - fi
503 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_kind_a)
505 defined=defined_a, lmax=lmaxi, natorb=natorb_a)
506 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_kind_b)
508 defined=defined_b, lmax=lmaxj, natorb=natorb_b)
509 IF (defined_a .AND. defined_b .AND. natorb_a > 0 .AND. natorb_b > 0)
THEN
510 dftb_param_ij => dftb_potential(ikind, jkind)
511 dftb_param_ji => dftb_potential(jkind, ikind)
512 ngrd = dftb_param_ij%ngrd
513 ngrdcut = dftb_param_ij%ngrdcut
514 dgrd = dftb_param_ij%dgrd
515 ddr = dgrd*dftb_fd_deriv_step
516 cpassert(dftb_param_ij%llm == dftb_param_ji%llm)
517 llm = dftb_param_ij%llm
518 smatij => dftb_param_ij%smat
519 smatji => dftb_param_ji%smat
520 dr = sqrt(sum(rij(:)**2))
521 IF (nint(dr/dgrd) <= ngrdcut .AND. dr > 1.e-6_dp)
THEN
524 ALLOCATE (dsblock_vir(n1, n2), dsblockm_vir(n1, n2))
525 gmij_virial = 0.5_dp*(gmcharge(iatom, 1) + gmcharge(jatom, 1))
530 drij(i) = rij(i) - ddr
531 CALL compute_block_sk(dsblockm_vir, smatij, smatji, drij, ngrd, ngrdcut, dgrd, &
532 llm, lmaxi, lmaxj, iatom, iatom)
533 drij(i) = rij(i) + ddr
534 CALL compute_block_sk(dsblock_vir, smatij, smatji, drij, ngrd, ngrdcut, dgrd, &
535 llm, lmaxi, lmaxj, iatom, iatom)
536 dsblock_vir = (dsblock_vir - dsblockm_vir)/(2.0_dp*ddr)
537 IF (irow == iatom)
THEN
538 fij(i) = 2.0_dp*gmij_virial*sum(pblock*dsblock_vir)
540 fij(i) = 2.0_dp*gmij_virial*sum(transpose(pblock)*dsblock_vir)
543 DEALLOCATE (dsblock_vir, dsblockm_vir)
545 IF (iatom == jatom) fi = 0.5_dp
555 IF (calculate_forces .AND.
SIZE(matrix_p, 1) == 2)
THEN
557 CALL dbcsr_add(matrix_p(1, img)%matrix, matrix_p(2, img)%matrix, &
558 alpha_scalar=1.0_dp, beta_scalar=-1.0_dp)
563 IF (dft_control%qs_control%dftb_control%dftb3_diagonal)
THEN
565 ALLOCATE (zeffk(nkind), xgamma(nkind))
567 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_kind)
572 sap_int, calculate_forces, just_energy)
573 DEALLOCATE (zeffk, xgamma)
577 IF (qs_env%qmmm .AND. qs_env%qmmm_periodic)
THEN
579 calculate_forces, just_energy)
582 IF (do_gamma_stress)
THEN
586 DEALLOCATE (gmcharge)
588 CALL timestop(handle)
608 REAL(dp),
INTENT(in) :: r, ga, gb, hb_para
611 REAL(dp) :: a, b,
fac, g_sum
617 IF (g_sum < tol_gamma)
RETURN
620 gamma = 0.5_dp*(a*b/g_sum + (a*b)**2/g_sum**3)
627 IF (abs(a - b) < rtiny)
THEN
628 fac = 1.6_dp*r*a*b/g_sum*(1.0_dp + a*b/g_sum**2)
631 gamma = -exp(-a*r)*(0.5_dp*a*b**4/(a**2 - b**2)**2 - &
632 (b**6 - 3._dp*a**2*b**4)/(r*(a**2 - b**2)**3)) - &
633 exp(-b*r)*(0.5_dp*b*a**4/(b**2 - a**2)**2 - &
634 (a**6 - 3._dp*b**2*a**4)/(r*(b**2 - a**2)**3))
641 IF (hb_para > 0.0_dp)
THEN
642 gamma =
gamma*exp(-(0.5_dp*(ga + gb))**hb_para*r*r)
651 SUBROUTINE dftb_dsint_list(qs_env, sap_int)
656 CHARACTER(LEN=*),
PARAMETER :: routinen =
'dftb_dsint_list'
658 INTEGER :: handle, i, iac, iatom, ikind, ilist, jatom, jkind, jneighbor, llm, lmaxi, lmaxj, &
659 n1, n2, natorb_a, natorb_b, ngrd, ngrdcut, nkind, nlist, nneighbor
660 INTEGER,
DIMENSION(3) :: cell
662 REAL(kind=dp) :: ddr, dgrd, dr
663 REAL(kind=dp),
DIMENSION(3) :: drij, rij
664 REAL(kind=dp),
DIMENSION(:, :),
POINTER :: dsblock, dsblockm, smatij, smatji
669 DIMENSION(:),
POINTER :: nl_iterator
674 POINTER :: dftb_potential
676 TYPE(
qs_kind_type),
DIMENSION(:),
POINTER :: qs_kind_set
678 CALL timeset(routinen, handle)
681 cpassert(.NOT.
ASSOCIATED(sap_int))
682 ALLOCATE (sap_int(nkind*nkind))
683 DO i = 1, nkind*nkind
684 NULLIFY (sap_int(i)%alist, sap_int(i)%asort, sap_int(i)%aindex)
685 sap_int(i)%nalist = 0
689 qs_kind_set=qs_kind_set, &
690 dft_control=dft_control, &
693 dftb_control => dft_control%qs_control%dftb_control
695 NULLIFY (dftb_potential)
697 dftb_potential=dftb_potential)
703 jatom=jatom, nlist=nlist, ilist=ilist, nnode=nneighbor, &
704 inode=jneighbor, cell=cell, r=rij)
705 iac = ikind + nkind*(jkind - 1)
707 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_kind_a)
709 defined=defined, lmax=lmaxi, natorb=natorb_a)
710 IF (.NOT. defined .OR. natorb_a < 1) cycle
711 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_kind_b)
713 defined=defined, lmax=lmaxj, natorb=natorb_b)
714 IF (.NOT. defined .OR. natorb_b < 1) cycle
716 dr = sqrt(sum(rij(:)**2))
719 IF (.NOT.
ASSOCIATED(sap_int(iac)%alist))
THEN
720 sap_int(iac)%a_kind = ikind
721 sap_int(iac)%p_kind = jkind
722 sap_int(iac)%nalist = nlist
723 ALLOCATE (sap_int(iac)%alist(nlist))
725 NULLIFY (sap_int(iac)%alist(i)%clist)
726 sap_int(iac)%alist(i)%aatom = 0
727 sap_int(iac)%alist(i)%nclist = 0
730 IF (.NOT.
ASSOCIATED(sap_int(iac)%alist(ilist)%clist))
THEN
731 sap_int(iac)%alist(ilist)%aatom = iatom
732 sap_int(iac)%alist(ilist)%nclist = nneighbor
733 ALLOCATE (sap_int(iac)%alist(ilist)%clist(nneighbor))
735 sap_int(iac)%alist(ilist)%clist(i)%catom = 0
738 clist => sap_int(iac)%alist(ilist)%clist(jneighbor)
742 ALLOCATE (clist%acint(natorb_a, natorb_b, 3))
743 NULLIFY (clist%achint)
746 NULLIFY (clist%sgf_list)
749 dftb_param_ij => dftb_potential(ikind, jkind)
750 dftb_param_ji => dftb_potential(jkind, ikind)
752 ngrd = dftb_param_ij%ngrd
753 ngrdcut = dftb_param_ij%ngrdcut
754 dgrd = dftb_param_ij%dgrd
755 ddr = dgrd*dftb_fd_deriv_step
756 cpassert(dftb_param_ij%llm == dftb_param_ji%llm)
757 llm = dftb_param_ij%llm
758 smatij => dftb_param_ij%smat
759 smatji => dftb_param_ji%smat
761 IF (nint(dr/dgrd) <= ngrdcut)
THEN
762 IF (iatom == jatom .AND. dr < 0.001_dp)
THEN
768 ALLOCATE (dsblock(n1, n2), dsblockm(n1, n2))
774 drij(i) = rij(i) - ddr
775 CALL compute_block_sk(dsblockm, smatij, smatji, drij, ngrd, ngrdcut, dgrd, &
776 llm, lmaxi, lmaxj, iatom, iatom)
778 drij(i) = rij(i) + ddr
780 llm, lmaxi, lmaxj, iatom, iatom)
782 dsblock = dsblock - dsblockm
783 dsblock = dsblock/(2.0_dp*ddr)
785 clist%acint(1:n1, 1:n2, i) = -dsblock(1:n1, 1:n2)
787 DEALLOCATE (dsblock, dsblockm)
794 CALL timestop(handle)
796 END SUBROUTINE dftb_dsint_list
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.
elemental logical function, public is_hydrogen(atomic_kind)
Determines if the atomic_kind is HYDROGEN.
Holds information on atomic properties.
subroutine, public atprop_array_init(atarray, natom)
...
Handles all functions related to the CELL.
subroutine, public get_cell(cell, alpha, beta, gamma, deth, orthorhombic, abc, periodic, h, h_inv, symmetry_id, tag)
Get informations about a simulation cell.
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)
...
subroutine, public dbcsr_add(matrix_a, matrix_b, alpha_scalar, beta_scalar)
...
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)
...
Calculation of the incomplete Gamma function F_n(t) for multi-center integrals over Cartesian Gaussia...
Defines the basic variable types.
integer, parameter, public dp
Types and basic routines needed for a kpoint calculation.
subroutine, public get_kpoint_info(kpoint, kp_scheme, nkp_grid, kp_shift, symmetry, verbose, full_grid, use_real_wfn, eps_geo, parallel_group_size, kp_range, nkp, xkp, wkp, para_env, blacs_env_all, para_env_kp, para_env_inter_kp, blacs_env, kp_env, kp_aux_env, mpools, iogrp, nkp_groups, kp_dist, cell_to_index, index_to_cell, sab_nl, sab_nl_nosym, inversion_symmetry_only, symmetry_backend, symmetry_reduction_method, gamma_centered)
Retrieve information from a kpoint environment.
Definition of mathematical constants and functions.
real(kind=dp), parameter, public oorootpi
real(kind=dp), parameter, public pi
real(kind=dp), dimension(0:maxfac), parameter, public fac
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
Calculation of QMMM Coulomb contributions in TB.
subroutine, public build_tb_coulomb_qmqm(qs_env, ks_matrix, rho, mcharge, energy, calculate_forces, just_energy)
...
Calculation of DFTB3 Terms.
subroutine, public build_dftb3_diagonal(qs_env, ks_matrix, rho, mcharge, energy, xgamma, zeff, sap_int, calculate_forces, just_energy)
...
Calculation of Coulomb contributions in DFTB.
subroutine, public build_dftb_coulomb(qs_env, ks_matrix, rho, mcharge, energy, calculate_forces, just_energy)
...
real(dp) function, public gamma_rab_sr(r, ga, gb, hb_para)
Computes the short-range gamma parameter from exact Coulomb interaction of normalized exp(-a*r) charg...
Definition of the DFTB parameter types.
Working with the DFTB parameter types.
subroutine, public compute_block_sk(block, smatij, smatji, rij, ngrd, ngrdcut, dgrd, llm, lmaxi, lmaxj, irow, iatom)
...
subroutine, public get_dftb_atom_param(dftb_parameter, name, typ, defined, z, zeff, natorb, lmax, skself, occupation, eta, energy, cutoff, xi, di, rcdisp, dudq)
...
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)
...
superstucture that hold various representations of the density and keeps track of which ones are vali...
subroutine, public qs_rho_get(rho_struct, rho_ao, rho_ao_im, rho_ao_kp, rho_ao_im_kp, rho_r, drho_r, rho_g, drho_g, tau_r, tau_g, rho_r_valid, drho_r_valid, rho_g_valid, drho_g_valid, tau_r_valid, tau_g_valid, tot_rho_r, tot_rho_g, rho_r_sccs, soft_valid, complex_rho_ao)
returns info about the density described by this object. If some representation is not available an e...
General overlap type integrals containers.
subroutine, public release_sap_int(sap_int)
...
pure subroutine, public virial_pair_force(pv_virial, f0, force, rab)
Computes the contribution to the stress tensor from two-body pair-wise forces.
Provides all information about an atomic kind.
type for the atomic properties
Type defining parameters related to the simulation cell.
structure to store local (to a processor) ordered lists of integers.
to build arrays of pointers
Contains information about kpoints.
stores all the informations relevant to an mpi environment
Provides all information about a quickstep kind.
keeps the density in various representations, keeping track of which ones are valid.