The Elk Code
writeengyu.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross.
3 ! This file is distributed under the terms of the GNU General Public License.
4 ! See the file COPYING for license details.
5 
6 subroutine writeengyu(fnum)
7 use modmain
8 implicit none
9 ! arguments
10 integer, intent(in) :: fnum
11 write(fnum,*)
12 write(fnum,'("Energies per unit cell:")')
13 write(fnum,'(" Fermi",T30,": ",G24.14)') efermi
14 write(fnum,'(" sum of eigenvalues",T30,": ",G24.14)') evalsum
15 end subroutine
16 
real(8) efermi
Definition: modmain.f90:907
subroutine writeengyu(fnum)
Definition: writeengyu.f90:7
real(8) evalsum
Definition: modmain.f90:951