mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-09 15:03:37 +01:00
added the keyword for point charges in ao_one_e_ints
This commit is contained in:
parent
8ea1b5c023
commit
ec05b8c329
@ -124,3 +124,8 @@ doc: Coordinate of each point charge.
|
|||||||
interface: ezfio
|
interface: ezfio
|
||||||
size: (ao_one_e_ints.n_pts_charge,3)
|
size: (ao_one_e_ints.n_pts_charge,3)
|
||||||
|
|
||||||
|
[point_charges]
|
||||||
|
type: logical
|
||||||
|
doc: If |true|, point charges (see ao_one_e_ints/write_pt_charges.py) are added to the one-electron potential
|
||||||
|
interface: ezfio,provider,ocaml
|
||||||
|
default: False
|
||||||
|
@ -104,6 +104,9 @@ BEGIN_PROVIDER [ double precision, ao_integrals_n_e, (ao_num,ao_num)]
|
|||||||
IF(do_pseudo) THEN
|
IF(do_pseudo) THEN
|
||||||
ao_integrals_n_e += ao_pseudo_integrals
|
ao_integrals_n_e += ao_pseudo_integrals
|
||||||
ENDIF
|
ENDIF
|
||||||
|
IF(point_charges) THEN
|
||||||
|
ao_integrals_n_e += ao_integrals_pt_chrg
|
||||||
|
ENDIF
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user