2020-03-26 16:57:46 +01:00
|
|
|
subroutine form_delta_OOOVVV(nC,nO,nV,nR,eO,eV,delta)
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Form energy denominator for CC
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
2020-03-26 16:57:46 +01:00
|
|
|
integer,intent(in) :: nC,nO,nV,nR
|
2019-03-19 10:13:33 +01:00
|
|
|
double precision,intent(in) :: eO(nO)
|
|
|
|
double precision,intent(in) :: eV(nV)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
|
|
|
integer :: i,j,k,a,b,c
|
|
|
|
|
|
|
|
! Output variables
|
|
|
|
|
|
|
|
double precision,intent(out) :: delta(nO,nO,nO,nV,nV,nV)
|
|
|
|
|
2020-03-26 16:57:46 +01:00
|
|
|
do i=nC+1,nO
|
|
|
|
do j=nC+1,nO
|
|
|
|
do k=nC+1,nO
|
|
|
|
do a=1,nV-nR
|
|
|
|
do b=1,nV-nR
|
|
|
|
do c=1,nV-nR
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
delta(i,j,k,a,b,c) = eV(a) + eV(b) + eV(c) - eO(i) - eO(j) - eO(k)
|
|
|
|
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
end subroutine form_delta_OOOVVV
|