mirror of
https://github.com/pfloos/quack
synced 2024-11-07 06:33:55 +01:00
fix bug
This commit is contained in:
parent
20281b2c8d
commit
954a33d07f
@ -6,14 +6,14 @@
|
||||
# GGA = 2: B88,G96,PBE
|
||||
# MGGA = 3:
|
||||
# Hybrid = 4: HF,B3LYP,PBE
|
||||
1 S51
|
||||
4 B3LYP
|
||||
# correlation rung:
|
||||
# Hartree = 0: H
|
||||
# LDA = 1: PW92,VWN3,VWN5,eVWN5
|
||||
# GGA = 2: LYP,PBE
|
||||
# MGGA = 3:
|
||||
# Hybrid = 4: HF,B3LYP,PBE
|
||||
1 VWN5
|
||||
4 B3LYP
|
||||
# quadrature grid SG-n
|
||||
0
|
||||
# Number of states in ensemble (nEns)
|
||||
|
@ -1,5 +1,5 @@
|
||||
14
|
||||
Aza-naphthalene,^1A_g,CC3/cc-pVTZ
|
||||
|
||||
C 0.00000000 0.70770032 0.00000000
|
||||
C 0.00000000 -0.70770032 0.00000000
|
||||
C 2.25666080 0.70974464 0.00000000
|
||||
|
@ -1,5 +1,5 @@
|
||||
12
|
||||
Benzoquinone,^1A_g,CC3,aug-cc-pVTZ
|
||||
|
||||
C 1.43654376 0.00000000 0.00000000
|
||||
C -1.43654376 0.00000000 0.00000000
|
||||
C 0.67018012 1.26325165 0.00000000
|
||||
|
@ -50,9 +50,9 @@ subroutine unrestricted_hybrid_exchange_potential(DFA,LDA_centered,nEns,wEns,aCC
|
||||
a0 = 0.20d0
|
||||
aX = 0.72d0
|
||||
|
||||
call unrestricted_lda_exchange_potential('S51 ',LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight, &
|
||||
call unrestricted_lda_exchange_potential(1,LDA_centered,nEns,wEns,aCC_w1,aCC_w2,nGrid,weight, &
|
||||
nBas,AO,rho,FxLDA,Cx_choice)
|
||||
call unrestricted_gga_exchange_potential('B88 ',nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,FxGGA)
|
||||
call unrestricted_gga_exchange_potential(2,nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,FxGGA)
|
||||
call unrestricted_fock_exchange_potential(nBas,P,ERI,FxHF)
|
||||
|
||||
Fx(:,:) = FxLDA(:,:) &
|
||||
@ -63,7 +63,7 @@ subroutine unrestricted_hybrid_exchange_potential(DFA,LDA_centered,nEns,wEns,aCC
|
||||
|
||||
allocate(FxGGA(nBas,nBas))
|
||||
|
||||
call unrestricted_gga_exchange_potential('B88 ',nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,FxGGA)
|
||||
call unrestricted_gga_exchange_potential(2,nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,FxGGA)
|
||||
call unrestricted_fock_exchange_potential(nBas,P,ERI,FxHF)
|
||||
|
||||
Fx(:,:) = 0.5d0*FxHF(:,:) + 0.5d0*FxGGA(:,:)
|
||||
@ -72,7 +72,7 @@ subroutine unrestricted_hybrid_exchange_potential(DFA,LDA_centered,nEns,wEns,aCC
|
||||
|
||||
allocate(FxGGA(nBas,nBas))
|
||||
|
||||
call unrestricted_gga_exchange_potential('PBE ',nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,FxGGA)
|
||||
call unrestricted_gga_exchange_potential(3,nEns,wEns,nGrid,weight,nBas,AO,dAO,rho,drho,FxGGA)
|
||||
call unrestricted_fock_exchange_potential(nBas,P,ERI,FxHF)
|
||||
|
||||
Fx(:,:) = 0.25d0*FxHF(:,:) + 0.75d0*FxGGA(:,:)
|
||||
|
Loading…
Reference in New Issue
Block a user