mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-12-23 12:03:30 +01:00
printing
This commit is contained in:
parent
d44a22f3d8
commit
82b6bccc37
@ -5,10 +5,12 @@ BEGIN_PROVIDER [complex*16, mo_kinetic_integrals_complex, (mo_num,mo_num)]
|
|||||||
END_DOC
|
END_DOC
|
||||||
integer :: i,j
|
integer :: i,j
|
||||||
|
|
||||||
|
print *, 'Providing MO kinetic integrals'
|
||||||
if (read_mo_integrals_kinetic) then
|
if (read_mo_integrals_kinetic) then
|
||||||
call ezfio_get_mo_one_e_ints_mo_integrals_kinetic_complex(mo_kinetic_integrals_complex)
|
call ezfio_get_mo_one_e_ints_mo_integrals_kinetic_complex(mo_kinetic_integrals_complex)
|
||||||
print *, 'MO kinetic integrals read from disk'
|
print *, 'MO kinetic integrals read from disk'
|
||||||
else
|
else
|
||||||
|
print *, 'Providing MO kinetic integrals from AO kinetic integrals'
|
||||||
call ao_to_mo_complex( &
|
call ao_to_mo_complex( &
|
||||||
ao_kinetic_integrals_complex, &
|
ao_kinetic_integrals_complex, &
|
||||||
size(ao_kinetic_integrals_complex,1), &
|
size(ao_kinetic_integrals_complex,1), &
|
||||||
|
@ -12,7 +12,7 @@ BEGIN_PROVIDER [ complex*16, mo_one_e_integrals_complex,(mo_num,mo_num)]
|
|||||||
ELSE
|
ELSE
|
||||||
mo_one_e_integrals_complex = mo_integrals_n_e_complex + mo_kinetic_integrals_complex
|
mo_one_e_integrals_complex = mo_integrals_n_e_complex + mo_kinetic_integrals_complex
|
||||||
|
|
||||||
IF (DO_PSEUDO) THEN
|
IF (do_pseudo) THEN
|
||||||
mo_one_e_integrals_complex += mo_pseudo_integrals_complex
|
mo_one_e_integrals_complex += mo_pseudo_integrals_complex
|
||||||
ENDIF
|
ENDIF
|
||||||
|
|
||||||
@ -22,6 +22,7 @@ BEGIN_PROVIDER [ complex*16, mo_one_e_integrals_complex,(mo_num,mo_num)]
|
|||||||
call ezfio_set_mo_one_e_ints_mo_one_e_integrals_complex(mo_one_e_integrals_complex)
|
call ezfio_set_mo_one_e_ints_mo_one_e_integrals_complex(mo_one_e_integrals_complex)
|
||||||
print *, 'MO one-e integrals written to disk'
|
print *, 'MO one-e integrals written to disk'
|
||||||
ENDIF
|
ENDIF
|
||||||
|
print*,'Provided the one-electron integrals'
|
||||||
|
|
||||||
END_PROVIDER
|
END_PROVIDER
|
||||||
|
|
||||||
|
@ -5,10 +5,12 @@ BEGIN_PROVIDER [complex*16, mo_integrals_n_e_complex, (mo_num,mo_num)]
|
|||||||
END_DOC
|
END_DOC
|
||||||
integer :: i,j
|
integer :: i,j
|
||||||
|
|
||||||
|
print *, 'Providing MO N-e integrals'
|
||||||
if (read_mo_integrals_e_n) then
|
if (read_mo_integrals_e_n) then
|
||||||
call ezfio_get_mo_one_e_ints_mo_integrals_e_n_complex(mo_integrals_n_e_complex)
|
call ezfio_get_mo_one_e_ints_mo_integrals_e_n_complex(mo_integrals_n_e_complex)
|
||||||
print *, 'MO N-e integrals read from disk'
|
print *, 'MO N-e integrals read from disk'
|
||||||
else
|
else
|
||||||
|
print *, 'Providing MO N-e integrals from AO N-e integrals'
|
||||||
call ao_to_mo_complex( &
|
call ao_to_mo_complex( &
|
||||||
ao_integrals_n_e_complex, &
|
ao_integrals_n_e_complex, &
|
||||||
size(ao_integrals_n_e_complex,1), &
|
size(ao_integrals_n_e_complex,1), &
|
||||||
|
Loading…
Reference in New Issue
Block a user