4
1
mirror of https://github.com/pfloos/quack synced 2024-06-22 05:02:18 +02:00
quack/src/GF/print_G0F2.f90

54 lines
2.2 KiB
Fortran
Raw Normal View History

2021-03-06 23:08:43 +01:00
subroutine print_G0F2(nBas,nO,eHF,Sig,eGF2,Z,ENuc,ERHF,Ec)
2020-03-19 10:21:18 +01:00
! Print one-electron energies and other stuff for G0F2
implicit none
include 'parameters.h'
integer,intent(in) :: nBas
integer,intent(in) :: nO
double precision,intent(in) :: eHF(nBas)
2020-03-21 16:31:39 +01:00
double precision,intent(in) :: Sig(nBas)
2020-03-19 10:21:18 +01:00
double precision,intent(in) :: eGF2(nBas)
2020-03-19 10:59:20 +01:00
double precision,intent(in) :: Z(nBas)
2021-03-06 23:08:43 +01:00
double precision,intent(in) :: ENuc
double precision,intent(in) :: ERHF
double precision,intent(in) :: Ec
2020-03-19 10:21:18 +01:00
2020-03-19 10:59:20 +01:00
integer :: p
2020-03-19 10:21:18 +01:00
integer :: HOMO
integer :: LUMO
double precision :: Gap
! HOMO and LUMO
HOMO = nO
LUMO = HOMO + 1
2020-03-19 10:59:20 +01:00
Gap = eGF2(LUMO) - eGF2(HOMO)
2020-03-19 10:21:18 +01:00
! Dump results
2020-03-21 16:31:39 +01:00
write(*,*)'--------------------------------------------------------------------------'
2020-03-19 10:21:18 +01:00
write(*,*)' Frequency-dependent G0F2 calculation'
2020-03-21 16:31:39 +01:00
write(*,*)'--------------------------------------------------------------------------'
write(*,'(1X,A1,1X,A3,1X,A1,1X,A15,1X,A1,1X,A15,1X,A1,1X,A15,1X,A1,1X,A10,1X,A1,1X)') &
'|','#','|','e_HF (eV)','|','Sigma (eV)','|','e_G0F2 (eV)','|','Z','|'
write(*,*)'--------------------------------------------------------------------------'
2020-03-19 10:59:20 +01:00
do p=1,nBas
2020-03-21 16:31:39 +01:00
write(*,'(1X,A1,1X,I3,1X,A1,1X,F15.6,1X,A1,1X,F15.6,1X,A1,1X,F15.6,1X,A1,1X,F10.6,1X,A1,1X)') &
'|',p,'|',eHF(p)*HaToeV,'|',Sig(p)*HaToeV,'|',eGF2(p)*HaToeV,'|',Z(p),'|'
2020-03-19 10:21:18 +01:00
enddo
2020-03-21 16:31:39 +01:00
write(*,*)'--------------------------------------------------------------------------'
2021-03-06 23:08:43 +01:00
write(*,'(2X,A30,F15.6)') 'G0F2 HOMO energy (eV):',eGF2(HOMO)*HaToeV
write(*,'(2X,A30,F15.6)') 'G0F2 LUMO energy (eV):',eGF2(LUMO)*HaToeV
write(*,'(2X,A30,F15.6)') 'G0F2 HOMO-LUMO gap (eV):',Gap*HaToeV
2020-03-21 16:31:39 +01:00
write(*,*)'--------------------------------------------------------------------------'
2021-03-06 23:08:43 +01:00
write(*,'(2X,A30,F15.6,A3)') 'G0F2 total energy :',ENuc + ERHF + Ec,' au'
write(*,'(2X,A30,F15.6,A3)') 'G0F2 correlation energy:',Ec,' au'
write(*,*)'-------------------------------------------------------------------------------'
2020-03-19 10:21:18 +01:00
write(*,*)
end subroutine print_G0F2