mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-06 21:43:39 +01:00
Reset Huckel guess
This commit is contained in:
parent
e767d52725
commit
92ac2d2eea
@ -11,7 +11,6 @@ function run() {
|
||||
qp edit --check
|
||||
qp reset --mos
|
||||
qp set scf_utils n_it_scf_max 50
|
||||
qp set ao_one_e_ints lin_dep_cutoff 1.e-50
|
||||
qp run scf
|
||||
# qp set_frozen_core
|
||||
energy="$(ezfio get hartree_fock energy)"
|
||||
|
@ -14,11 +14,9 @@ subroutine huckel_guess
|
||||
allocate (A(ao_num, ao_num))
|
||||
A = 0.d0
|
||||
do j=1,ao_num
|
||||
if (ao_overlap(j,j) == 0.d0) cycle
|
||||
do i=1,ao_num
|
||||
if (ao_overlap(i,i) == 0.d0) cycle
|
||||
A(i,j) = c * ao_overlap(i,j)/(ao_overlap(i,i)*ao_overlap(j,j)) * &
|
||||
(ao_one_e_integrals_diag(i) + ao_one_e_integrals_diag(j))
|
||||
A(i,j) = c * ao_overlap(i,j) * &
|
||||
(ao_one_e_integrals_diag(i) + ao_one_e_integrals_diag(j) )
|
||||
enddo
|
||||
A(j,j) = ao_one_e_integrals_diag(j) + ao_two_e_integral_alpha(j,j)
|
||||
enddo
|
||||
|
Loading…
Reference in New Issue
Block a user