quantum-espresso/PW/atomic_wfc_nc.f90

212 lines
7.1 KiB
Fortran

!
! Copyright (C) 2001 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
#include "f_defs.h"
!
!-----------------------------------------------------------------------
subroutine atomic_wfc_nc (ik, wfcatom)
!-----------------------------------------------------------------------
!
! This routine computes the superposition of atomic wavefunctions for a
! given k-point.
!
USE kinds, ONLY : DP
USE parameters, ONLY : nchix
USE atom, ONLY : nchi, lchi, jchi, chi, oc, r, rab, msh
USE constants, ONLY : tpi, fpi, pi
USE cell_base, ONLY : omega, tpiba
USE ions_base, ONLY : nat, ntyp => nsp, ityp, tau
USE basis, ONLY : natomwfc
USE gvect, ONLY : ig1, ig2, ig3, eigts1, eigts2, eigts3, g
USE klist, ONLY : xk
USE wvfct, ONLY : npwx, npw, nbndx, nbnd, igk
USE us, ONLY : tab_at, dq
USE noncollin_module, ONLY : noncolin, npol, angle1, angle2
USE spin_orb, ONLY : lspinorb, so, rot_ylm, fcoef, lmaxx
!
implicit none
!
integer :: ik
! input: k-point
complex(DP) :: wfcatom (npwx, npol, natomwfc) ! output: atomic wavefunctions
!
integer :: n_starting_wfc, lmax_wfc, nt, l, nb, na, m, lm, ig, iig, &
i0, i1, i2, i3
!
real(DP), allocatable :: qg(:), ylm (:,:), chiq (:,:,:), aux (:), &
gk (:,:), vchi (:)
complex(DP), allocatable :: sk (:), aux_so(:)
complex(DP) :: kphase, lphase, scalar, fup, fdown
real(DP) :: vqint, arg, px, ux, vx, wx, alpha, gamman, &
fact(2), j, spinor
integer :: ind, ind1, n1, is, sph_ind
call start_clock ('atomic_wfc')
if (.NOT.noncolin) call errore('atomic_wfc_nc','called in the wrong case',1)
allocate ( qg(npw), chiq(npw,nchix,ntyp), gk(3,npw), sk(npw))
if (lspinorb) allocate(aux_so(npw))
! calculate max angular momentum required in wavefunctions
lmax_wfc = 0
do nt = 1, ntyp
do nb = 1, nchi (nt)
lmax_wfc = max (lmax_wfc, lchi (nb, nt) )
enddo
enddo
!
allocate(ylm (npw,(lmax_wfc+1)**2) )
!
do ig = 1, npw
gk (1,ig) = xk(1, ik) + g(1, igk(ig) )
gk (2,ig) = xk(2, ik) + g(2, igk(ig) )
gk (3,ig) = xk(3, ik) + g(3, igk(ig) )
qg(ig) = gk(1, ig)**2 + gk(2, ig)**2 + gk(3, ig)**2
enddo
!
! ylm = spherical harmonics
!
call ylmr2 ((lmax_wfc+1)**2, npw, gk, qg, ylm)
!
! set now q=|k+G| in atomic units
!
do ig = 1, npw
qg(ig) = sqrt(qg(ig))*tpiba
enddo
!
n_starting_wfc = 0
!
! chiq = radial fourier transform of atomic orbitals chi
!
do nt = 1, ntyp
do nb = 1, nchi (nt)
if ( oc (nb, nt) >= 0.d0) then
do ig = 1, npw
px = qg (ig) / dq - int (qg (ig) / dq)
ux = 1.d0 - px
vx = 2.d0 - px
wx = 3.d0 - px
i0 = qg (ig) / dq + 1
i1 = i0 + 1
i2 = i0 + 2
i3 = i0 + 3
chiq (ig, nb, nt) = &
tab_at (i0, nb, nt) * ux * vx * wx / 6.d0 + &
tab_at (i1, nb, nt) * px * vx * wx / 2.d0 - &
tab_at (i2, nb, nt) * px * ux * wx / 2.d0 + &
tab_at (i3, nb, nt) * px * ux * vx / 6.d0
enddo
endif
enddo
enddo
do na = 1, nat
alpha = angle1(nt)
gamman = - angle2(nt) + 0.5d0*pi
arg = (xk(1,ik)*tau(1,na) + xk(2,ik)*tau(2,na) + xk(3,ik)*tau(3,na)) * tpi
kphase = CMPLX (cos (arg), - sin (arg) )
!
! sk is the structure factor
!
do ig = 1, npw
iig = igk (ig)
sk (ig) = kphase * eigts1 (ig1 (iig), na) * eigts2 (ig2 (iig), na) * &
eigts3 (ig3 (iig), na)
enddo
!
nt = ityp (na)
do nb = 1, nchi (nt)
if (oc (nb, nt) >= 0.d0) then
l = lchi (nb, nt)
lphase = (0.d0,1.d0)**l
! the factor i^l MUST BE PRESENT in order to produce
! wavefunctions for k=0 that are real in real space
if (so(nt)) then
j = jchi (nb, nt)
do m = -l-1, l
fact(1) = spinor(l,j,m,1)
fact(2) = spinor(l,j,m,2)
if (abs(fact(1)).gt.1.d-8.or.abs(fact(2)).gt.1.d-8) then
n_starting_wfc = n_starting_wfc + 1
if (n_starting_wfc.gt.natomwfc) &
call errore ('atomic_wfc_nc', 'too many wfcs', 1)
do is=1,2
if (abs(fact(is)).gt.1.d-8) then
ind=lmaxx+1+sph_ind(l,j,m,is)
aux_so=(0.d0,0.d0)
do n1=1,2*l+1
ind1=l**2+n1
if (abs(rot_ylm(ind,n1)).gt.1.d-8) &
aux_so(:)=aux_so(:)+rot_ylm(ind,n1)*ylm(:,ind1)
enddo
do ig=1,npw
wfcatom (ig,is,n_starting_wfc) = lphase*fact(is)*&
sk(ig)*aux_so(ig)*chiq (ig, nb, nt)
END DO
END IF
END DO
END IF
END DO
ELSE
DO m = 1, 2 * l + 1
lm = l**2 + m
n_starting_wfc = n_starting_wfc + 1
IF (n_starting_wfc.GT.natomwfc) &
call errore ('atomic_wfc_nc', 'too many wfcs', 1)
IF (n_starting_wfc+2*l+1 .GT. nbndx) &
call errore('atomic_wfc_nc','too many wfcs',1)
DO ig=1,npw
scalar = sk(ig)*ylm(ig,lm)*chiq(ig,nb,nt)
!
! now, rotate wfc as needed
! first : rotation with angle alpha around (OX)
!
fup = cos(0.5d0*alpha)*scalar
fdown = (0.d0,1.d0)*sin(0.5d0*alpha)*scalar
!
! Now, build the orthogonal wfc
! first rotation with angle (alpha+pi) around (OX)
!
wfcatom(ig,1,n_starting_wfc) &
=(cos(0.5d0*gamman)+(0.d0,1.d0)*sin(0.5d0 &
*gamman))*fup
wfcatom(ig,2,n_starting_wfc) = (cos(0.5d0*gamman) &
-(0.d0,1.d0)*sin(0.5d0*gamman))*fdown
!
! second: rotation with angle gamma around (OZ)
!
! Now, build the orthogonal wfc
! first rotation with angle (alpha+pi) around (OX)
!
fup = cos(0.5d0*(alpha+pi))*scalar
fdown = (0.d0,1.d0)*sin(0.5d0*(alpha+pi))*scalar
!
! second, rotation with angle gamma around (OZ)
!
wfcatom(ig,1,n_starting_wfc+2*l+1) &
=(cos(0.5d0*gamman)+(0.d0,1.d0)*sin(0.5d0 &
*gamman))*fup
wfcatom(ig,2,n_starting_wfc+2*l+1) = (cos(0.5d0 &
*gamman)-(0.d0,1.d0)*sin(0.5d0*gamman))*fdown
END DO
END DO
n_starting_wfc = n_starting_wfc + 2*l+1
END IF
END IF
END DO
END DO
if (n_starting_wfc.ne.natomwfc) call errore ('atomic_wfc_nc', &
'something wrong', 1)
deallocate(qg, chiq ,gk, sk ,ylm)
if (lspinorb) deallocate(aux_so)
call stop_clock ('atomic_wfc')
return
end subroutine atomic_wfc_nc