1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
! Copyright (C) 2013 S. Sharma, J. K. Dewhurst and E. K. U. Gross.
! This file is distributed under the terms of the GNU General Public License.
! See the file COPYING for license details.
subroutine genspfxcg(fxc)
use modmain
implicit none
! arguments
complex(8), intent(out) :: fxc(ngrf,4,ngrf,4)
! local variables
integer ig,jg,kg
integer iv(3),i,j
complex(8) z1
! allocatable arrays
real(8), allocatable :: fxcmt(:,:,:,:),fxcir(:,:,:)
complex(8), allocatable :: fxcg(:)
allocate(fxcmt(npmtmax,natmtot,4,4),fxcir(ngtot,4,4))
allocate(fxcg(ngvec))
! generate the kernel f_xc in real-space
call genspfxcr(.true.,fxcmt,fxcir)
! Fourier transform the kernel to G-space
do i=1,4
do j=i,4
call zftrf(ngvec,ivg,vgc,fxcmt(:,:,i,j),fxcir(:,i,j),fxcg)
do ig=1,ngrf
do jg=1,ngrf
iv(1:3)=ivg(1:3,ig)-ivg(1:3,jg)
if ((iv(1) >= intgv(1,1)).and.(iv(1) <= intgv(2,1)).and. &
(iv(2) >= intgv(1,2)).and.(iv(2) <= intgv(2,2)).and. &
(iv(3) >= intgv(1,3)).and.(iv(3) <= intgv(2,3))) then
kg=ivgig(iv(1),iv(2),iv(3))
if (kg > ngvec) cycle
z1=fxcg(kg)
fxc(ig,i,jg,j)=z1
fxc(jg,j,ig,i)=conjg(z1)
end if
end do
end do
end do
end do
deallocate(fxcmt,fxcir,fxcg)
end subroutine
|