The Elk Code
readevalsv.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2022 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 readevalsv
7 use modmain
8 implicit none
9 ! local variables
10 integer ik
11 ! get the second-variational eigenvalues from file for all k-points
12 do ik=1,nkpt
13  call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik))
14 end do
15 end subroutine
16 
character(256) filext
Definition: modmain.f90:1299
real(8), dimension(:,:), allocatable evalsv
Definition: modmain.f90:919
integer nkpt
Definition: modmain.f90:461
subroutine getevalsv(fext, ikp, vpl, evalsv_)
Definition: getevalsv.f90:7
real(8), dimension(:,:), allocatable vkl
Definition: modmain.f90:471
subroutine readevalsv
Definition: readevalsv.f90:7