The Elk Code
 
Loading...
Searching...
No Matches
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
6elemental real(8) function sdelta_lr(x)
7implicit none
8! arguments
9real(8), intent(in) :: x
10! local variables
11real(8), parameter :: twopi=6.2831853071795864769d0
12sdelta_lr=1.d0/(twopi*(x**2+0.25d0))
13end function
14
elemental real(8) function sdelta_lr(x)
Definition sdelta_lr.f90:7