The Elk Code
 
Loading...
Searching...
No Matches
writefermi.f90
Go to the documentation of this file.
1
2! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl.
3! This file is distributed under the terms of the GNU General Public License.
4! See the file COPYING for license details.
5
6!BOP
7! !ROUTINE: writefermi
8! !INTERFACE:
9subroutine writefermi
10! !USES:
11use modmain
12! !DESCRIPTION:
13! Writes the Fermi energy to the file {\tt EFERMI.OUT}.
14!
15! !REVISION HISTORY:
16! Created March 2005 (JKD)
17!EOP
18!BOC
19implicit none
20open(50,file='EFERMI'//trim(filext),form='FORMATTED',action='WRITE')
21write(50,'(G18.10)') efermi
22close(50)
23end subroutine
24!EOC
25
real(8) efermi
Definition modmain.f90:904
character(256) filext
Definition modmain.f90:1300
subroutine writefermi