10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-26 15:12:14 +02:00
quantum_package/src/MOGuess/H_CORE_guess.irp.f

13 lines
336 B
FortranFixed
Raw Normal View History

2014-04-17 23:50:51 +02:00
program H_CORE_guess
implicit none
character*(64) :: label
mo_coef = ao_ortho_lowdin_coef
TOUCH mo_coef
2014-10-30 12:08:18 +01:00
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)
2015-01-06 19:12:17 +01:00
print *, 'save mos'
2014-04-17 23:50:51 +02:00
call save_mos
end