10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-30 00:44:37 +02:00
QuantumPackage/src/mo_one_e_ints/pot_mo_ints_cplx.irp.f

27 lines
900 B
FortranFixed
Raw Normal View History

2020-02-20 22:38:02 +01:00
BEGIN_PROVIDER [complex*16, mo_integrals_n_e_complex, (mo_num,mo_num)]
2020-01-29 21:15:48 +01:00
implicit none
BEGIN_DOC
! Kinetic energy integrals in the MO basis
END_DOC
integer :: i,j
if (read_mo_integrals_e_n) then
2020-02-20 22:38:02 +01:00
call ezfio_get_mo_one_e_ints_mo_integrals_e_n_complex(mo_integrals_n_e_complex)
2020-01-29 21:15:48 +01:00
print *, 'MO N-e integrals read from disk'
else
call ao_to_mo_complex( &
ao_integrals_n_e_complex, &
size(ao_integrals_n_e_complex,1), &
mo_integrals_n_e_complex, &
size(mo_integrals_n_e_complex,1) &
)
endif
if (write_mo_integrals_e_n) then
2020-02-20 22:38:02 +01:00
call ezfio_set_mo_one_e_ints_mo_integrals_e_n_complex(mo_integrals_n_e_complex)
2020-01-29 21:15:48 +01:00
print *, 'MO N-e integrals written to disk'
endif
END_PROVIDER