The Elk Code
 
Loading...
Searching...
No Matches
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
6subroutine writeengyu(fnum)
7use modmain
8implicit none
9! arguments
10integer, intent(in) :: fnum
11write(fnum,*)
12write(fnum,'("Energies per unit cell:")')
13write(fnum,'(" Fermi",T30,": ",G24.14)') efermi
14write(fnum,'(" sum of eigenvalues",T30,": ",G24.14)') evalsum
15end subroutine
16
real(8) efermi
Definition modmain.f90:904
real(8) evalsum
Definition modmain.f90:948
subroutine writeengyu(fnum)
Definition writeengyu.f90:7