mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-19 04:22:36 +01:00
16 lines
512 B
Fortran
16 lines
512 B
Fortran
program H_CORE_guess
|
|
BEGIN_DOC
|
|
! Produce `H_core` MO orbital
|
|
! output: mo_basis.mo_tot_num mo_basis.mo_label mo_basis.ao_md5 mo_basis.mo_coef mo_basis.mo_occ
|
|
END_DOC
|
|
implicit none
|
|
character*(64) :: label
|
|
label = "Guess"
|
|
call mo_as_eigvectors_of_mo_matrix(mo_mono_elec_integral, &
|
|
size(mo_mono_elec_integral,1), &
|
|
size(mo_mono_elec_integral,2),label,1)
|
|
print *, 'save mos'
|
|
call save_mos
|
|
|
|
end
|