mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 22:53:41 +01:00
39 lines
830 B
OCaml
39 lines
830 B
OCaml
(** Data structure for Atomic Orbitals. *)
|
|
|
|
type t
|
|
|
|
(** {1 Accessors} *)
|
|
|
|
val basis : t -> Basis.t
|
|
(** One-electron basis set *)
|
|
|
|
val overlap : t -> Overlap.t
|
|
(** Overlap matrix *)
|
|
|
|
val ortho : t -> Orthonormalization.t
|
|
(** Orthonormalization matrix of the overlap *)
|
|
|
|
val eN_ints : t -> NucInt.t
|
|
(** Electron-nucleus potential integrals *)
|
|
|
|
val ee_ints : t -> ERI.t
|
|
(** Electron-electron potential integrals *)
|
|
|
|
val kin_ints : t -> KinInt.t
|
|
(** Kinetic energy integrals *)
|
|
|
|
val cartesian : t -> bool
|
|
(** If true, use cartesian Gaussians (6d, 10f, ...) *)
|
|
|
|
|
|
(** {1 Creators} *)
|
|
|
|
val make : cartesian:bool -> basis:Basis.t -> Nuclei.t -> t
|
|
(** Creates the data structure for atomic orbitals from a {Basis.t} and the
|
|
molecular geometry {Nuclei.t} *)
|
|
|
|
|
|
(** {2 Tests} *)
|
|
|
|
val test_case : t -> unit Alcotest.test_case list
|