2023-02-06 19:26:58 +01:00
|
|
|
|
2024-05-01 20:25:01 +02:00
|
|
|
! ---
|
|
|
|
|
2023-02-06 19:26:58 +01:00
|
|
|
BEGIN_PROVIDER [ double precision, Fock_matrix_tc_mo_tot, (mo_num,mo_num) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, Fock_matrix_tc_diag_mo_tot, (mo_num)]
|
2023-04-26 08:52:06 +02:00
|
|
|
|
|
|
|
BEGIN_DOC
|
|
|
|
! TC-Fock matrix on the MO basis. WARNING !!! NON HERMITIAN !!!
|
|
|
|
! For open shells, the ROHF Fock Matrix is ::
|
|
|
|
!
|
|
|
|
! | F-K | F + K/2 | F |
|
|
|
|
! |---------------------------------|
|
|
|
|
! | F + K/2 | F | F - K/2 |
|
|
|
|
! |---------------------------------|
|
|
|
|
! | F | F - K/2 | F + K |
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! F = 1/2 (Fa + Fb)
|
|
|
|
!
|
|
|
|
! K = Fb - Fa
|
|
|
|
!
|
|
|
|
END_DOC
|
|
|
|
|
|
|
|
implicit none
|
2023-04-27 16:52:31 +02:00
|
|
|
integer :: i, j, n
|
|
|
|
double precision :: t0, t1
|
|
|
|
|
2023-04-26 08:52:06 +02:00
|
|
|
if(elec_alpha_num == elec_beta_num) then
|
|
|
|
|
|
|
|
PROVIDE Fock_matrix_tc_mo_alpha
|
|
|
|
|
|
|
|
Fock_matrix_tc_mo_tot = Fock_matrix_tc_mo_alpha
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
PROVIDE Fock_matrix_tc_mo_beta Fock_matrix_tc_mo_alpha
|
|
|
|
|
|
|
|
do j = 1, elec_beta_num
|
|
|
|
! F-K
|
|
|
|
do i = 1, elec_beta_num !CC
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))&
|
2023-02-06 19:26:58 +01:00
|
|
|
- (Fock_matrix_tc_mo_beta(i,j) - Fock_matrix_tc_mo_alpha(i,j))
|
2023-04-26 08:52:06 +02:00
|
|
|
enddo
|
|
|
|
! F+K/2
|
|
|
|
do i = elec_beta_num+1, elec_alpha_num !CA
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))&
|
2023-02-06 19:26:58 +01:00
|
|
|
+ 0.5d0*(Fock_matrix_tc_mo_beta(i,j) - Fock_matrix_tc_mo_alpha(i,j))
|
2023-04-26 08:52:06 +02:00
|
|
|
enddo
|
|
|
|
! F
|
|
|
|
do i = elec_alpha_num+1, mo_num !CV
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))
|
|
|
|
enddo
|
|
|
|
enddo
|
2023-02-06 19:26:58 +01:00
|
|
|
|
2023-04-26 08:52:06 +02:00
|
|
|
do j = elec_beta_num+1, elec_alpha_num
|
|
|
|
! F+K/2
|
|
|
|
do i = 1, elec_beta_num !AC
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))&
|
2023-02-06 19:26:58 +01:00
|
|
|
+ 0.5d0*(Fock_matrix_tc_mo_beta(i,j) - Fock_matrix_tc_mo_alpha(i,j))
|
2023-04-26 08:52:06 +02:00
|
|
|
enddo
|
|
|
|
! F
|
|
|
|
do i = elec_beta_num+1, elec_alpha_num !AA
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))
|
|
|
|
enddo
|
|
|
|
! F-K/2
|
|
|
|
do i = elec_alpha_num+1, mo_num !AV
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))&
|
2023-02-06 19:26:58 +01:00
|
|
|
- 0.5d0*(Fock_matrix_tc_mo_beta(i,j) - Fock_matrix_tc_mo_alpha(i,j))
|
2023-04-26 08:52:06 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
2023-02-06 19:26:58 +01:00
|
|
|
|
2023-04-26 08:52:06 +02:00
|
|
|
do j = elec_alpha_num+1, mo_num
|
|
|
|
! F
|
|
|
|
do i = 1, elec_beta_num !VC
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))
|
|
|
|
enddo
|
|
|
|
! F-K/2
|
|
|
|
do i = elec_beta_num+1, elec_alpha_num !VA
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j))&
|
2023-02-06 19:26:58 +01:00
|
|
|
- 0.5d0*(Fock_matrix_tc_mo_beta(i,j) - Fock_matrix_tc_mo_alpha(i,j))
|
2023-04-26 08:52:06 +02:00
|
|
|
enddo
|
|
|
|
! F+K
|
|
|
|
do i = elec_alpha_num+1, mo_num !VV
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) = 0.5d0*(Fock_matrix_tc_mo_alpha(i,j)+Fock_matrix_tc_mo_beta(i,j)) &
|
2023-02-06 19:26:58 +01:00
|
|
|
+ (Fock_matrix_tc_mo_beta(i,j) - Fock_matrix_tc_mo_alpha(i,j))
|
2023-04-26 08:52:06 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
if(three_body_h_tc) then
|
|
|
|
|
|
|
|
PROVIDE fock_a_tot_3e_bi_orth fock_b_tot_3e_bi_orth
|
|
|
|
|
2023-02-06 19:26:58 +01:00
|
|
|
! C-O
|
|
|
|
do j = 1, elec_beta_num
|
2023-04-26 08:52:06 +02:00
|
|
|
do i = elec_beta_num+1, elec_alpha_num
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) += 0.5d0*(fock_a_tot_3e_bi_orth(i,j) + fock_b_tot_3e_bi_orth(i,j))
|
|
|
|
Fock_matrix_tc_mo_tot(j,i) += 0.5d0*(fock_a_tot_3e_bi_orth(j,i) + fock_b_tot_3e_bi_orth(j,i))
|
|
|
|
enddo
|
2023-02-06 19:26:58 +01:00
|
|
|
enddo
|
|
|
|
! C-V
|
|
|
|
do j = 1, elec_beta_num
|
2023-04-26 08:52:06 +02:00
|
|
|
do i = elec_alpha_num+1, mo_num
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) += 0.5d0*(fock_a_tot_3e_bi_orth(i,j) + fock_b_tot_3e_bi_orth(i,j))
|
|
|
|
Fock_matrix_tc_mo_tot(j,i) += 0.5d0*(fock_a_tot_3e_bi_orth(j,i) + fock_b_tot_3e_bi_orth(j,i))
|
|
|
|
enddo
|
2023-02-06 19:26:58 +01:00
|
|
|
enddo
|
|
|
|
! O-V
|
|
|
|
do j = elec_beta_num+1, elec_alpha_num
|
2023-04-26 08:52:06 +02:00
|
|
|
do i = elec_alpha_num+1, mo_num
|
|
|
|
Fock_matrix_tc_mo_tot(i,j) += 0.5d0*(fock_a_tot_3e_bi_orth(i,j) + fock_b_tot_3e_bi_orth(i,j))
|
|
|
|
Fock_matrix_tc_mo_tot(j,i) += 0.5d0*(fock_a_tot_3e_bi_orth(j,i) + fock_b_tot_3e_bi_orth(j,i))
|
|
|
|
enddo
|
2023-02-06 19:26:58 +01:00
|
|
|
enddo
|
2023-04-26 08:52:06 +02:00
|
|
|
endif
|
2023-02-06 19:26:58 +01:00
|
|
|
|
2023-04-26 08:52:06 +02:00
|
|
|
endif
|
2023-02-06 19:26:58 +01:00
|
|
|
|
2023-04-26 08:52:06 +02:00
|
|
|
do i = 1, mo_num
|
|
|
|
Fock_matrix_tc_diag_mo_tot(i) = Fock_matrix_tc_mo_tot(i,i)
|
|
|
|
enddo
|
2023-02-06 19:26:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
if(frozen_orb_scf)then
|
|
|
|
integer :: iorb,jorb
|
|
|
|
do i = 1, n_core_orb
|
|
|
|
iorb = list_core(i)
|
|
|
|
do j = 1, n_act_orb
|
|
|
|
jorb = list_act(j)
|
|
|
|
Fock_matrix_tc_mo_tot(iorb,jorb) = 0.d0
|
|
|
|
Fock_matrix_tc_mo_tot(jorb,iorb) = 0.d0
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
endif
|
|
|
|
|
2024-05-01 21:52:00 +02:00
|
|
|
if(no_oa_or_av_opt) then
|
2023-04-26 08:52:06 +02:00
|
|
|
do i = 1, n_act_orb
|
|
|
|
iorb = list_act(i)
|
|
|
|
do j = 1, n_inact_orb
|
|
|
|
jorb = list_inact(j)
|
|
|
|
Fock_matrix_tc_mo_tot(iorb,jorb) = 0.d0
|
|
|
|
Fock_matrix_tc_mo_tot(jorb,iorb) = 0.d0
|
|
|
|
enddo
|
|
|
|
do j = 1, n_virt_orb
|
|
|
|
jorb = list_virt(j)
|
|
|
|
Fock_matrix_tc_mo_tot(iorb,jorb) = 0.d0
|
|
|
|
Fock_matrix_tc_mo_tot(jorb,iorb) = 0.d0
|
|
|
|
enddo
|
|
|
|
do j = 1, n_core_orb
|
|
|
|
jorb = list_core(j)
|
|
|
|
Fock_matrix_tc_mo_tot(iorb,jorb) = 0.d0
|
|
|
|
Fock_matrix_tc_mo_tot(jorb,iorb) = 0.d0
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
endif
|
|
|
|
|
2024-05-01 21:52:00 +02:00
|
|
|
if(tc_Brillouin_Right) then
|
|
|
|
|
|
|
|
double precision, allocatable :: tmp(:,:)
|
|
|
|
allocate(tmp(mo_num,mo_num))
|
|
|
|
|
|
|
|
tmp = Fock_matrix_tc_mo_tot
|
|
|
|
do j = 1, mo_num
|
|
|
|
do i = 1, j-1
|
|
|
|
tmp(i,j) = Fock_matrix_tc_mo_tot(j,i)
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
Fock_matrix_tc_mo_tot = tmp
|
|
|
|
deallocate(tmp)
|
|
|
|
|
2023-02-06 19:26:58 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
2024-05-01 20:25:01 +02:00
|
|
|
! ---
|
|
|
|
|
|
|
|
|