The Elk Code
modtdhfc.f90
Go to the documentation of this file.
1 
2 ! Copyright (C) 2022 J. K. Dewhurst, S. Sharma and E. Harris-Lee.
3 ! This file is distributed under the terms of the GNU General Public License.
4 ! See the file COPYING for license details.
5 
6 module modtdhfc
7 
8 ! energy cut-off for TDHFC states around the Fermi energy
9 real(8) ecutthc
10 ! total number of TDHFC states
11 integer nthc
12 ! number of states for each k-point
13 integer, allocatable :: nthck(:)
14 ! index to used states for each k-point
15 integer, allocatable :: idxthc(:,:)
16 ! index from state and k-point to TDHFC states
17 integer, allocatable :: istthc(:,:)
18 
19 end module
20 
real(8) ecutthc
Definition: modtdhfc.f90:9
integer, dimension(:,:), allocatable istthc
Definition: modtdhfc.f90:17
integer, dimension(:), allocatable nthck
Definition: modtdhfc.f90:13
integer nthc
Definition: modtdhfc.f90:11
integer, dimension(:,:), allocatable idxthc
Definition: modtdhfc.f90:15