4
1
mirror of https://github.com/pfloos/quack synced 2024-06-22 21:22:20 +02:00
quack/src/LR/print_excitation.f90

47 lines
1.5 KiB
Fortran
Raw Normal View History

2020-10-05 16:58:19 +02:00
subroutine print_excitation(method,ispin,nS,Omega)
! Print excitation energies for a given spin manifold
implicit none
include 'parameters.h'
! Input variables
character*12,intent(in) :: method
integer,intent(in) :: ispin,nS
double precision,intent(in) :: Omega(nS)
! Local variables
character*14 :: spin_manifold
2023-06-30 16:47:26 +02:00
integer,parameter :: maxS = 50
2020-10-05 16:58:19 +02:00
integer :: ia
if(ispin == 1) spin_manifold = 'singlet'
if(ispin == 2) spin_manifold = 'triplet'
if(ispin == 3) spin_manifold = 'alpha-beta'
2022-02-15 13:51:18 +01:00
if(ispin == 4) spin_manifold = 'alpha-alpha'
2020-10-05 16:58:19 +02:00
if(ispin == 5) spin_manifold = 'spin-conserved'
if(ispin == 6) spin_manifold = 'spin-flip'
2022-02-15 13:51:18 +01:00
if(ispin == 7) spin_manifold = 'beta-beta'
2020-10-05 16:58:19 +02:00
write(*,*)
write(*,*)'-------------------------------------------------------------'
write(*,'(1X,A14,A14,A14,A9)') method,' calculation: ',spin_manifold,' manifold'
write(*,*)'-------------------------------------------------------------'
write(*,'(1X,A1,1X,A5,1X,A1,1X,A23,1X,A1,1X,A23,1X,A1,1X)') &
'|','State','|',' Excitation energy (au) ','|',' Excitation energy (eV) ','|'
write(*,*)'-------------------------------------------------------------'
2022-09-27 14:07:31 +02:00
do ia=1,min(maxS,nS)
2020-10-05 16:58:19 +02:00
write(*,'(1X,A1,1X,I5,1X,A1,1X,F23.6,1X,A1,1X,F23.6,1X,A1,1X)') &
'|',ia,'|',Omega(ia),'|',Omega(ia)*HaToeV,'|'
enddo
write(*,*)'-------------------------------------------------------------'
write(*,*)
end subroutine print_excitation