mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-08 14:33:38 +01:00
23 lines
740 B
Fortran
23 lines
740 B
Fortran
BEGIN_PROVIDER [ double precision, mo_one_e_integrals,(mo_num,mo_num)]
|
|
implicit none
|
|
integer :: i,j,n,l
|
|
BEGIN_DOC
|
|
! array of the one-electron Hamiltonian on the |MO| basis :
|
|
! sum of the kinetic and nuclear electronic potentials (and pseudo potential if needed)
|
|
END_DOC
|
|
print*,'Providing the one-electron integrals'
|
|
|
|
IF (read_mo_one_e_integrals) THEN
|
|
call ezfio_get_mo_one_e_ints_mo_one_e_integrals(mo_one_e_integrals)
|
|
ELSE
|
|
mo_one_e_integrals = mo_integrals_n_e + mo_kinetic_integrals
|
|
|
|
ENDIF
|
|
|
|
IF (write_mo_one_e_integrals) THEN
|
|
call ezfio_set_mo_one_e_ints_mo_one_e_integrals(mo_one_e_integrals)
|
|
print *, 'MO one-e integrals written to disk'
|
|
ENDIF
|
|
|
|
END_PROVIDER
|