10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-30 00:44:37 +02:00
QuantumPackage/src/utils_complex/dump_kcon.irp.f

22 lines
274 B
FortranFixed
Raw Normal View History

2020-03-13 00:21:50 +01:00
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