The Elk Code
sdelta_lr.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross
3 ! This file is distributed under the terms of the GNU Lesser General Public
4 ! License. See the file COPYING for license details.
5 
6 elemental real(8) function sdelta_lr(x)
7 implicit none
8 ! arguments
9 real(8), intent(in) :: x
10 ! local variables
11 real(8), parameter :: twopi=6.2831853071795864769d0
12 sdelta_lr=1.d0/(twopi*(x**2+0.25d0))
13 end function
14 
real(8), parameter twopi
Definition: modmain.f90:1233
elemental real(8) function sdelta_lr(x)
Definition: sdelta_lr.f90:7