10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-18 00:43:36 +02:00
quantum_package/plugins/Hartree_Fock/huckel.irp.f

35 lines
1.1 KiB
Fortran
Raw Normal View History

2015-06-17 18:22:08 +02:00
subroutine huckel_guess
implicit none
BEGIN_DOC
! Build the MOs using the extended Huckel model
END_DOC
integer :: i,j
double precision :: accu
2015-06-17 18:22:08 +02:00
double precision :: c
character*(64) :: label
label = "Guess"
call mo_as_eigvectors_of_mo_matrix(mo_mono_elec_integral, &
2015-07-06 14:06:49 +02:00
size(mo_mono_elec_integral,1), &
2017-09-13 09:06:32 +02:00
size(mo_mono_elec_integral,2),label,1,.false.)
2015-06-17 18:22:08 +02:00
TOUCH mo_coef
c = 0.5d0 * 1.75d0
2015-07-06 14:06:49 +02:00
2015-06-17 18:22:08 +02:00
do j=1,ao_num
do i=1,ao_num
2017-09-13 09:06:32 +02:00
Fock_matrix_ao_alpha(i,j) = c*ao_overlap(i,j)*(ao_mono_elec_integral_diag(i) + &
ao_mono_elec_integral_diag(j))
Fock_matrix_ao_beta (i,j) = Fock_matrix_ao_alpha(i,j)
2015-06-17 18:22:08 +02:00
enddo
2017-09-13 09:06:32 +02:00
Fock_matrix_ao_alpha(j,j) = ao_mono_elec_integral(j,j) + ao_bi_elec_integral_alpha(j,j)
Fock_matrix_ao_beta (j,j) = Fock_matrix_ao_alpha(j,j)
2015-06-17 18:22:08 +02:00
enddo
2017-09-13 09:06:32 +02:00
TOUCH Fock_matrix_ao_alpha Fock_matrix_ao_beta
2015-06-17 18:22:08 +02:00
mo_coef = eigenvectors_fock_matrix_mo
SOFT_TOUCH mo_coef
call save_mos
2017-09-13 09:06:32 +02:00
print *, 'E=', HF_energy
2015-06-17 18:22:08 +02:00
end