mirror of
https://github.com/pfloos/quack
synced 2024-11-09 07:33:55 +01:00
138 lines
4.1 KiB
Fortran
138 lines
4.1 KiB
Fortran
subroutine UCIS(spin_conserved,spin_flip,nBas,nC,nO,nV,nR,nS,ERI_aaaa,ERI_aabb,ERI_bbbb, &
|
|
dipole_int_aa,dipole_int_bb,eHF,cHF,S)
|
|
|
|
! Perform configuration interaction single calculation`
|
|
|
|
implicit none
|
|
include 'parameters.h'
|
|
|
|
! Input variables
|
|
|
|
logical,intent(in) :: spin_conserved
|
|
logical,intent(in) :: spin_flip
|
|
integer,intent(in) :: nBas
|
|
integer,intent(in) :: nC(nspin)
|
|
integer,intent(in) :: nO(nspin)
|
|
integer,intent(in) :: nV(nspin)
|
|
integer,intent(in) :: nR(nspin)
|
|
integer,intent(in) :: nS(nspin)
|
|
double precision,intent(in) :: eHF(nBas,nspin)
|
|
double precision,intent(in) :: cHF(nBas,nBas,nspin)
|
|
double precision,intent(in) :: S(nBas,nBas)
|
|
double precision,intent(in) :: ERI_aaaa(nBas,nBas,nBas,nBas)
|
|
double precision,intent(in) :: ERI_aabb(nBas,nBas,nBas,nBas)
|
|
double precision,intent(in) :: ERI_bbbb(nBas,nBas,nBas,nBas)
|
|
double precision,intent(in) :: dipole_int_aa(nBas,nBas,ncart,nspin)
|
|
double precision,intent(in) :: dipole_int_bb(nBas,nBas,ncart,nspin)
|
|
|
|
! Local variables
|
|
|
|
logical :: dump_matrix = .false.
|
|
logical :: dump_trans = .false.
|
|
integer :: ispin
|
|
double precision :: lambda
|
|
|
|
integer :: nS_aa,nS_bb,nS_sc
|
|
double precision,allocatable :: A_sc(:,:)
|
|
double precision,allocatable :: Omega_sc(:)
|
|
|
|
integer :: nS_ab,nS_ba,nS_sf
|
|
double precision,allocatable :: A_sf(:,:)
|
|
double precision,allocatable :: Omega_sf(:)
|
|
|
|
! Hello world
|
|
|
|
write(*,*)
|
|
write(*,*)'************************************************'
|
|
write(*,*)'| Configuration Interaction Singles |'
|
|
write(*,*)'************************************************'
|
|
write(*,*)
|
|
|
|
! Adiabatic connection scaling
|
|
|
|
lambda = 1d0
|
|
|
|
!----------------------------!
|
|
! Spin-conserved transitions !
|
|
!----------------------------!
|
|
|
|
if(spin_conserved) then
|
|
|
|
ispin = 1
|
|
|
|
! Memory allocation
|
|
|
|
nS_aa = nS(1)
|
|
nS_bb = nS(2)
|
|
nS_sc = nS_aa + nS_bb
|
|
|
|
allocate(A_sc(nS_sc,nS_sc),Omega_sc(nS_sc))
|
|
|
|
call unrestricted_linear_response_A_matrix(ispin,.false.,nBas,nC,nO,nV,nR,nS_aa,nS_bb,nS_sc,lambda,eHF, &
|
|
ERI_aaaa,ERI_aabb,ERI_bbbb,A_sc)
|
|
|
|
if(dump_matrix) then
|
|
print*,'CIS matrix (spin-conserved transitions)'
|
|
call matout(nS_sc,nS_sc,A_sc)
|
|
write(*,*)
|
|
endif
|
|
|
|
call diagonalize_matrix(nS_sc,A_sc,Omega_sc)
|
|
A_sc(:,:) = transpose(A_sc)
|
|
call print_excitation('UCIS ',5,nS_sc,Omega_sc)
|
|
call print_unrestricted_transition_vectors(ispin,nBas,nC,nO,nV,nR,nS,nS_aa,nS_bb,nS_sc,dipole_int_aa,dipole_int_bb, &
|
|
cHF,S,Omega_sc,A_sc,A_sc)
|
|
|
|
if(dump_trans) then
|
|
print*,'Spin-conserved CIS transition vectors'
|
|
call matout(nS_sc,nS_sc,A_sc)
|
|
write(*,*)
|
|
endif
|
|
|
|
deallocate(A_sc,Omega_sc)
|
|
|
|
endif
|
|
|
|
!-----------------------!
|
|
! Spin-flip transitions !
|
|
!-----------------------!
|
|
|
|
if(spin_flip) then
|
|
|
|
ispin = 2
|
|
|
|
! Memory allocation
|
|
|
|
nS_ab = (nO(1) - nC(1))*(nV(2) - nR(2))
|
|
nS_ba = (nO(2) - nC(2))*(nV(1) - nR(1))
|
|
nS_sf = nS_ab + nS_ba
|
|
|
|
allocate(A_sf(nS_sf,nS_sf),Omega_sf(nS_sf))
|
|
|
|
call unrestricted_linear_response_A_matrix(ispin,.false.,nBas,nC,nO,nV,nR,nS_ab,nS_ba,nS_sf,lambda,eHF, &
|
|
ERI_aaaa,ERI_aabb,ERI_bbbb,A_sf)
|
|
|
|
if(dump_matrix) then
|
|
print*,'CIS matrix (spin-conserved transitions)'
|
|
call matout(nS_sf,nS_sf,A_sf)
|
|
write(*,*)
|
|
endif
|
|
|
|
call diagonalize_matrix(nS_sf,A_sf,Omega_sf)
|
|
A_sf(:,:) = transpose(A_sf)
|
|
call print_excitation('UCIS ',6,nS_sf,Omega_sf)
|
|
call print_unrestricted_transition_vectors(ispin,nBas,nC,nO,nV,nR,nS,nS_ab,nS_ba,nS_sf,dipole_int_aa,dipole_int_bb, &
|
|
cHF,S,Omega_sf,A_sf,A_sf)
|
|
|
|
if(dump_trans) then
|
|
print*,'Spin-flip CIS transition vectors'
|
|
call matout(nS_sf,nS_sf,A_sf)
|
|
write(*,*)
|
|
endif
|
|
|
|
deallocate(A_sf,Omega_sf)
|
|
|
|
endif
|
|
|
|
end subroutine UCIS
|