10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-24 14:12:24 +02:00
QuantumPackage/src/utils_complex/dump_kcon.irp.f
Kevin Gasperich d504108a33 testing
2020-03-12 18:21:50 -05:00

22 lines
274 B
Fortran

program dump_kcon
call run
end
subroutine run
use map_module
implicit none
integer ::i,j,k,l
provide kconserv
do i=1,kpt_num
do j=1,kpt_num
do k=1,kpt_num
l = kconserv(i,j,k)
print'(4(I4))',i,j,k,l
enddo
enddo
enddo
end