80 subsys_section, para_env)
85 POINTER :: dftb_potential
89 CHARACTER(LEN=2) :: iel, jel
90 CHARACTER(LEN=6) :: cspline
91 CHARACTER(LEN=default_path_length) :: file_name
92 CHARACTER(LEN=default_path_length),
ALLOCATABLE, &
93 DIMENSION(:, :) :: sk_files
94 CHARACTER(LEN=default_string_length) :: iname, jname, name_a, name_b, skfn
95 INTEGER :: ikind, isp, jkind, k, l, l1, l2, llm, &
96 lmax, lmax_a, lmax_b, lp, m, n_urpoly, &
97 ngrd, nkind, output_unit, runit, &
99 LOGICAL :: at_end, found, ldum, search, sklist
100 REAL(dp) :: da, db, dgrd, dij, energy, eps_disp, ra, &
101 radmax, rb, rcdisp, rmax6, s_cut, xij, &
103 REAL(dp),
ALLOCATABLE,
DIMENSION(:, :) :: fmat, scoeff, smat, spxr
104 REAL(dp),
DIMENSION(0:3) :: eta, occupation, skself
105 REAL(dp),
DIMENSION(10) :: fwork, swork, uwork
106 REAL(dp),
DIMENSION(1:2) :: surr
107 REAL(dp),
DIMENSION(1:3) :: srep
115 "PRINT%KINDS/BASIS_SET"),
cp_p_file))
THEN
117 "PRINT%KINDS", extension=
".Log")
118 IF (output_unit > 0)
THEN
119 WRITE (output_unit,
"(/,A)")
" DFTB| A set of relativistic DFTB "// &
120 "parameters for material sciences."
121 WRITE (output_unit,
"(A)")
" DFTB| J. Frenzel, N. Jardillier, A.F. Oliveira,"// &
122 " T. Heine, G. Seifert"
123 WRITE (output_unit,
"(A)")
" DFTB| TU Dresden, 2002-2007"
124 WRITE (output_unit,
"(/,A)")
" DFTB| Non-SCC parameters "
125 WRITE (output_unit,
"(A,T25,A)")
" DFTB| C,H :", &
126 " D. Porezag et al, PRB 51 12947 (1995)"
127 WRITE (output_unit,
"(A,T25,A)")
" DFTB| B,N :", &
128 " J. Widany et al, PRB 53 4443 (1996)"
129 WRITE (output_unit,
"(A,T25,A)")
" DFTB| Li,Na,K,Cl :", &
130 " S. Hazebroucq et al, JCP 123 134510 (2005)"
131 WRITE (output_unit,
"(A,T25,A)")
" DFTB| F :", &
132 " T. Heine et al, JCSoc-Perkins Trans 2 707 (1999)"
133 WRITE (output_unit,
"(A,T25,A)")
" DFTB| Mo,S :", &
134 " G. Seifert et al, PRL 85 146 (2000)"
135 WRITE (output_unit,
"(A,T25,A)")
" DFTB| P :", &
136 " G. Seifert et al, EPS 16 341 (2001)"
137 WRITE (output_unit,
"(A,T25,A)")
" DFTB| Sc,N,C :", &
138 " M. Krause et al, JCP 115 6596 (2001)"
144 sklist = (dftb_control%sk_file_list /=
"")
146 nkind =
SIZE(atomic_kind_set)
147 ALLOCATE (sk_files(nkind, nkind))
149 ALLOCATE (dftb_potential(nkind, nkind))
153 CALL get_atomic_kind(atomic_kind_set(ikind), name=iname, element_symbol=iel)
158 CALL get_atomic_kind(atomic_kind_set(jkind), name=jname, element_symbol=jel)
163 DO k = 1,
SIZE(dftb_control%sk_pair_list, 2)
164 name_a = trim(dftb_control%sk_pair_list(1, k))
165 name_b = trim(dftb_control%sk_pair_list(2, k))
168 IF ((iname == name_a .AND. jname == name_b))
THEN
169 sk_files(ikind, jkind) = trim(dftb_control%sk_file_path)//
"/"// &
170 trim(dftb_control%sk_pair_list(3, k))
175 IF (.NOT. found .AND. sklist)
THEN
176 file_name = trim(dftb_control%sk_file_path)//
"/"// &
177 trim(dftb_control%sk_file_list)
188 IF ((iname == name_a .AND. jname == name_b))
THEN
190 sk_files(ikind, jkind) = trim(dftb_control%sk_file_path)//
"/"// &
196 IF ((iel == name_a .AND. jel == name_b))
THEN
198 sk_files(ikind, jkind) = trim(dftb_control%sk_file_path)//
"/"// &
207 IF (.NOT. found)
THEN
208 CALL cp_abort(__location__, &
209 "Failure in assigning KINDS <"//trim(iname)//
"> and <"//trim(jname)// &
210 "> to a DFTB interaction pair!")
219 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
220 IF (.NOT.
ASSOCIATED(dftb_atom_a))
THEN
222 CALL set_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
229 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_atom_b)
231 IF (output_unit > 0)
THEN
232 WRITE (output_unit,
"(A,T30,A50)")
" DFTB| Reading parameter file ", &
233 adjustr(trim(sk_files(jkind, ikind)))
238 IF (para_env%is_source())
THEN
240 CALL open_file(file_name=sk_files(jkind, ikind), unit_number=runit)
242 READ (runit, fmt=*,
END=1, err=1) dgrd, ngrd
250 READ (runit, fmt=*,
END=1, err=1) skself(2:0:-1), energy, &
251 eta(2:0:-1), occupation(2:0:-1)
253 READ (runit, fmt=*,
END=1, err=1) uwork(1:10)
255 IF (dot_product(uwork(2:10), uwork(2:10)) >= 1.e-12_dp)
THEN
258 IF (abs(uwork(k)) >= 1.e-12_dp) n_urpoly = k
263 IF (n_urpoly < 2) n_urpoly = 0
266 CALL para_env%bcast(n_urpoly)
267 CALL para_env%bcast(uwork)
268 CALL para_env%bcast(ngrd)
269 CALL para_env%bcast(dgrd)
271 CALL para_env%bcast(skself)
272 CALL para_env%bcast(energy)
273 CALL para_env%bcast(eta)
274 CALL para_env%bcast(occupation)
276 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, &
277 z=z, zeff=sum(occupation), defined=.true., &
278 skself=skself, energy=energy, eta=eta, occupation=occupation)
281 ALLOCATE (fmat(ngrd, 10))
282 ALLOCATE (smat(ngrd, 10))
283 IF (para_env%is_source())
THEN
285 READ (runit, fmt=*,
END=1, err=1) fwork(1:10), swork(1:10)
286 fmat(k, 1:10) = fwork(1:10)
287 smat(k, 1:10) = swork(1:10)
290 CALL para_env%bcast(fmat)
291 CALL para_env%bcast(smat)
304 CALL get_qs_kind(qs_kind_set(ikind), lmax_dftb=lmax)
310 cpabort(
"Only 0, 1, 2 are supported as the value of l")
322 IF ((abs(skself(l)) > 0._dp) .OR. &
323 (sum(abs(fmat(ngrd/10:ngrd, lp))) > 0._dp)) lmax = l
329 CALL cp_abort(__location__,
"Maximum L allowed is d. "// &
330 "Use KIND/LMAX_DFTB to set smaller values if needed.")
333 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, &
334 lmax=lmax, natorb=(lmax + 1)**2)
337 IF (n_urpoly == 0)
THEN
338 IF (para_env%is_source())
THEN
342 READ (runit, fmt=
'(A6)',
END=1, err=1) cspline
343 IF (cspline ==
'Spline')
THEN
346 READ (runit, fmt=*,
END=1, err=1) spdim, s_cut
347 ALLOCATE (spxr(spdim, 2))
348 ALLOCATE (scoeff(spdim, 4))
350 READ (runit, fmt=*,
END=1, err=1) srep(1:3)
351 DO isp = 1, spdim - 1
353 READ (runit, fmt=*,
END=1, err=1) spxr(isp, 1:2), scoeff(isp, 1:4)
356 READ (runit, fmt=*,
END=1, err=1) spxr(spdim, 1:2), scoeff(spdim, 1:4), surr(1:2)
362 IF (para_env%is_source())
THEN
363 CALL close_file(unit_number=runit)
366 CALL para_env%bcast(spdim)
367 IF (spdim > 0 .AND. (.NOT. para_env%is_source()))
THEN
368 ALLOCATE (spxr(spdim, 2))
369 ALLOCATE (scoeff(spdim, 4))
372 CALL para_env%bcast(spxr)
373 CALL para_env%bcast(scoeff)
374 CALL para_env%bcast(surr)
375 CALL para_env%bcast(srep)
376 CALL para_env%bcast(s_cut)
381 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_a, lmax=lmax_a)
382 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_b, lmax=lmax_b)
384 DO l1 = 0, max(lmax_a, lmax_b)
385 DO l2 = 0, min(l1, lmax_a, lmax_b)
391 CALL qs_dftb_pairpot_create(dftb_potential(ikind, jkind), &
395 dftb_potential(ikind, jkind)%n_urpoly = n_urpoly
396 dftb_potential(ikind, jkind)%urep_cut = uwork(10)
397 dftb_potential(ikind, jkind)%urep(:) = 0._dp
398 dftb_potential(ikind, jkind)%urep(1) = uwork(10)
399 dftb_potential(ikind, jkind)%urep(2:n_urpoly) = uwork(2:n_urpoly)
402 dftb_potential(ikind, jkind)%dgrd = dgrd
403 CALL skreorder(fmat, lmax_a, lmax_b)
404 dftb_potential(ikind, jkind)%fmat(:, 1:llm) = fmat(:, 1:llm)
405 CALL skreorder(smat, lmax_a, lmax_b)
406 dftb_potential(ikind, jkind)%smat(:, 1:llm) = smat(:, 1:llm)
407 dftb_potential(ikind, jkind)%ngrdcut = ngrd + int(slako_d0/dgrd)
410 dftb_potential(ikind, jkind)%s_cut = s_cut
411 dftb_potential(ikind, jkind)%srep = srep
412 dftb_potential(ikind, jkind)%spxr = spxr
413 dftb_potential(ikind, jkind)%scoeff = scoeff
414 dftb_potential(ikind, jkind)%surr = surr
428 CALL get_atomic_kind(atomic_kind_set(ikind), z=z, name=iname)
429 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
431 IF (.NOT.
ASSOCIATED(dftb_atom_a))
THEN
432 CALL allocate_dftb_atom_param(dftb_atom_a)
433 CALL set_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
438 IF (ikind == jkind) cycle
439 CALL get_atomic_kind(atomic_kind_set(jkind), name=jname)
440 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_atom_b)
442 IF (output_unit > 0)
THEN
443 WRITE (output_unit,
"(A,T30,A50)")
" DFTB| Reading parameter file ", &
444 adjustr(trim(sk_files(ikind, jkind)))
449 IF (para_env%is_source())
THEN
450 runit = get_unit_number()
451 CALL open_file(file_name=sk_files(ikind, jkind), unit_number=runit)
453 READ (runit, fmt=*,
END=1, err=1) dgrd, ngrd
460 IF (ikind == jkind)
THEN
462 READ (runit, fmt=*,
END=1, err=1) skself(2:0:-1), energy, &
463 eta(2:0:-1), occupation(2:0:-1)
466 READ (runit, fmt=*,
END=1, err=1) uwork(1:10)
468 IF (dot_product(uwork(2:10), uwork(2:10)) >= 1.e-12_dp)
THEN
471 IF (abs(uwork(k)) >= 1.e-12_dp) n_urpoly = k
476 IF (n_urpoly < 2) n_urpoly = 0
479 CALL para_env%bcast(n_urpoly)
480 CALL para_env%bcast(uwork)
481 CALL para_env%bcast(ngrd)
482 CALL para_env%bcast(dgrd)
485 ALLOCATE (fmat(ngrd, 10))
486 ALLOCATE (smat(ngrd, 10))
487 IF (para_env%is_source())
THEN
489 READ (runit, fmt=*,
END=1, err=1) fwork(1:10), swork(1:10)
490 fmat(k, 1:10) = fwork(1:10)
491 smat(k, 1:10) = swork(1:10)
494 CALL para_env%bcast(fmat)
495 CALL para_env%bcast(smat)
498 IF (n_urpoly == 0)
THEN
499 IF (para_env%is_source())
THEN
503 READ (runit, fmt=
'(A6)',
END=1, err=1) cspline
504 IF (cspline ==
'Spline')
THEN
507 READ (runit, fmt=*,
END=1, err=1) spdim, s_cut
508 ALLOCATE (spxr(spdim, 2))
509 ALLOCATE (scoeff(spdim, 4))
511 READ (runit, fmt=*,
END=1, err=1) srep(1:3)
512 DO isp = 1, spdim - 1
514 READ (runit, fmt=*,
END=1, err=1) spxr(isp, 1:2), scoeff(isp, 1:4)
517 READ (runit, fmt=*,
END=1, err=1) spxr(spdim, 1:2), scoeff(spdim, 1:4), surr(1:2)
523 IF (para_env%is_source())
THEN
524 CALL close_file(unit_number=runit)
527 CALL para_env%bcast(spdim)
528 IF (spdim > 0 .AND. (.NOT. para_env%is_source()))
THEN
529 ALLOCATE (spxr(spdim, 2))
530 ALLOCATE (scoeff(spdim, 4))
533 CALL para_env%bcast(spxr)
534 CALL para_env%bcast(scoeff)
535 CALL para_env%bcast(surr)
536 CALL para_env%bcast(srep)
537 CALL para_env%bcast(s_cut)
542 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_a, lmax=lmax_a)
543 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_b, lmax=lmax_b)
545 DO l1 = 0, max(lmax_a, lmax_b)
546 DO l2 = 0, min(l1, lmax_a, lmax_b)
552 CALL qs_dftb_pairpot_create(dftb_potential(ikind, jkind), &
556 dftb_potential(ikind, jkind)%n_urpoly = n_urpoly
557 dftb_potential(ikind, jkind)%urep_cut = uwork(10)
558 dftb_potential(ikind, jkind)%urep(:) = 0._dp
559 dftb_potential(ikind, jkind)%urep(1) = uwork(10)
560 dftb_potential(ikind, jkind)%urep(2:n_urpoly) = uwork(2:n_urpoly)
563 dftb_potential(ikind, jkind)%dgrd = dgrd
564 CALL skreorder(fmat, lmax_a, lmax_b)
565 dftb_potential(ikind, jkind)%fmat(:, 1:llm) = fmat(:, 1:llm)
566 CALL skreorder(smat, lmax_a, lmax_b)
567 dftb_potential(ikind, jkind)%smat(:, 1:llm) = smat(:, 1:llm)
568 dftb_potential(ikind, jkind)%ngrdcut = ngrd + int(slako_d0/dgrd)
571 dftb_potential(ikind, jkind)%s_cut = s_cut
572 dftb_potential(ikind, jkind)%srep = srep
573 dftb_potential(ikind, jkind)%spxr = spxr
574 dftb_potential(ikind, jkind)%scoeff = scoeff
575 dftb_potential(ikind, jkind)%surr = surr
588 DEALLOCATE (sk_files)
591 IF (dftb_control%dispersion)
THEN
593 IF (dftb_control%dispersion_type == dispersion_uff)
THEN
594 file_name = trim(dftb_control%sk_file_path)//
"/"// &
595 trim(dftb_control%uff_force_field)
597 TYPE(cp_parser_type) :: parser
599 CALL get_atomic_kind(atomic_kind_set(ikind), name=iname)
600 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
603 CALL parser_create(parser, file_name, para_env=para_env)
607 CALL parser_get_next_line(parser, 1, at_end)
609 CALL parser_get_object(parser, name_a)
611 IF (name_a(1:1) ==
'"') name_a(1:m) = name_a(2:m + 1)
612 IF (name_a(1:m) == trim(iname))
THEN
613 CALL parser_get_object(parser, rb)
614 CALL parser_get_object(parser, rb)
615 CALL parser_get_object(parser, ra)
616 CALL parser_get_object(parser, da)
620 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, name=iname, xi=ra, di=da)
624 CALL parser_release(parser)
633 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
634 radmax = (dftb_potential(ikind, ikind)%ngrdcut + 1)* &
635 dftb_potential(ikind, ikind)%dgrd*0.5_dp
636 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, cutoff=radmax)
639 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
640 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_a, cutoff=ra)
642 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_atom_b)
643 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_b, cutoff=rb)
644 radmax = (dftb_potential(ikind, jkind)%ngrdcut + 1)* &
645 dftb_potential(ikind, jkind)%dgrd
646 IF (ra + rb < radmax)
THEN
647 ra = ra + (radmax - ra - rb)*0.5_dp
648 rb = rb + (radmax - ra - rb)*0.5_dp
649 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, cutoff=ra)
650 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_b, cutoff=rb)
657 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
658 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_a, zeff=zeff)
659 CALL set_potential(potential=qs_kind_set(ikind)%all_potential, &
660 zeff=zeff, zeff_correction=0.0_dp)
664 IF (dftb_control%dftb3_diagonal)
THEN
666 CALL get_qs_kind(qs_kind_set(ikind), dftb3_param=db)
667 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
668 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, dudq=db)
673 IF (dftb_control%dispersion)
THEN
674 IF (dftb_control%dispersion_type == dispersion_uff)
THEN
675 eps_disp = dftb_control%eps_disp
677 CALL get_qs_kind(qs_kind_set(ikind), dftb_parameter=dftb_atom_a)
678 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_a, xi=ra, di=da)
681 CALL get_qs_kind(qs_kind_set(jkind), dftb_parameter=dftb_atom_b)
682 CALL get_dftb_atom_param(dftb_parameter=dftb_atom_b, xi=rb, di=db)
685 dftb_potential(ikind, jkind)%xij = xij
686 dftb_potential(ikind, jkind)%dij = dij
687 dftb_potential(ikind, jkind)%x0ij = xij*(0.5_dp**(1.0_dp/6.0_dp))
688 dftb_potential(ikind, jkind)%a = dij*396.0_dp/25.0_dp
689 dftb_potential(ikind, jkind)%b = &
690 dij/(xij**5)*672.0_dp*2.0_dp**(5.0_dp/6.0_dp)/25.0_dp
691 dftb_potential(ikind, jkind)%c = &
692 -dij/(xij**10)*2.0_dp**(2.0_dp/3.0_dp)*552.0_dp/25.0_dp
693 rmax6 = ((8._dp*pi*dij/eps_disp)*xij**6)**0.25_dp
694 rcdisp = max(rcdisp, rmax6*0.5_dp)
696 CALL set_dftb_atom_param(dftb_parameter=dftb_atom_a, rcdisp=rcdisp)
706 cpabort(
"Something went wrong while reading DFTB parameter file")
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.