10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-08-16 01:38:30 +02:00
QCaml/simulation/lib/simulation.mli
2020-10-07 17:54:15 +02:00

34 lines
716 B
OCaml

(* Contains the state of a simulation *)
open Qcaml_common
open Qcaml_particles
open Qcaml_ao_basis
open Qcaml_operators
type t
val nuclei : t -> Nuclei.t
(** Nuclear coordinates used in the smiulation *)
val charge : t -> Charge.t
(** Total charge (electrons + nuclei) *)
val electrons : t -> Electrons.t
(** Electrons used in the simulation *)
val ao_basis : t -> Ao_basis.t
(** Atomic basis set *)
val nuclear_repulsion : t -> float
(** Nuclear repulsion energy *)
val operators : t -> Operator.t list
(** List of extra operators (range-separation, f12, etc) *)
(** {1 Creation} *)
val make : ?multiplicity:int -> ?charge:int ->
?operators:Operator.t list-> nuclei:Nuclei.t ->
Ao_basis.t -> t