quantum-espresso/D3/w_1gauss.f90

67 lines
1.8 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 .
!
!
!-----------------------------------------------------------------------
function w_1gauss (x, n)
!-----------------------------------------------------------------------
!
! the derivative of w0gauss:
!
! --> (n=-99): second derivative of Fermi-Dirac function
!
implicit none
real (8) :: w_1gauss, x
! output: the value of the function
! input: the point where to compute the function
integer :: n
! input: the order of the smearing function
!
! here the local variables
!
real (8) :: a, arg, hp, hd, pi, aux1, aux2
! the coefficients a_n
! the argument of the exponential
! the hermite function
! the hermite function
! pi
! auxiliary variable
! auxiliary variable
integer :: i, ni
! counter on n values
! counter on 2n values
! Fermi-Dirac smearing
if (n.eq. - 99) then
aux1 = exp (x)
aux2 = exp ( - x)
w_1gauss = (aux2 - aux1) / (2.d0 + aux1 + aux2) **2
return
endif
!
pi = 3.14159265358979d0
arg = min (200.d0, x**2)
w_1gauss = - 2.d0 * x * exp ( - arg) / sqrt (pi)
if (n.eq.0) return
hd = exp ( - arg)
hp = 2.d0 * x * exp ( - arg)
ni = 1
a = 1.0 / sqrt (pi)
do i = 1, n
hd = 2.0d0 * x * hp - 2.0d0 * float (ni) * hd
ni = ni + 1
a = - a / (float (i) * 4.0d0)
hp = 2.0d0 * x * hd-2.0d0 * float (ni) * hp
ni = ni + 1
w_1gauss = w_1gauss - a * hp
enddo
return
end function w_1gauss