mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-18 20:12:26 +01:00
34 lines
716 B
OCaml
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
|
|
|