mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 22:13:38 +01:00
removed stupid bug in scf_utils/scf_density_matrix_ao.irp.f in the case of elec_beta_num==0
This commit is contained in:
parent
25201fc4be
commit
17d20c6880
@ -68,5 +68,5 @@ interface: ezfio,provider,ocaml
|
||||
type: Threshold
|
||||
doc: Thresholds of non-symetric Davidson's algorithm
|
||||
interface: ezfio,provider,ocaml
|
||||
default: 1.e-5
|
||||
default: 1.e-6
|
||||
|
||||
|
@ -3,11 +3,13 @@ BEGIN_PROVIDER [double precision, SCF_density_matrix_ao_alpha, (ao_num,ao_num) ]
|
||||
BEGIN_DOC
|
||||
! $C.C^t$ over $\alpha$ MOs
|
||||
END_DOC
|
||||
|
||||
SCF_density_matrix_ao_alpha = 0.d0
|
||||
if(elec_alpha_num.gt.0)then
|
||||
call dgemm('N','T',ao_num,ao_num,elec_alpha_num,1.d0, &
|
||||
mo_coef, size(mo_coef,1), &
|
||||
mo_coef, size(mo_coef,1), 0.d0, &
|
||||
SCF_density_matrix_ao_alpha, size(SCF_density_matrix_ao_alpha,1))
|
||||
endif
|
||||
|
||||
END_PROVIDER
|
||||
|
||||
@ -16,11 +18,13 @@ BEGIN_PROVIDER [ double precision, SCF_density_matrix_ao_beta, (ao_num,ao_num)
|
||||
BEGIN_DOC
|
||||
! $C.C^t$ over $\beta$ MOs
|
||||
END_DOC
|
||||
|
||||
SCF_density_matrix_ao_beta = 0.d0
|
||||
if(elec_beta_num.gt.0)then
|
||||
call dgemm('N','T',ao_num,ao_num,elec_beta_num,1.d0, &
|
||||
mo_coef, size(mo_coef,1), &
|
||||
mo_coef, size(mo_coef,1), 0.d0, &
|
||||
SCF_density_matrix_ao_beta, size(SCF_density_matrix_ao_beta,1))
|
||||
endif
|
||||
|
||||
END_PROVIDER
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user