110 integer,
public,
parameter :: &
115 integer,
public,
parameter :: &
125 integer,
public :: level = dft_u_none
128 real(real64),
allocatable,
public :: dn(:,:,:,:)
129 real(real64),
allocatable :: dV(:,:,:,:)
132 complex(real64),
allocatable,
public :: zn(:,:,:,:)
133 complex(real64),
allocatable :: zV(:,:,:,:)
134 real(real64),
allocatable,
public :: dn_alt(:,:,:,:)
135 complex(real64),
allocatable,
public :: zn_alt(:,:,:,:)
137 real(real64),
allocatable :: renorm_occ(:,:,:,:,:)
140 real(real64),
allocatable,
public :: coulomb(:,:,:,:,:)
142 complex(real64),
allocatable,
public :: zcoulomb(:,:,:,:,:,:,:)
145 type(orbitalbasis_t),
public :: basis
146 type(orbitalset_t),
pointer,
public :: orbsets(:) => null()
147 integer,
public :: norbsets = 0
149 integer,
public :: nspins = 0
150 integer,
public :: spin_channels = 0
151 integer :: nspecies = 0
152 integer,
public :: maxnorbs = 0
153 integer :: max_np = 0
155 logical :: useAllOrbitals = .false.
156 logical :: skipSOrbitals = .
true.
157 logical :: freeze_occ = .false.
158 logical :: freeze_u = .false.
159 logical,
public :: intersite = .false.
160 real(real64) :: intersite_radius =
m_zero
161 logical,
public :: basisfromstates = .false.
162 real(real64) :: acbn0_screening =
m_one
163 integer,
allocatable :: basisstates(:)
164 integer,
allocatable :: basisstates_os(:)
166 logical :: rot_inv = .false.
167 integer :: double_couting = dft_u_fll
169 real(real64),
allocatable :: dc_alpha(:)
171 type(lattice_vectors_t),
pointer :: latt
173 type(distributed_t) :: orbs_dist
176 integer,
public :: maxneighbors = 0
177 real(real64),
allocatable,
public :: dn_ij(:,:,:,:,:), dn_alt_ij(:,:,:,:,:), dn_alt_ii(:,:,:,:,:)
178 complex(real64),
allocatable,
public :: zn_ij(:,:,:,:,:), zn_alt_ij(:,:,:,:,:), zn_alt_ii(:,:,:,:,:)
181 logical :: symmetrize_occ_matrices
182 integer,
allocatable :: inv_map_symm(:,:)
184 real(real64),
allocatable :: symm_weight(:,:,:,:)
190 subroutine lda_u_init(this, namespace, space, level, gr, ions, st, mc, kpoints)
191 type(lda_u_t),
target,
intent(inout) :: this
192 type(namespace_t),
intent(in) :: namespace
193 class(space_t),
intent(in) :: space
194 integer,
intent(in) :: level
195 type(grid_t),
intent(in) :: gr
196 type(ions_t),
target,
intent(in) :: ions
197 type(states_elec_t),
intent(in) :: st
198 type(multicomm_t),
intent(in) :: mc
199 type(kpoints_t),
intent(in) :: kpoints
206 assert(.not. (level == dft_u_none))
209 if (gr%parallel_in_domains)
call messages_experimental(
"dft+u parallel in domains", namespace=namespace)
212 this%latt => ions%latt
224 call parse_variable(namespace,
'DFTUBasisFromStates', .false., this%basisfromstates)
242 call parse_variable(namespace,
'DFTUDoubleCounting', dft_u_fll, this%double_couting)
244 if (this%double_couting /= dft_u_fll)
call messages_experimental(
"DFTUDoubleCounting /= dft_u_ffl", namespace=namespace)
245 if (st%d%ispin ==
spinors .and. this%double_couting /= dft_u_fll)
then
274 call messages_experimental(
"DFTUPoissonSolver different from dft_u_poisson_direct", namespace=namespace)
278 if (gr%parallel_in_domains)
then
281 if (ions%latt%nonorthogonal)
then
286#if !(defined HAVE_PSOLVER)
287 message(1) =
"The PSolver Poisson solver cannot be used since the code was not compiled with the PSolver library."
290 if (gr%parallel_in_domains)
then
291 call messages_not_implemented(
"DFTUPoissonSolver=dft_u_poisson_psolver with domain parallelization", namespace=namespace)
293 if (ions%latt%nonorthogonal)
then
294 call messages_not_implemented(
"DFTUPoissonSolver=dft_u_poisson_psolver with non-orthogonal cells", namespace=namespace)
308 call parse_variable(namespace,
'UseAllAtomicOrbitals', .false., this%useAllOrbitals)
344 if (this%rot_inv .and. st%d%ispin ==
spinors)
then
357 call parse_variable(namespace,
'ACBN0IntersiteInteraction', .false., this%intersite)
361 if (this%intersite)
then
365 if (kpoints%use_symmetries)
then
377 if (abs(this%intersite_radius) <
m_epsilon)
then
378 call messages_write(
"ACBN0IntersiteCutoff must be greater than 0")
388 if (.not. this%basisfromstates)
then
394 this%skipSOrbitals, this%useAllOrbitals)
397 this%skipSOrbitals, this%useAllOrbitals)
399 this%orbsets => this%basis%orbsets
400 this%norbsets = this%basis%norbsets
401 this%maxnorbs = this%basis%maxnorbs
402 this%max_np = this%basis%max_np
403 this%nspins = st%d%nspin
404 this%spin_channels = st%d%spin_channels
405 this%nspecies = ions%nspecies
416 if (.not. gr%parallel_in_domains)
then
417 call distributed_init(this%orbs_dist, this%norbsets, mpi_comm_world,
"orbsets")
434 if (
parse_block(namespace,
'DFTUBasisStates', blk) == 0)
then
437 if (this%maxnorbs <1)
then
438 write(
message(1),
'(a,i3,a,i3)')
'DFTUBasisStates must contains at least one state.'
441 safe_allocate(this%basisstates(1:this%maxnorbs))
442 safe_allocate(this%basisstates_os(1:this%maxnorbs))
443 do is = 1, this%maxnorbs
449 write(
message(1),
'(a,i3,a,i3)')
'DFTUBasisStates must be specified if DFTUBasisFromStates=yes'
460 this%nspins = st%d%nspin
461 this%spin_channels = st%d%spin_channels
464 this%orbsets => this%basis%orbsets
477 message(1) =
"Unable to load DFT+U basis from selected states."
484 this%symmetrize_occ_matrices = st%symmetrize_density .or. kpoints%use_symmetries
485 if (this%basisfromstates) this%symmetrize_occ_matrices = .false.
486 if (this%symmetrize_occ_matrices)
then
490 safe_allocate(this%dc_alpha(this%norbsets))
491 this%dc_alpha =
m_one
501 type(
lda_u_t),
target,
intent(inout) :: this
503 class(
space_t),
intent(in) :: space
504 type(
grid_t),
intent(in) :: gr
508 logical :: complex_coulomb_integrals
514 norbs = this%maxnorbs
516 if (.not. this%basisfromstates)
then
520 complex_coulomb_integrals = .false.
521 do ios = 1, this%norbsets
522 if (this%orbsets(ios)%ndim > 1) complex_coulomb_integrals = .
true.
525 if (.not. complex_coulomb_integrals)
then
526 write(
message(1),
'(a)')
'Computing the Coulomb integrals of the localized basis.'
528 safe_allocate(this%coulomb(1:norbs,1:norbs,1:norbs,1:norbs, 1:this%norbsets))
536 write(
message(1),
'(a)')
'Computing complex Coulomb integrals of the localized basis.'
538 safe_allocate(this%zcoulomb(1:norbs, 1:norbs, 1:norbs, 1:norbs, 1:st%d%dim, 1:st%d%dim, 1:this%norbsets))
544 write(
message(1),
'(a)')
'Computing the Coulomb integrals of the localized basis.'
546 safe_allocate(this%coulomb(1:norbs, 1:norbs, 1:norbs, 1:norbs, 1:this%norbsets))
563 type(
lda_u_t),
intent(inout) :: this
567 this%level = dft_u_none
569 safe_deallocate_a(this%dn)
570 safe_deallocate_a(this%zn)
571 safe_deallocate_a(this%dn_alt)
572 safe_deallocate_a(this%zn_alt)
573 safe_deallocate_a(this%dV)
574 safe_deallocate_a(this%zV)
575 safe_deallocate_a(this%coulomb)
576 safe_deallocate_a(this%zcoulomb)
577 safe_deallocate_a(this%renorm_occ)
578 safe_deallocate_a(this%dn_ij)
579 safe_deallocate_a(this%zn_ij)
580 safe_deallocate_a(this%dn_alt_ij)
581 safe_deallocate_a(this%zn_alt_ij)
582 safe_deallocate_a(this%dn_alt_ii)
583 safe_deallocate_a(this%zn_alt_ii)
584 safe_deallocate_a(this%basisstates)
585 safe_deallocate_a(this%basisstates_os)
586 safe_deallocate_a(this%dc_alpha)
587 safe_deallocate_a(this%inv_map_symm)
588 safe_deallocate_a(this%symm_weight)
590 nullify(this%orbsets)
595 if (.not. this%basisfromstates)
then
608 type(
lda_u_t),
target,
intent(inout) :: this
609 type(
ions_t),
target,
intent(in) :: ions
611 integer :: ios, ispec
615 if (this%level == dft_u_none)
then
620 this%latt => ions%latt
622 if (
allocated(this%basis%orbsets))
then
623 this%orbsets => this%basis%orbsets
625 nullify(this%orbsets)
630 do ios = 1, this%norbsets
631 if (.not.
associated(this%orbsets(ios)%spec)) cycle
633 ispec = this%orbsets(ios)%spec_index
634 if (ispec < 1 .or. ispec > ions%nspecies)
then
637 if (.not.
associated(ions%species(ispec)%s))
then
640 this%orbsets(ios)%spec => ions%species(ispec)%s
653 type(
lda_u_t),
intent(inout) :: this
665 if (this%level == dft_u_none .or. .not.
associated(this%orbsets))
then
670 do ios = 1, this%norbsets
675 if (
allocated(this%orbsets(ios)%buff_eorb))
then
676 do ik = lbound(this%orbsets(ios)%buff_eorb, dim=1), ubound(this%orbsets(ios)%buff_eorb, dim=1)
679 safe_deallocate_a(this%orbsets(ios)%buff_eorb)
682 if (
allocated(this%orbsets(ios)%dorb))
then
684 else if (
allocated(this%orbsets(ios)%zorb))
then
695 subroutine lda_u_update_basis(this, space, gr, ions, st, psolver, namespace, kpoints, has_phase)
696 type(
lda_u_t),
target,
intent(inout) :: this
697 class(
space_t),
intent(in) :: space
698 type(
grid_t),
intent(in) :: gr
699 type(
ions_t),
target,
intent(in) :: ions
704 logical,
intent(in) :: has_phase
706 integer :: ios, maxorbs, nspin
708 if(this%level == dft_u_none)
return
712 if(.not. this%basisfromstates)
then
715 nullify(this%orbsets)
720 this%skipSOrbitals, this%useAllOrbitals, verbose = .false.)
723 this%skipSOrbitals, this%useAllOrbitals, verbose = .false.)
725 this%orbsets => this%basis%orbsets
726 this%max_np = this%basis%max_np
730 if (this%intersite)
then
731 this%maxneighbors = 0
732 do ios = 1, this%norbsets
734 this%orbsets, this%norbsets, this%maxnorbs, this%intersite_radius, st%d%kpt, has_phase, &
735 this%sm_poisson, this%basisfromstates, this%basis%combine_j_orbitals)
736 this%maxneighbors = max(this%maxneighbors, this%orbsets(ios)%nneighbors)
739 maxorbs = this%maxnorbs
743 safe_deallocate_a(this%dn_ij)
744 safe_allocate(this%dn_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors))
745 this%dn_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors) =
m_zero
746 safe_deallocate_a(this%dn_alt_ij)
747 safe_allocate(this%dn_alt_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors))
748 this%dn_alt_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors) =
m_zero
749 safe_deallocate_a(this%dn_alt_ii)
750 safe_allocate(this%dn_alt_ii(1:2,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors))
751 this%dn_alt_ii(1:2,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors) =
m_zero
753 safe_deallocate_a(this%zn_ij)
754 safe_allocate(this%zn_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors))
755 this%zn_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors) =
m_z0
756 safe_deallocate_a(this%zn_alt_ij)
757 safe_allocate(this%zn_alt_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors))
758 this%zn_alt_ij(1:maxorbs,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors) =
m_z0
759 safe_deallocate_a(this%zn_alt_ii)
760 safe_allocate(this%zn_alt_ii(1:2,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors))
761 this%zn_alt_ii(1:2,1:maxorbs,1:nspin,1:this%norbsets,1:this%maxneighbors) =
m_z0
770 if(.not. this%basisfromstates)
then
772 if(this%basis%orthogonalization)
then
775 if(
debug%info .and. space%is_periodic())
then
783 if (
allocated(this%coulomb))
then
784 safe_deallocate_a(this%coulomb)
786 if (
allocated(this%zcoulomb))
then
787 safe_deallocate_a(this%zcoulomb)
797 type(
lda_u_t),
intent(inout) :: this
799 class(
mesh_t),
intent(in) :: mesh
801 type(
phase_t),
intent(in) :: phase
802 type(
energy_t),
intent(inout) :: energy
804 if (this%level == dft_u_none .or. this%freeze_occ)
return
810 if (phase%is_allocated())
then
823 type(
lda_u_t),
intent(inout) :: this
824 class(
space_t),
intent(in) :: space
829 real(real64),
optional,
allocatable,
intent(in) :: vec_pot(:)
830 real(real64),
optional,
allocatable,
intent(in) :: vec_pot_var(:, :)
839 write(
message(1),
'(a)')
'Debug: Building the phase correction for DFT+U orbitals.'
842 do ios = 1, this%norbsets
849 if (.not. this%basisfromstates)
then
850 if (this%basis%orthogonalization)
then
853 if (
debug%info .and. space%is_periodic())
call zloewdin_info(this%basis, std%kpt, namespace)
863 type(
lda_u_t),
intent(in) :: this
865 real(real64),
intent(out) :: kanamori(:,:)
867 if (this%nspins == 1)
then
886 type(
lda_u_t),
intent(inout) :: this
888 this%freeze_occ = .
true.
893 type(
lda_u_t),
intent(inout) :: this
895 this%freeze_u = .
true.
900 type(
lda_u_t),
intent(inout) :: this
901 real(real64),
intent(in) :: ueff(:)
907 do ios = 1,this%norbsets
908 this%orbsets(ios)%Ueff = ueff(ios)
916 type(
lda_u_t),
intent(in) :: this
917 real(real64),
intent(inout) :: ueff(:)
923 do ios = 1,this%norbsets
924 ueff(ios) = this%orbsets(ios)%Ueff
932 type(
lda_u_t),
intent(inout) :: this
933 real(real64),
intent(in) :: veff(:)
935 integer :: ios, ncount
940 do ios = 1, this%norbsets
941 this%orbsets(ios)%V_ij(1:this%orbsets(ios)%nneighbors,0) = veff(ncount+1:ncount+this%orbsets(ios)%nneighbors)
942 ncount = ncount + this%orbsets(ios)%nneighbors
950 type(
lda_u_t),
intent(in) :: this
951 real(real64),
intent(inout) :: veff(:)
953 integer :: ios, ncount
958 do ios = 1, this%norbsets
959 veff(ncount+1:ncount+this%orbsets(ios)%nneighbors) = this%orbsets(ios)%V_ij(1:this%orbsets(ios)%nneighbors,0)
960 ncount = ncount + this%orbsets(ios)%nneighbors
968 type(
lda_u_t),
intent(in) :: this
969 integer,
optional,
intent(in) :: iunit
970 type(
namespace_t),
optional,
intent(in) :: namespace
977 write(
message(1),
'(a)')
"Method:"
978 write(
message(2),
'(a)')
" [1] Dudarev et al., Phys. Rev. B 57, 1505 (1998)"
981 if (.not. this%intersite)
then
982 write(
message(1),
'(a)')
"Method:"
983 write(
message(2),
'(a)')
" [1] Agapito et al., Phys. Rev. X 5, 011006 (2015)"
985 write(
message(1),
'(a)')
"Method:"
986 write(
message(2),
'(a)')
" [1] Tancogne-Dejean, and Rubio, Phys. Rev. B 102, 155117 (2020)"
990 write(
message(1),
'(a)')
"Implementation:"
991 write(
message(2),
'(a)')
" [1] Tancogne-Dejean, Oliveira, and Rubio, Phys. Rev. B 69, 245133 (2017)"
1000 subroutine lda_u_loadbasis(this, namespace, space, st, mesh, mc, ierr)
1001 type(
lda_u_t),
intent(inout) :: this
1003 class(
space_t),
intent(in) :: space
1005 class(
mesh_t),
intent(in) :: mesh
1007 integer,
intent(out) :: ierr
1009 integer :: err, wfns_file, is, ist, idim, ik, ios, iorb
1011 character(len=256) :: lines(3)
1012 character(len=256),
allocatable :: restart_file(:, :)
1013 logical,
allocatable :: restart_file_present(:, :)
1014 character(len=12) :: filename
1015 character(len=1) :: char
1016 character(len=50) :: str
1018 integer,
allocatable :: count(:)
1019 real(real64) :: norm, center(space%dim)
1020 real(real64),
allocatable :: dpsi(:,:,:)
1021 complex(real64),
allocatable :: zpsi(:,:,:)
1028 message(1) =
"Debug: Loading DFT+U basis from states."
1037 message(1) =
"Error loading DFT+U basis from states, cannot proceed with the calculation"
1043 if (
restart_gs%file_format_states /= option__restartfileformatstates__obf)
then
1044 message(1) =
"Error: loading DFT+U basis only supported for OBF restart format"
1045 message(2) =
"Please set RestartFileFormatStates = obf and re-run the GS calculation."
1051 call restart_gs%read(wfns_file, lines, 2, err)
1055 read(lines(2),
'(a)') str
1056 if (str(2:8) ==
'Complex')
then
1057 message(1) =
"Cannot read real states from complex wavefunctions."
1059 else if (str(2:5) /=
'Real')
then
1060 message(1) =
"Restart file 'wfns' does not specify real/complex; cannot check compatibility."
1071 message(1) =
"Error loading DFT+U basis from states, cannot proceed with the calculation"
1077 safe_allocate(restart_file(1:st%d%dim, 1:st%nst))
1078 safe_allocate(restart_file_present(1:st%d%dim, 1:st%nst))
1079 restart_file_present = .false.
1085 call restart_gs%read(wfns_file, lines, 1, err)
1087 read(lines(1),
'(a)') char
1088 if (char ==
'%')
then
1092 read(lines(1), *) ik, char, ist, char, idim, char, filename
1096 if (any(this%basisstates==ist) .and. ik == 1)
then
1097 restart_file(idim, ist) = trim(filename)
1098 restart_file_present(idim, ist) = .
true.
1104 safe_allocate(count(1:this%norbsets))
1106 do is = 1, this%maxnorbs
1107 ist = this%basisstates(is)
1108 ios = this%basisstates_os(is)
1109 count(ios) = count(ios)+1
1110 do idim = 1, st%d%dim
1112 if (.not. restart_file_present(idim, ist))
then
1113 write(
message(1),
'(a,i3,a)')
"Cannot read states ", ist,
"from the projection folder"
1118 call restart_gs%read_mesh_function(restart_file(idim, ist), mesh, &
1119 this%orbsets(ios)%dorb(:,idim,count(ios)), err)
1121 call restart_gs%read_mesh_function(restart_file(idim, ist), mesh, &
1122 this%orbsets(ios)%zorb(:,idim,count(ios)), err)
1125 message(1) =
"Error loading mesh function "//trim(restart_file(idim, ist))
1130 safe_deallocate_a(count)
1131 safe_deallocate_a(restart_file)
1132 safe_deallocate_a(restart_file_present)
1136 if(this%basis%normalize)
then
1137 do ios = 1, this%norbsets
1138 do iorb = 1, this%orbsets(ios)%norbs
1140 norm =
dmf_nrm2(mesh, st%d%dim, this%orbsets(ios)%dorb(:,:,iorb))
1141 call lalg_scal(mesh%np, st%d%dim,
m_one/norm, this%orbsets(ios)%dorb(:,:,iorb))
1143 norm =
zmf_nrm2(mesh, st%d%dim, this%orbsets(ios)%zorb(:,:,iorb))
1144 call lalg_scal(mesh%np, st%d%dim,
m_one/norm, this%orbsets(ios)%zorb(:,:,iorb))
1152 do ios = 1, this%norbsets
1153 do iorb = 1, this%orbsets(ios)%norbs
1161 do ios = 1, this%norbsets
1169 message(1) =
"Debug: Converting the Wannier states to submeshes."
1174 do ios = 1, this%norbsets
1175 os => this%orbsets(ios)
1176 center = os%sphere%center
1177 safe_deallocate_a(os%sphere%center)
1179 safe_allocate(dpsi(1:mesh%np, 1:os%ndim, 1:os%norbs))
1180 dpsi(1:mesh%np, 1:os%ndim, 1:os%norbs) = os%dorb(1:mesh%np, 1:os%ndim, 1:os%norbs)
1182 safe_deallocate_a(os%dorb)
1184 call submesh_init(os%sphere, space, mesh, this%latt, center, os%radius)
1185 safe_allocate(os%dorb(1:os%sphere%np, 1:os%ndim, 1:os%norbs))
1186 do iorb = 1, os%norbs
1187 do idim = 1, os%ndim
1191 safe_deallocate_a(dpsi)
1193 safe_allocate(zpsi(1:mesh%np, 1:os%ndim, 1:os%norbs))
1194 zpsi(1:mesh%np, 1:os%ndim, 1:os%norbs) = os%zorb(1:mesh%np, 1:os%ndim, 1:os%norbs)
1195 safe_deallocate_a(os%zorb)
1197 call submesh_init(os%sphere, space, mesh, this%latt, center, os%radius)
1198 safe_allocate(os%zorb(1:os%sphere%np, 1:os%ndim, 1:os%norbs))
1199 do iorb = 1, os%norbs
1200 do idim = 1, os%ndim
1204 safe_deallocate_a(zpsi)
1206 safe_allocate(os%phase(1:os%sphere%np, st%d%kpt%start:st%d%kpt%end))
1207 safe_allocate(os%eorb_submesh(1:os%sphere%np, 1:os%ndim, 1:os%norbs, st%d%kpt%start:st%d%kpt%end))
1209 os%use_submesh = .
true.
1210 this%max_np = max(this%max_np, os%sphere%np)
1213 this%basis%use_submesh = .
true.
1217 do ios = 1, this%norbsets
1218 os => this%orbsets(ios)
1226 safe_allocate(os%buff_eorb(st%d%kpt%start:st%d%kpt%end))
1228 do ik= st%d%kpt%start, st%d%kpt%end
1236 do iorb = 1, os%norbs
1239 offset = (iorb - 1)*os%ldorbs)
1242 offset = (iorb - 1)*os%ldorbs)
1249 message(1) =
"Debug: Loading DFT+U basis from states done."
1257 type(
lda_u_t),
intent(inout) :: this
1258 type(
ions_t),
intent(in) :: ions
1259 type(
grid_t),
intent(in) :: gr
1261 integer :: nsym, iop, ios, iatom, iatom_sym, ios_sym
1265 nsym = ions%symm%nops
1266 safe_allocate(this%inv_map_symm(1:this%norbsets, 1:nsym))
1267 this%inv_map_symm = -1
1271 do ios = 1, this%norbsets
1272 iatom = this%orbsets(ios)%iatom
1274 iatom_sym = ions%inv_map_symm_atoms(iatom, iop)
1276 do ios_sym = 1, this%norbsets
1277 if (this%orbsets(ios_sym)%iatom == iatom_sym .and. this%orbsets(ios_sym)%norbs == this%orbsets(ios)%norbs &
1278 .and. this%orbsets(ios_sym)%nn == this%orbsets(ios)%nn .and. this%orbsets(ios_sym)%ll == this%orbsets(ios)%ll &
1279 .and.
is_close(this%orbsets(ios_sym)%jj, this%orbsets(ios)%jj))
then
1280 this%inv_map_symm(ios, iop) = ios_sym
1284 assert(this%inv_map_symm(ios, iop) > 0)
1288 safe_allocate(this%symm_weight(1:this%maxnorbs, 1:this%maxnorbs, 1:this%nsym, 1:this%norbsets))
1289 this%symm_weight =
m_zero
1291 do ios = 1, this%norbsets
1293 if (this%orbsets(ios)%norbs == 1)
then
1294 this%symm_weight(1,1, 1:this%nsym, ios) =
m_one
1299 if (this%orbsets(ios)%ndim > 1) cycle
1301 call orbitals_get_symm_weight(this%orbsets(ios), ions%space, ions%latt, gr, ions%symm, this%symm_weight(:,:,:,ios))
1310 type(
space_t),
intent(in) :: space
1312 type(
grid_t),
intent(in) :: gr
1314 real(real64),
intent(inout) :: weight(:,:,:)
1316 integer :: im, imp, iop, mm
1317 real(real64),
allocatable :: orb(:,:), orb_sym(:), ylm(:)
1319 real(real64) :: rc, norm, origin(space%dim)
1323 assert(os%ndim == 1)
1325 safe_allocate(orb_sym(1:gr%np))
1326 safe_allocate(orb(1:gr%np, 1:os%norbs))
1328 assert(2*os%ll+1 == os%norbs)
1336 safe_allocate(ylm(1:sphere%np))
1341 call loct_ylm(sphere%np, sphere%rel_x(1,1), sphere%r(1), os%ll, mm, ylm(1))
1347 safe_deallocate_a(ylm)
1351 do iop = 1, symm%nops
1354 do imp = 1, os%norbs
1355 weight(im, imp, iop) =
dmf_dotp(gr, orb(:,imp), orb_sym, reduce=.false.)
1360 call gr%allreduce(weight)
1362 safe_deallocate_a(orb)
1363 safe_deallocate_a(orb_sym)
1368#include "dft_u_noncollinear_inc.F90"
1372#include "lda_u_inc.F90"
1375#include "complex.F90"
1376#include "lda_u_inc.F90"
scales a vector by a constant
Prints out to iunit a message in the form: ["InputVariable" = value] where "InputVariable" is given b...
subroutine, public accel_detach_buffer(this)
Clear a buffer handle without freeing device memory.
pure logical function, public accel_is_enabled()
integer, parameter, public accel_mem_read_only
This module implements batches of mesh functions.
This module implements common operations on batches of mesh functions.
Module implementing boundary conditions in Octopus.
type(debug_t), save, public debug
This module calculates the derivatives (gradients, Laplacians, etc.) of a function.
subroutine, public distributed_end(this)
subroutine, public distributed_nullify(this, total)
subroutine, public distributed_init(this, total, comm, tag, scalapack_compat)
Distribute N instances across M processes of communicator comm
integer, parameter, public spinors
integer, parameter, public spin_polarized
real(real64), parameter, public m_zero
real(real64), parameter, public m_four
real(real64), parameter, public m_third
real(real64), parameter, public m_pi
some mathematical constants
complex(real64), parameter, public m_z0
real(real64), parameter, public m_epsilon
real(real64), parameter, public m_one
real(real64), parameter, public m_three
This module implements the underlying real-space grid.
subroutine, public dgrid_symmetrize_single(gr, iop, field, symm_field, suppress_warning)
integer, parameter, public dft_u_amf
subroutine, public zlda_u_commute_r(this, mesh, space, d, namespace, psib, gpsib)
This routine computes [r,V_lda+u] .
subroutine zlda_u_allocate(this, st)
subroutine, public lda_u_get_effectiveu(this, Ueff)
subroutine compute_complex_coulomb_integrals(this, gr, st, psolver, namespace, space)
subroutine, public dlda_u_force(this, namespace, space, mesh, st, iq, psib, grad_psib, force)
subroutine, public dlda_u_apply(this, d, mesh, psib, hpsib)
Apply the +U nonlocal potential to psib and adds the result to hpsib.
subroutine, public lda_u_set_effectiveu(this, Ueff)
subroutine build_symmetrization_map(this, ions, gr)
Builds a mapping between the orbital sets based on symmetries.
subroutine dcompute_acbno_u_kanamori_restricted(this, kanamori)
This routine computes the Kanamori U, Up, and J.
subroutine, public lda_u_init(this, namespace, space, level, gr, ions, st, mc, kpoints)
subroutine, public dlda_u_get_occupations(this, occ)
subroutine, public dlda_u_rvu(this, mesh, space, d, namespace, psib, gpsib)
This routine computes .
subroutine, public lda_u_update_basis(this, space, gr, ions, st, psolver, namespace, kpoints, has_phase)
subroutine orbitals_get_symm_weight(os, space, latt, gr, symm, weight)
Computes the weight of each rotated orbitals in the basis of the same localized subspace.
subroutine dupdate_occ_matrices(this, namespace, mesh, st, lda_u_energy, phase)
This routine computes the values of the occupation matrices.
subroutine, public lda_u_accel_rebuild(this, kpt)
Rebuild DFT+U accelerator buffers after intrinsic assignment.
subroutine, public zlda_u_apply(this, d, mesh, psib, hpsib)
Apply the +U nonlocal potential to psib and adds the result to hpsib.
subroutine, public zcompute_dftu_energy(this, energy, st)
This routine computes the value of the double counting term in the DFT+U energy.
integer, parameter, public dft_u_empirical
subroutine zcompute_acbno_u_kanamori_restricted(this, kanamori)
This routine computes the Kanamori U, Up, and J.
subroutine dcompute_acbno_u_kanamori(this, kanamori)
This routine computes the Kanamori U, Up, and J.
subroutine, public zlda_u_commute_r_single(this, mesh, space, d, namespace, ist, ik, psi, gpsi, has_phase)
subroutine, public lda_u_freeze_occ(this)
integer, parameter, public dft_u_mix
subroutine, public lda_u_rebind_after_copy(this, ions)
Rebind non-owning pointers after intrinsic assignment of lda_u_t.
subroutine, public lda_u_freeze_u(this)
subroutine, public zlda_u_rvu(this, mesh, space, d, namespace, psib, gpsib)
This routine computes .
subroutine dlda_u_allocate(this, st)
subroutine, public compute_acbno_u_kanamori(this, st, kanamori)
subroutine, public zlda_u_update_potential(this, st)
This routine computes the potential that, once multiplied by the projector Pmm' and summed over m and...
subroutine lda_u_init_coulomb_integrals(this, namespace, space, gr, st, psolver)
subroutine, public lda_u_write_info(this, iunit, namespace)
subroutine, public dlda_u_commute_r(this, mesh, space, d, namespace, psib, gpsib)
This routine computes [r,V_lda+u] .
subroutine, public zlda_u_force(this, namespace, space, mesh, st, iq, psib, grad_psib, force)
subroutine dcompute_coulomb_integrals(this, namespace, space, gr, psolver)
subroutine, public dlda_u_set_occupations(this, occ)
subroutine, public lda_u_get_effectivev(this, Veff)
subroutine lda_u_loadbasis(this, namespace, space, st, mesh, mc, ierr)
subroutine, public dlda_u_commute_r_single(this, mesh, space, d, namespace, ist, ik, psi, gpsi, has_phase)
subroutine, public lda_u_build_phase_correction(this, space, std, boundaries, namespace, kpoints, vec_pot, vec_pot_var)
Build the phase correction to the global phase for all orbitals.
subroutine, public lda_u_end(this)
subroutine, public lda_u_set_effectivev(this, Veff)
subroutine, public lda_u_update_occ_matrices(this, namespace, mesh, st, phase, energy)
integer, parameter, public dft_u_acbn0
subroutine zcompute_acbno_u_kanamori(this, kanamori)
This routine computes the Kanamori U, Up, and J.
subroutine zcompute_coulomb_integrals(this, namespace, space, gr, psolver)
subroutine, public zlda_u_get_occupations(this, occ)
subroutine zupdate_occ_matrices(this, namespace, mesh, st, lda_u_energy, phase)
This routine computes the values of the occupation matrices.
subroutine, public dcompute_dftu_energy(this, energy, st)
This routine computes the value of the double counting term in the DFT+U energy.
subroutine, public dlda_u_update_potential(this, st)
This routine computes the potential that, once multiplied by the projector Pmm' and summed over m and...
subroutine, public zlda_u_set_occupations(this, occ)
System information (time, memory, sysname)
subroutine, public dloewdin_orthogonalize(basis, kpt, namespace)
subroutine, public zloewdin_info(basis, kpt, namespace)
subroutine, public zloewdin_orthogonalize(basis, kpt, namespace)
subroutine, public dloewdin_info(basis, kpt, namespace)
This module is intended to contain "only mathematical" functions and procedures.
This module defines various routines, operating on mesh functions.
subroutine, public zmf_fix_phase(mesh, ff)
Fix the phase of complex function.
This module defines the meshes, which are used in Octopus.
subroutine, public messages_print_with_emphasis(msg, iunit, namespace)
subroutine, public messages_not_implemented(feature, namespace)
character(len=512), private msg
subroutine, public messages_warning(no_lines, all_nodes, namespace)
character(len=256), dimension(max_lines), public message
to be output by fatal, warning
subroutine, public messages_fatal(no_lines, only_root_writes, namespace)
subroutine, public messages_experimental(name, namespace)
subroutine, public messages_info(no_lines, iunit, debug_only, stress, all_nodes, namespace)
This module handles the communicators for the various parallelization strategies.
subroutine, public orbitalbasis_end(this)
subroutine, public zorbitalbasis_build(this, namespace, ions, mesh, kpt, ndim, skip_s_orb, use_all_orb, verbose)
This routine is an interface for constructing the orbital basis.
subroutine, public dorbitalbasis_build(this, namespace, ions, mesh, kpt, ndim, skip_s_orb, use_all_orb, verbose)
This routine is an interface for constructing the orbital basis.
subroutine, public dorbitalbasis_build_empty(this, mesh, ndim, norbsets, map_os, verbose)
This routine constructd an empty orbital basis.
subroutine, public zorbitalbasis_build_empty(this, mesh, ndim, norbsets, map_os, verbose)
This routine constructd an empty orbital basis.
subroutine, public orbitalbasis_init(this, namespace, periodic_dim)
subroutine, public orbitalset_update_phase_shift(os, dim, kpt, kpoints, spin_polarized, vec_pot, vec_pot_var, kpt_max)
Build the phase shift for the intersite interaction.
subroutine, public dorbitalset_transfer_to_device(os, kpt, use_mesh)
Allocate and transfer the orbitals to the device.
subroutine, public orbitalset_update_phase(os, dim, kpt, kpoints, spin_polarized, vec_pot, vec_pot_var, kpt_max)
Build the phase correction to the global phase in case the orbital crosses the border of the simulato...
subroutine, public zorbitalset_transfer_to_device(os, kpt, use_mesh)
Allocate and transfer the orbitals to the device.
integer, parameter, public sm_poisson_psolver
integer, parameter, public sm_poisson_isf
subroutine, public zorbitalset_get_center_of_mass(os, space, mesh, latt)
subroutine, public orbitalset_init_intersite(this, namespace, space, ind, ions, der, psolver, os, nos, maxnorbs, rcut, kpt, has_phase, sm_poisson, basis_from_states, combine_j_orbitals)
integer, parameter, public sm_poisson_direct
subroutine, public dorbitalset_get_center_of_mass(os, space, mesh, latt)
integer, parameter, public sm_poisson_fft
integer function, public parse_block(namespace, name, blk, check_varinfo_)
integer, parameter, public restart_gs
integer, parameter, public restart_proj
integer, parameter, public restart_type_load
pure logical function, public states_are_complex(st)
pure logical function, public states_are_real(st)
This module handles spin dimensions of the states and the k-point distribution.
subroutine, public zsubmesh_copy_from_mesh(this, phi, sphi, conjugate)
subroutine, public dsubmesh_copy_from_mesh(this, phi, sphi, conjugate)
subroutine, public submesh_init(this, space, mesh, latt, center, rc)
type(type_t), public type_float
type(type_t), public type_cmplx
type(type_t), public type_integer
This module defines the unit system, used for input and output.
type(unit_system_t), public units_inp
the units systems for reading and writing
This class contains information about the boundary conditions.
Distribution of N instances over mpi_grpsize processes, for the local rank mpi_grprank....
Description of the grid, containing information on derivatives, stencil, and symmetries.
Class to describe DFT+U parameters.
Describes mesh distribution to nodes.
Stores all communicators and groups.
A container for the phase.
class for organizing spins and k-points
The states_elec_t class contains all electronic wave functions.
A submesh is a type of mesh, used for the projectors in the pseudopotentials It contains points on a ...