2015-09-22 13:26:20 +02:00
|
|
|
BEGIN_PROVIDER [ double precision, ao_mono_elec_integral,(ao_num_align,ao_num)]
|
|
|
|
&BEGIN_PROVIDER [ double precision, ao_mono_elec_integral_diag,(ao_num)]
|
2014-04-24 12:31:15 +02:00
|
|
|
implicit none
|
|
|
|
integer :: i,j,n,l
|
|
|
|
BEGIN_DOC
|
|
|
|
! array of the mono electronic hamiltonian on the AOs basis
|
|
|
|
! : sum of the kinetic and nuclear electronic potential
|
|
|
|
END_DOC
|
|
|
|
do j = 1, ao_num
|
2015-09-22 13:26:20 +02:00
|
|
|
!DIR$ VECTOR ALIGNED
|
2014-04-24 12:31:15 +02:00
|
|
|
do i = 1, ao_num
|
2015-05-11 17:58:42 +02:00
|
|
|
ao_mono_elec_integral(i,j) = ao_nucl_elec_integral(i,j) + ao_kinetic_integral(i,j) + ao_pseudo_integral(i,j)
|
2014-04-24 12:31:15 +02:00
|
|
|
enddo
|
2015-09-22 13:26:20 +02:00
|
|
|
ao_mono_elec_integral_diag(j) = ao_mono_elec_integral(j,j)
|
2014-04-24 12:31:15 +02:00
|
|
|
enddo
|
|
|
|
END_PROVIDER
|
|
|
|
|