10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-11 22:03:37 +02:00
QCaml/gaussian_integrals/lib/electron_nucleus.mli

18 lines
425 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
$$ %}
*)
2020-10-02 18:55:19 +02:00
include module type of Matrix_on_basis
2020-10-09 09:47:57 +02:00
open Particles
2020-10-10 10:59:09 +02:00
open Gaussian
2020-09-26 12:02:53 +02:00
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