2014-04-24 12:31:15 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, Fock_matrix_mo, (mo_tot_num_align,mo_tot_num) ]
|
2014-04-23 22:10:36 +02:00
|
|
|
&BEGIN_PROVIDER [ double precision, Fock_matrix_diag_mo, (mo_tot_num)]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Fock matrix on the MO basis.
|
|
|
|
! 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
|
|
|
|
integer :: i,j,n
|
|
|
|
if (elec_alpha_num == elec_beta_num) then
|
|
|
|
Fock_matrix_mo = Fock_matrix_alpha_mo
|
|
|
|
else
|
|
|
|
|
|
|
|
do j=1,elec_beta_num
|
|
|
|
! F-K
|
|
|
|
do i=1,elec_beta_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))&
|
|
|
|
- (Fock_matrix_beta_mo(i,j) - Fock_matrix_alpha_mo(i,j))
|
|
|
|
enddo
|
|
|
|
! F+K/2
|
|
|
|
do i=elec_beta_num+1,elec_alpha_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))&
|
|
|
|
+ 0.5d0*(Fock_matrix_beta_mo(i,j) - Fock_matrix_alpha_mo(i,j))
|
|
|
|
enddo
|
|
|
|
! F
|
|
|
|
do i=elec_alpha_num+1, mo_tot_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
do j=elec_beta_num+1,elec_alpha_num
|
|
|
|
! F+K/2
|
|
|
|
do i=1,elec_beta_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))&
|
|
|
|
+ 0.5d0*(Fock_matrix_beta_mo(i,j) - Fock_matrix_alpha_mo(i,j))
|
|
|
|
enddo
|
|
|
|
! F
|
|
|
|
do i=elec_beta_num+1,elec_alpha_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))
|
|
|
|
enddo
|
|
|
|
! F-K/2
|
|
|
|
do i=elec_alpha_num+1, mo_tot_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))&
|
|
|
|
- 0.5d0*(Fock_matrix_beta_mo(i,j) - Fock_matrix_alpha_mo(i,j))
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
do j=elec_alpha_num+1, mo_tot_num
|
|
|
|
! F
|
|
|
|
do i=1,elec_beta_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))
|
|
|
|
enddo
|
|
|
|
! F-K/2
|
|
|
|
do i=elec_beta_num+1,elec_alpha_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j))&
|
|
|
|
- 0.5d0*(Fock_matrix_beta_mo(i,j) - Fock_matrix_alpha_mo(i,j))
|
|
|
|
enddo
|
|
|
|
! F+K
|
|
|
|
do i=elec_alpha_num+1,mo_tot_num
|
|
|
|
Fock_matrix_mo(i,j) = 0.5d0*(Fock_matrix_alpha_mo(i,j)+Fock_matrix_beta_mo(i,j)) &
|
|
|
|
+ (Fock_matrix_beta_mo(i,j) - Fock_matrix_alpha_mo(i,j))
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
endif
|
|
|
|
do i = 1, mo_tot_num
|
|
|
|
Fock_matrix_diag_mo(i) = Fock_matrix_mo(i,i)
|
|
|
|
enddo
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
2014-04-25 22:18:26 +02:00
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, Fock_matrix_alpha_ao, (ao_num_align, ao_num) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, Fock_matrix_beta_ao, (ao_num_align, ao_num) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Alpha Fock matrix in AO basis set
|
|
|
|
END_DOC
|
|
|
|
|
2014-07-09 14:52:42 +02:00
|
|
|
integer :: i,j
|
|
|
|
do j=1,ao_num
|
|
|
|
!DIR$ VECTOR ALIGNED
|
|
|
|
do i=1,ao_num
|
|
|
|
Fock_matrix_alpha_ao(i,j) = ao_mono_elec_integral(i,j) + ao_bi_elec_integral_alpha(i,j)
|
|
|
|
Fock_matrix_beta_ao (i,j) = ao_mono_elec_integral(i,j) + ao_bi_elec_integral_beta (i,j)
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, ao_bi_elec_integral_alpha, (ao_num_align, ao_num) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, ao_bi_elec_integral_beta , (ao_num_align, ao_num) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Alpha Fock matrix in AO basis set
|
|
|
|
END_DOC
|
|
|
|
|
2014-04-25 22:18:26 +02:00
|
|
|
integer :: i,j,k,l,k1,kmax
|
|
|
|
double precision, allocatable :: ao_ints_val(:)
|
|
|
|
integer, allocatable :: ao_ints_idx(:)
|
|
|
|
double precision :: integral
|
|
|
|
double precision :: ao_bielec_integral
|
2014-04-25 23:55:54 +02:00
|
|
|
!DIR$ ATTRIBUTES ALIGN : $IRP_ALIGN :: ao_ints_idx, ao_ints_val
|
|
|
|
if (do_direct_integrals) then
|
2014-04-26 01:18:26 +02:00
|
|
|
PROVIDE all_utils ao_overlap_abs ao_integrals_threshold
|
2014-05-24 02:39:18 +02:00
|
|
|
PROVIDE HF_density_matrix_ao_alpha HF_density_matrix_ao_beta
|
2014-07-12 12:20:53 +02:00
|
|
|
PROVIDE ao_bi_elec_integral_alpha
|
2014-04-25 23:55:54 +02:00
|
|
|
!$OMP PARALLEL DEFAULT(NONE) &
|
|
|
|
!$OMP PRIVATE(i,j,l,k1,k,integral) &
|
2014-07-09 14:52:42 +02:00
|
|
|
!$OMP SHARED(ao_num,ao_bi_elec_integral_alpha,ao_mono_elec_integral,&
|
|
|
|
!$OMP ao_num_align,ao_bi_elec_integral_beta,HF_density_matrix_ao_alpha, &
|
2014-04-25 23:55:54 +02:00
|
|
|
!$OMP HF_density_matrix_ao_beta)
|
|
|
|
!$OMP DO SCHEDULE(GUIDED)
|
2014-04-25 22:18:26 +02:00
|
|
|
do j=1,ao_num
|
2014-04-25 23:55:54 +02:00
|
|
|
do i=1,j
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(i,j) = 0.d0
|
|
|
|
ao_bi_elec_integral_beta (i,j) = 0.d0
|
2014-04-25 22:18:26 +02:00
|
|
|
do l=1,ao_num
|
|
|
|
do k=1,ao_num
|
|
|
|
if ((abs(HF_density_matrix_ao_alpha(k,l)) > 1.d-9).or. &
|
|
|
|
(abs(HF_density_matrix_ao_beta (k,l)) > 1.d-9)) then
|
2014-04-25 23:55:54 +02:00
|
|
|
integral = (HF_density_matrix_ao_alpha(k,l)+HF_density_matrix_ao_beta (k,l)) * ao_bielec_integral(k,l,i,j)
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(i,j) += integral
|
|
|
|
ao_bi_elec_integral_beta (i,j) += integral
|
2014-04-25 23:55:54 +02:00
|
|
|
|
|
|
|
integral = ao_bielec_integral(k,j,i,l)
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(i,j) -= HF_density_matrix_ao_alpha(k,l)*integral
|
|
|
|
ao_bi_elec_integral_beta (i,j) -= HF_density_matrix_ao_beta (k,l)*integral
|
2014-04-25 22:18:26 +02:00
|
|
|
endif
|
|
|
|
enddo
|
2014-04-23 22:10:36 +02:00
|
|
|
enddo
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(j,i) = ao_bi_elec_integral_alpha(i,j)
|
|
|
|
ao_bi_elec_integral_beta (j,i) = ao_bi_elec_integral_beta (i,j)
|
2014-04-25 22:18:26 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
2014-04-25 23:55:54 +02:00
|
|
|
!$OMP END DO NOWAIT
|
|
|
|
!$OMP END PARALLEL
|
|
|
|
|
2014-04-25 22:18:26 +02:00
|
|
|
else
|
2014-07-12 12:20:53 +02:00
|
|
|
PROVIDE ao_bielec_integrals_in_map
|
|
|
|
|
2014-04-25 22:18:26 +02:00
|
|
|
!$OMP PARALLEL DEFAULT(NONE) &
|
|
|
|
!$OMP PRIVATE(i,j,l,k1,k,integral,ao_ints_val,ao_ints_idx,kmax) &
|
2014-07-09 14:52:42 +02:00
|
|
|
!$OMP SHARED(ao_num,ao_bi_elec_integral_alpha,ao_mono_elec_integral,&
|
|
|
|
!$OMP ao_num_align,ao_bi_elec_integral_beta,HF_density_matrix_ao_alpha, &
|
2014-04-25 22:18:26 +02:00
|
|
|
!$OMP HF_density_matrix_ao_beta)
|
|
|
|
allocate(ao_ints_idx(ao_num_align),ao_ints_val(ao_num_align))
|
2014-04-25 23:55:54 +02:00
|
|
|
!$OMP DO SCHEDULE(GUIDED)
|
|
|
|
do j=1,ao_num
|
|
|
|
!DIR$ VECTOR ALIGNED
|
|
|
|
do i=1,ao_num
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(i,j) = 0.d0
|
|
|
|
ao_bi_elec_integral_beta (i,j) = 0.d0
|
2014-04-25 22:43:34 +02:00
|
|
|
enddo
|
2014-04-25 23:55:54 +02:00
|
|
|
do l=1,ao_num
|
|
|
|
do i=1,ao_num
|
2014-04-25 22:18:26 +02:00
|
|
|
call get_ao_bielec_integrals_non_zero(i,l,j,ao_num,ao_ints_val,ao_ints_idx,kmax)
|
2014-04-25 23:55:54 +02:00
|
|
|
!DIR$ VECTOR ALIGNED
|
2014-04-25 22:18:26 +02:00
|
|
|
do k1=1,kmax
|
|
|
|
k = ao_ints_idx(k1)
|
2014-04-25 23:55:54 +02:00
|
|
|
integral = (HF_density_matrix_ao_alpha(k,l)+HF_density_matrix_ao_beta(k,l)) * ao_ints_val(k1)
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(i,j) += integral
|
|
|
|
ao_bi_elec_integral_beta (i,j) += integral
|
2014-04-25 23:55:54 +02:00
|
|
|
integral = ao_ints_val(k1)
|
2014-07-09 14:52:42 +02:00
|
|
|
ao_bi_elec_integral_alpha(l,j) -= HF_density_matrix_ao_alpha(k,i) * integral
|
|
|
|
ao_bi_elec_integral_beta (l,j) -= HF_density_matrix_ao_beta (k,i) * integral
|
2014-04-25 22:18:26 +02:00
|
|
|
enddo
|
2014-04-23 22:10:36 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
2014-04-25 22:18:26 +02:00
|
|
|
!$OMP END DO
|
|
|
|
deallocate(ao_ints_val,ao_ints_idx)
|
|
|
|
!$OMP END PARALLEL
|
|
|
|
endif
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, Fock_matrix_alpha_mo, (mo_tot_num_align,mo_tot_num) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Fock matrix on the MO basis
|
|
|
|
END_DOC
|
|
|
|
double precision, allocatable :: T(:,:)
|
|
|
|
allocate ( T(ao_num_align,mo_tot_num) )
|
|
|
|
!DIR$ ATTRIBUTES ALIGN : $IRP_ALIGN :: T
|
|
|
|
call dgemm('N','N', ao_num, mo_tot_num, ao_num, &
|
|
|
|
1.d0, Fock_matrix_alpha_ao,size(Fock_matrix_alpha_ao,1), &
|
|
|
|
mo_coef, size(mo_coef,1), &
|
|
|
|
0.d0, T, ao_num_align)
|
|
|
|
call dgemm('T','N', mo_tot_num, mo_tot_num, ao_num, &
|
|
|
|
1.d0, mo_coef,size(mo_coef,1), &
|
|
|
|
T, size(T,1), &
|
|
|
|
0.d0, Fock_matrix_alpha_mo, mo_tot_num_align)
|
|
|
|
deallocate(T)
|
2014-04-23 22:10:36 +02:00
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
2014-04-25 22:18:26 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, Fock_matrix_beta_mo, (mo_tot_num_align,mo_tot_num) ]
|
2014-04-23 22:10:36 +02:00
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Fock matrix on the MO basis
|
|
|
|
END_DOC
|
2014-04-25 22:18:26 +02:00
|
|
|
double precision, allocatable :: T(:,:)
|
|
|
|
allocate ( T(ao_num_align,mo_tot_num) )
|
|
|
|
!DIR$ ATTRIBUTES ALIGN : $IRP_ALIGN :: T
|
|
|
|
call dgemm('N','N', ao_num, mo_tot_num, ao_num, &
|
|
|
|
1.d0, Fock_matrix_beta_ao,size(Fock_matrix_beta_ao,1), &
|
|
|
|
mo_coef, size(mo_coef,1), &
|
|
|
|
0.d0, T, ao_num_align)
|
|
|
|
call dgemm('T','N', mo_tot_num, mo_tot_num, ao_num, &
|
|
|
|
1.d0, mo_coef,size(mo_coef,1), &
|
|
|
|
T, size(T,1), &
|
|
|
|
0.d0, Fock_matrix_beta_mo, mo_tot_num_align)
|
|
|
|
deallocate(T)
|
2014-04-23 22:10:36 +02:00
|
|
|
END_PROVIDER
|
|
|
|
|
2014-04-26 01:18:26 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, HF_energy ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Hartree-Fock energy
|
|
|
|
END_DOC
|
|
|
|
HF_energy = nuclear_repulsion + ref_bitmask_energy
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
2014-06-19 17:58:45 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, Fock_matrix_ao, (ao_num_align, ao_num) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Fock matrix in AO basis set
|
|
|
|
END_DOC
|
|
|
|
|
|
|
|
if (elec_alpha_num == elec_beta_num) then
|
|
|
|
integer :: i,j
|
|
|
|
do j=1,ao_num
|
|
|
|
!DIR$ VECTOR ALIGNED
|
|
|
|
do i=1,ao_num_align
|
|
|
|
Fock_matrix_ao(i,j) = Fock_matrix_alpha_ao(i,j)
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
else
|
|
|
|
double precision, allocatable :: T(:,:), M(:,:)
|
|
|
|
! F_ao = S C F_mo C^t S
|
2014-07-16 15:31:02 +02:00
|
|
|
allocate (T(ao_num_align,ao_num),M(ao_num_align,ao_num))
|
2014-06-19 17:58:45 +02:00
|
|
|
call dgemm('N','N', ao_num,ao_num,ao_num, 1.d0, &
|
|
|
|
ao_overlap, size(ao_overlap,1), &
|
|
|
|
mo_coef, size(mo_coef,1), &
|
|
|
|
0.d0, &
|
|
|
|
M, size(M,1))
|
|
|
|
call dgemm('N','N', ao_num,mo_tot_num,mo_tot_num, 1.d0, &
|
|
|
|
M, size(M,1), &
|
|
|
|
Fock_matrix_mo, size(Fock_matrix_mo,1), &
|
|
|
|
0.d0, &
|
|
|
|
T, size(T,1))
|
|
|
|
call dgemm('N','T', mo_tot_num,ao_num,mo_tot_num, 1.d0, &
|
|
|
|
T, size(T,1), &
|
|
|
|
mo_coef, size(mo_coef,1), &
|
|
|
|
0.d0, &
|
|
|
|
M, size(M,1))
|
|
|
|
call dgemm('N','N', ao_num,ao_num,ao_num, 1.d0, &
|
|
|
|
M, size(M,1), &
|
|
|
|
ao_overlap, size(ao_overlap,1), &
|
|
|
|
0.d0, &
|
|
|
|
Fock_matrix_ao, size(Fock_matrix_ao,1))
|
|
|
|
|
|
|
|
deallocate(T)
|
|
|
|
endif
|
|
|
|
END_PROVIDER
|
|
|
|
|
2014-06-25 14:58:58 +02:00
|
|
|
subroutine Fock_mo_to_ao(FMO,LDFMO,FAO,LDFAO)
|
|
|
|
implicit none
|
|
|
|
integer, intent(in) :: LDFMO ! size(FMO,1)
|
|
|
|
integer, intent(in) :: LDFAO ! size(FAO,1)
|
|
|
|
double precision, intent(in) :: FMO(LDFMO,*)
|
|
|
|
double precision, intent(out) :: FAO(LDFAO,*)
|
|
|
|
|
|
|
|
double precision, allocatable :: T(:,:), M(:,:)
|
|
|
|
! F_ao = S C F_mo C^t S
|
2014-07-16 15:31:02 +02:00
|
|
|
allocate (T(ao_num_align,ao_num),M(ao_num_align,ao_num))
|
2014-06-25 14:58:58 +02:00
|
|
|
call dgemm('N','N', ao_num,ao_num,ao_num, 1.d0, &
|
|
|
|
ao_overlap, size(ao_overlap,1), &
|
|
|
|
mo_coef, size(mo_coef,1), &
|
|
|
|
0.d0, &
|
|
|
|
M, size(M,1))
|
|
|
|
call dgemm('N','N', ao_num,mo_tot_num,mo_tot_num, 1.d0, &
|
|
|
|
M, size(M,1), &
|
|
|
|
FMO, size(FMO,1), &
|
|
|
|
0.d0, &
|
|
|
|
T, size(T,1))
|
|
|
|
call dgemm('N','T', mo_tot_num,ao_num,mo_tot_num, 1.d0, &
|
|
|
|
T, size(T,1), &
|
|
|
|
mo_coef, size(mo_coef,1), &
|
|
|
|
0.d0, &
|
|
|
|
M, size(M,1))
|
|
|
|
call dgemm('N','N', ao_num,ao_num,ao_num, 1.d0, &
|
|
|
|
M, size(M,1), &
|
|
|
|
ao_overlap, size(ao_overlap,1), &
|
|
|
|
0.d0, &
|
|
|
|
FAO, size(FAO,1))
|
|
|
|
deallocate(T,M)
|
|
|
|
end
|
|
|
|
|