QCaml/Basis/NucInt.mli

15 lines
393 B
OCaml
Raw Normal View History

2018-06-13 19:03:42 +02:00
(** Electron-Nucleus attractive potential integrals, expressed as a matrix in a {!Basis.t}.
2018-06-13 17:49:58 +02:00
{% $$
V_{ij} = \left \langle \chi_i \left| \sum_A \frac{-Z_A}{ | \mathbf{r} - \mathbf{R}_A |} \right| \chi_j \right \rangle
$$ %}
*)
2018-06-13 19:03:42 +02:00
include module type of MatrixOnBasis
2018-06-13 17:49:58 +02:00
val of_basis_nuclei : basis:Basis.t -> Nuclei.t -> t
(** Build from a {Basis.t} and the nuclei (coordinates and charges). *)
2018-06-13 19:03:42 +02:00