quantum-espresso/PH/setup_dgc.f90

124 lines
4.5 KiB
Fortran
Raw Normal View History

!
! 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 .
!
!-----------------------------------------------------------------------
subroutine setup_dgc
!-----------------------------------------------------------------------
! Allocate and setup all variable needed in the gradient correction case
!
! GGA+LSDA is allowed. AdC (September 1999).
! GGA+LSDA+NLCC is allowed. AdC (November 1999).
!
#include "f_defs.h"
use pwcom
USE kinds, only : DP
use phcom
use funct, only : dft_is_gradient, gcxc, gcx_spin, gcc_spin
implicit none
integer :: k, is
real(DP) :: grho2 (2), rh, zeta, grh2, fac, sx, sc, &
v1x, v2x, v1c, v2c, vrrx, vsrx, vssx, vrrc, vsrc, vssc, v1xup, &
v1xdw, v2xup, v2xdw, v1cup, v1cdw, vrrxup, vrrxdw, vrsxup, vrsxdw, &
vssxup, vssxdw, vrrcup, vrrcdw, vrscup, vrscdw, vrzcup, vrzcdw
real (DP), parameter :: epsr = 1.0d-6, epsg = 1.0d-10
if ( .not. dft_is_gradient() ) return
allocate (dvxc_rr( nrxx , nspin , nspin))
allocate (dvxc_sr( nrxx , nspin , nspin))
allocate (dvxc_ss( nrxx , nspin , nspin))
allocate (dvxc_s ( nrxx , nspin , nspin))
allocate (grho ( 3 , nrxx , nspin))
dvxc_rr(:,:,:) = 0.d0
dvxc_sr(:,:,:) = 0.d0
dvxc_ss(:,:,:) = 0.d0
dvxc_s (:,:,:) = 0.d0
grho (:,:,:) = 0.d0
!
! add rho_core
!
General cleanup of intrinsic functions: conversion to real => DBLE (including real part of a complex number) conversion to complex => CMPLX complex conjugate => CONJG imaginary part => AIMAG All functions are uppercase. CMPLX is preprocessed by f_defs.h and performs an explicit cast: #define CMPLX(a,b) cmplx(a,b,kind=DP) This implies that 1) f_defs.h must be included whenever a CMPLX is present, 2) CMPLX should stay in a single line, 3) DP must be defined. All occurrences of real, float, dreal, dfloat, dconjg, dimag, dcmplx removed - please do not reintroduce any of them. Tested only with ifc7 and g95 - beware unintended side effects Maybe not the best solution (explicit casts everywhere would be better) but it can be easily changed with a script if the need arises. The following code might be used to test for possible trouble: program test_intrinsic implicit none integer, parameter :: dp = selected_real_kind(14,200) real (kind=dp) :: a = 0.123456789012345_dp real (kind=dp) :: b = 0.987654321098765_dp complex (kind=dp) :: c = ( 0.123456789012345_dp, 0.987654321098765_dp) print *, ' A = ', a print *, ' DBLE(A)= ', DBLE(a) print *, ' C = ', c print *, 'CONJG(C)= ', CONJG(c) print *, 'DBLE(c),AIMAG(C) = ', DBLE(c), AIMAG(c) print *, 'CMPLX(A,B,kind=dp)= ', CMPLX( a, b, kind=dp) end program test_intrinsic Note that CMPLX and REAL without a cast yield single precision numbers on ifc7 and g95 !!! git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@2133 c92efa57-630b-4861-b058-cf58834340f0
2005-08-27 01:44:42 +08:00
fac = 1.d0 / DBLE (nspin)
if (nlcc_any) then
do is = 1, nspin
rho(:,is) = fac * rho_core(:) + rho(:,is)
rhog(:,is) = fac * rhog_core(:) + rhog(:,is)
enddo
endif
do is = 1, nspin
call gradrho (nrx1, nrx2, nrx3, nr1, nr2, nr3, nrxx, rhog (1, is), &
ngm, g, nl, grho (1, 1, is) )
enddo
do k = 1, nrxx
grho2 (1) = grho (1, k, 1) **2 + grho (2, k, 1) **2 + grho (3, k, 1) **2
if (nspin == 1) then
if (abs (rho (k, 1) ) > epsr .and. grho2 (1) > epsg) then
call gcxc (rho (k, nspin), grho2(1), sx, sc, v1x, v2x, v1c, v2c)
call dgcxc (rho (k, nspin), grho2, vrrx, vsrx, vssx, vrrc, &
vsrc, vssc)
dvxc_rr (k, 1, 1) = e2 * (vrrx + vrrc)
dvxc_sr (k, 1, 1) = e2 * (vsrx + vsrc)
dvxc_ss (k, 1, 1) = e2 * (vssx + vssc)
dvxc_s (k, 1, 1) = e2 * (v2x + v2c)
endif
else
grho2 (2) = grho (1, k, 2) **2 + grho (2, k, 2) **2 + grho (3, &
k, 2) **2
rh = rho (k, 1) + rho (k, 2)
grh2 = (grho (1, k, 1) + grho (1, k, 2) ) **2 + (grho (2, k, 1) &
+ grho (2, k, 2) ) **2 + (grho (3, k, 1) + grho (3, k, 2) ) ** 2
call gcx_spin (rho (k, 1), rho (k, 2), grho2 (1), grho2 (2), &
sx, v1xup, v1xdw, v2xup, v2xdw)
call dgcxc_spin (rho (k, 1), rho (k, 2), grho (1, k, 1), &
grho (1, k, 2), vrrxup, vrrxdw, vrsxup, vrsxdw, vssxup, vssxdw, &
vrrcup, vrrcdw, vrscup, vrscdw, vssc, vrzcup, vrzcdw)
if (rh > epsr) then
zeta = (rho (k, 1) - rho (k, 2) ) / rh
call gcc_spin (rh, zeta, grh2, sc, v1cup, v1cdw, v2c)
dvxc_rr (k, 1, 1) = e2 * (vrrxup + vrrcup + vrzcup * &
(1.d0 - zeta) / rh)
dvxc_rr (k, 1, 2) = e2 * (vrrcup - vrzcup * (1.d0 + zeta) / rh)
dvxc_rr (k, 2, 1) = e2 * (vrrcdw + vrzcdw * (1.d0 - zeta) / rh)
dvxc_rr (k, 2, 2) = e2 * (vrrxdw + vrrcdw - vrzcdw * &
(1.d0 + zeta) / rh)
dvxc_s (k, 1, 1) = e2 * (v2xup + v2c)
dvxc_s (k, 1, 2) = e2 * v2c
dvxc_s (k, 2, 1) = e2 * v2c
dvxc_s (k, 2, 2) = e2 * (v2xdw + v2c)
else
dvxc_rr (k, 1, 1) = 0.d0
dvxc_rr (k, 1, 2) = 0.d0
dvxc_rr (k, 2, 1) = 0.d0
dvxc_rr (k, 2, 2) = 0.d0
dvxc_s (k, 1, 1) = 0.d0
dvxc_s (k, 1, 2) = 0.d0
dvxc_s (k, 2, 1) = 0.d0
dvxc_s (k, 2, 2) = 0.d0
endif
dvxc_sr (k, 1, 1) = e2 * (vrsxup + vrscup)
dvxc_sr (k, 1, 2) = e2 * vrscup
dvxc_sr (k, 2, 1) = e2 * vrscdw
dvxc_sr (k, 2, 2) = e2 * (vrsxdw + vrscdw)
dvxc_ss (k, 1, 1) = e2 * (vssxup + vssc)
dvxc_ss (k, 1, 2) = e2 * vssc
dvxc_ss (k, 2, 1) = e2 * vssc
dvxc_ss (k, 2, 2) = e2 * (vssxdw + vssc)
endif
enddo
if (nlcc_any) then
do is = 1, nspin
rho(:,is) = rho(:,is) - fac * rho_core(:)
rhog(:,is) = rhog(:,is) - fac * rhog_core(:)
enddo
endif
return
end subroutine setup_dgc