2019-03-19 11:21:34 +01:00
|
|
|
subroutine RHF(maxSCF,thresh,max_diis,guess_type,nBas,nO,S,T,V,Hc,ERI,X,ENuc,ERHF,e,c,P)
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Perform restricted Hartree-Fock calculation
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
! Input variables
|
|
|
|
|
|
|
|
integer,intent(in) :: maxSCF,max_diis,guess_type
|
|
|
|
double precision,intent(in) :: thresh
|
|
|
|
|
|
|
|
integer,intent(in) :: nBas,nO
|
|
|
|
double precision,intent(in) :: ENuc
|
|
|
|
double precision,intent(in) :: S(nBas,nBas),T(nBas,nBas),V(nBas,nBas),Hc(nBas,nBas)
|
|
|
|
double precision,intent(in) :: ERI(nBas,nBas,nBas,nBas),X(nBas,nBas)
|
|
|
|
|
|
|
|
! Local variables
|
|
|
|
|
2019-04-18 23:22:23 +02:00
|
|
|
integer :: nSCF
|
|
|
|
integer :: nBasSq
|
|
|
|
integer :: n_diis
|
|
|
|
double precision :: ET,EV,EJ,EK
|
|
|
|
double precision :: Conv
|
|
|
|
double precision :: Gap
|
2019-03-19 11:21:34 +01:00
|
|
|
double precision :: rcond
|
2019-03-19 10:13:33 +01:00
|
|
|
double precision,external :: trace_matrix
|
2019-04-18 23:22:23 +02:00
|
|
|
double precision,allocatable :: error(:,:)
|
|
|
|
double precision,allocatable :: error_diis(:,:)
|
|
|
|
double precision,allocatable :: F_diis(:,:)
|
|
|
|
double precision,allocatable :: J(:,:)
|
|
|
|
double precision,allocatable :: K(:,:)
|
|
|
|
double precision,allocatable :: cp(:,:)
|
|
|
|
double precision,allocatable :: F(:,:)
|
|
|
|
double precision,allocatable :: Fp(:,:)
|
|
|
|
double precision,allocatable :: ON(:)
|
|
|
|
|
2019-03-19 10:13:33 +01:00
|
|
|
! Output variables
|
|
|
|
|
2019-03-19 11:21:34 +01:00
|
|
|
double precision,intent(out) :: ERHF
|
|
|
|
double precision,intent(out) :: e(nBas)
|
|
|
|
double precision,intent(out) :: c(nBas,nBas)
|
|
|
|
double precision,intent(out) :: P(nBas,nBas)
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Hello world
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'************************************************'
|
|
|
|
write(*,*)'| Restricted Hartree-Fock calculation |'
|
|
|
|
write(*,*)'************************************************'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
! Useful quantities
|
|
|
|
|
|
|
|
nBasSq = nBas*nBas
|
|
|
|
|
|
|
|
! Memory allocation
|
|
|
|
|
2019-04-18 23:22:23 +02:00
|
|
|
allocate(J(nBas,nBas),K(nBas,nBas),error(nBas,nBas), &
|
|
|
|
cp(nBas,nBas),Fp(nBas,nBas),F(nBas,nBas),ON(nBas), &
|
2019-03-19 10:13:33 +01:00
|
|
|
error_diis(nBasSq,max_diis),F_diis(nBasSq,max_diis))
|
|
|
|
|
|
|
|
! Guess coefficients and eigenvalues
|
|
|
|
|
2020-01-17 17:35:40 +01:00
|
|
|
call mo_guess(nBas,nO,guess_type,S,Hc,ERI,J,K,X,cp,F,Fp,e,c,P)
|
2019-03-19 10:13:33 +01:00
|
|
|
|
2019-04-18 23:22:23 +02:00
|
|
|
! ON(:) = 0d0
|
|
|
|
! do i=1,nO
|
|
|
|
! ON(i) = 1d0
|
|
|
|
! ON(i) = dble(2*i-1)
|
|
|
|
! end do
|
|
|
|
|
|
|
|
! call density_matrix(nBas,ON,c,P)
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Initialization
|
|
|
|
|
|
|
|
n_diis = 0
|
|
|
|
F_diis(:,:) = 0d0
|
|
|
|
error_diis(:,:) = 0d0
|
|
|
|
Conv = 1d0
|
|
|
|
nSCF = 0
|
|
|
|
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
! Main SCF loop
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'----------------------------------------------------'
|
|
|
|
write(*,*)'| RHF calculation |'
|
|
|
|
write(*,*)'----------------------------------------------------'
|
|
|
|
write(*,'(1X,A1,1X,A3,1X,A1,1X,A16,1X,A1,1X,A10,1X,A1,1X,A10,1X,A1,1X)') &
|
|
|
|
'|','#','|','HF energy','|','Conv','|','HL Gap','|'
|
|
|
|
write(*,*)'----------------------------------------------------'
|
|
|
|
|
|
|
|
do while(Conv > thresh .and. nSCF < maxSCF)
|
|
|
|
|
|
|
|
! Increment
|
|
|
|
|
|
|
|
nSCF = nSCF + 1
|
|
|
|
|
|
|
|
! Build Fock matrix
|
|
|
|
|
|
|
|
call Coulomb_matrix_AO_basis(nBas,P,ERI,J)
|
|
|
|
call exchange_matrix_AO_basis(nBas,P,ERI,K)
|
|
|
|
|
2019-03-19 11:21:34 +01:00
|
|
|
F(:,:) = Hc(:,:) + J(:,:) + 0.5d0*K(:,:)
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Check convergence
|
|
|
|
|
|
|
|
error = matmul(F,matmul(P,S)) - matmul(matmul(S,P),F)
|
|
|
|
Conv = maxval(abs(error))
|
|
|
|
|
|
|
|
! DIIS extrapolation
|
|
|
|
|
|
|
|
n_diis = min(n_diis+1,max_diis)
|
2019-03-19 11:21:34 +01:00
|
|
|
call DIIS_extrapolation(rcond,nBasSq,nBasSq,n_diis,error_diis,F_diis,error,F)
|
|
|
|
|
|
|
|
! Reset DIIS if required
|
|
|
|
|
|
|
|
if(abs(rcond) < 1d-15) n_diis = 0
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Diagonalize Fock matrix
|
|
|
|
|
|
|
|
Fp = matmul(transpose(X),matmul(F,X))
|
|
|
|
cp(:,:) = Fp(:,:)
|
|
|
|
call diagonalize_matrix(nBas,cp,e)
|
|
|
|
c = matmul(X,cp)
|
|
|
|
|
|
|
|
! Density matrix
|
|
|
|
|
|
|
|
P(:,:) = 2d0*matmul(c(:,1:nO),transpose(c(:,1:nO)))
|
|
|
|
|
2019-04-18 23:22:23 +02:00
|
|
|
! call density_matrix(nBas,ON,c,P)
|
|
|
|
|
2019-03-19 10:13:33 +01:00
|
|
|
! Compute HF energy
|
|
|
|
|
|
|
|
ERHF = trace_matrix(nBas,matmul(P,Hc)) &
|
|
|
|
+ 0.5d0*trace_matrix(nBas,matmul(P,J)) &
|
2019-03-19 11:21:34 +01:00
|
|
|
+ 0.25d0*trace_matrix(nBas,matmul(P,K))
|
2019-03-19 10:13:33 +01:00
|
|
|
|
|
|
|
! Compute HOMO-LUMO gap
|
|
|
|
|
|
|
|
if(nBas > nO) then
|
|
|
|
|
|
|
|
Gap = e(nO+1) - e(nO)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
Gap = 0d0
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
! Dump results
|
|
|
|
|
|
|
|
write(*,'(1X,A1,1X,I3,1X,A1,1X,F16.10,1X,A1,1X,F10.6,1X,A1,1X,F10.6,1X,A1,1X)') &
|
|
|
|
'|',nSCF,'|',ERHF+ENuc,'|',Conv,'|',Gap,'|'
|
|
|
|
|
|
|
|
enddo
|
|
|
|
write(*,*)'----------------------------------------------------'
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
! End of SCF loop
|
|
|
|
!------------------------------------------------------------------------
|
|
|
|
|
|
|
|
! Did it actually converge?
|
|
|
|
|
|
|
|
if(nSCF == maxSCF) then
|
|
|
|
|
|
|
|
write(*,*)
|
|
|
|
write(*,*)'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
|
|
|
|
write(*,*)' Convergence failed '
|
|
|
|
write(*,*)'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
|
|
|
|
write(*,*)
|
|
|
|
|
|
|
|
stop
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
! Compute HF energy
|
|
|
|
|
|
|
|
ET = trace_matrix(nBas,matmul(P,T))
|
|
|
|
EV = trace_matrix(nBas,matmul(P,V))
|
|
|
|
EJ = 0.5d0*trace_matrix(nBas,matmul(P,J))
|
2019-03-19 11:21:34 +01:00
|
|
|
EK = 0.25d0*trace_matrix(nBas,matmul(P,K))
|
2019-03-19 10:13:33 +01:00
|
|
|
ERHF = ET + EV + EJ + EK
|
|
|
|
|
|
|
|
call print_RHF(nBas,nO,e,C,ENuc,ET,EV,EJ,EK,ERHF)
|
|
|
|
|
|
|
|
end subroutine RHF
|