The Elk Code
 
Loading...
Searching...
No Matches
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
6module modtdhfc
7
8! energy cut-off for TDHFC states around the Fermi energy
9real(8) ecutthc
10! total number of TDHFC states
11integer nthc
12! number of states for each k-point
13integer, allocatable :: nthck(:)
14! index to used states for each k-point
15integer, allocatable :: idxthc(:,:)
16! index from state and k-point to TDHFC states
17integer, allocatable :: istthc(:,:)
18
19end module
20
real(8) ecutthc
Definition modtdhfc.f90:9
integer nthc
Definition modtdhfc.f90:11
integer, dimension(:,:), allocatable istthc
Definition modtdhfc.f90:17
integer, dimension(:), allocatable nthck
Definition modtdhfc.f90:13
integer, dimension(:,:), allocatable idxthc
Definition modtdhfc.f90:15