4
1
mirror of https://github.com/pfloos/quack synced 2024-06-18 11:15:30 +02:00

rename routine in HF

This commit is contained in:
Pierre-Francois Loos 2022-01-07 09:56:30 +01:00
parent 0cdf014817
commit 909777c458
4 changed files with 6 additions and 4 deletions

View File

@ -13,7 +13,7 @@
# G0F2* evGF2* qsGF2* G0F3 evGF3
F F F F F
# G0W0* evGW* qsGW* ufG0W0 ufGW
T F F F F
F F F F F
# G0T0 evGT qsGT
F F F
# MCMP2

View File

@ -205,6 +205,6 @@ subroutine RHF(maxSCF,thresh,max_diis,guess_type,nNuc,ZNuc,rNuc,ENuc,nBas,nO,S,T
! Compute Vx for post-HF calculations
call exchange_potential(nBas,c,K,Vx)
call mo_fock_exchange_potential(nBas,c,K,Vx)
end subroutine RHF

View File

@ -1,4 +1,4 @@
subroutine exchange_potential(nBas,c,Fx,Vx)
subroutine mo_fock_exchange_potential(nBas,c,Fx,Vx)
! Compute the exchange potential in the MO basis
@ -31,4 +31,4 @@ subroutine exchange_potential(nBas,c,Fx,Vx)
end do
end do
end subroutine exchange_potential
end subroutine mo_fock_exchange_potential

View File

@ -451,8 +451,10 @@ program QuAcK
ket1 = 1
ket2 = 1
call AOtoMO_integral_transform(bra1,bra2,ket1,ket2,nBas,cHF,ERI_AO,ERI_MO)
F_MO(:,:) = F_AO(:,:)
call AOtoMO_transform(nBas,cHF,F_MO)
end if
end if