mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
35 lines
922 B
Fortran
35 lines
922 B
Fortran
subroutine huckel_guess
|
|
implicit none
|
|
BEGIN_DOC
|
|
! Build the MOs using the extended Huckel model
|
|
END_DOC
|
|
integer :: i,j
|
|
double precision :: accu
|
|
double precision :: c
|
|
character*(64) :: label
|
|
double precision, allocatable :: A(:,:)
|
|
label = "Guess"
|
|
c = 0.5d0 * 1.75d0
|
|
|
|
allocate (A(ao_num, ao_num))
|
|
A = 0.d0
|
|
do j=1,ao_num
|
|
do i=1,ao_num
|
|
A(i,j) = c * ao_overlap(i,j) * (ao_mono_elec_integral_diag(i) + ao_mono_elec_integral_diag(j))
|
|
enddo
|
|
A(j,j) = ao_mono_elec_integral_diag(j) + ao_bi_elec_integral_alpha(j,j)
|
|
enddo
|
|
|
|
Fock_matrix_ao_alpha(1:ao_num,1:ao_num) = A(1:ao_num,1:ao_num)
|
|
Fock_matrix_ao_beta (1:ao_num,1:ao_num) = A(1:ao_num,1:ao_num)
|
|
|
|
! TOUCH mo_coef
|
|
|
|
TOUCH Fock_matrix_ao_alpha Fock_matrix_ao_beta
|
|
mo_coef = eigenvectors_fock_matrix_mo
|
|
SOFT_TOUCH mo_coef
|
|
call save_mos
|
|
deallocate(A)
|
|
|
|
end
|