10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-16 16:10:22 +02:00
QCaml/ao/lib/basis.mli

53 lines
1.3 KiB
OCaml
Raw Normal View History

2021-01-28 00:34:26 +01:00
(* Types
*
* <<<~Basis.t~>>> *)
2021-01-04 23:15:27 +01:00
(* [[file:~/QCaml/ao/basis.org::*Types][Types:1]] *)
2021-01-04 09:19:35 +01:00
type t
type ao = Ao_dim.t
2020-10-02 23:35:56 +02:00
2020-10-09 09:47:57 +02:00
open Common
open Particles
open Operators
open Linear_algebra
2021-01-04 23:15:27 +01:00
(* Types:1 ends here *)
2020-10-07 17:54:15 +02:00
2021-01-04 09:19:35 +01:00
(* Conversions *)
2020-10-07 17:54:15 +02:00
2021-01-04 09:19:35 +01:00
(* [[file:~/QCaml/ao/basis.org::*Conversions][Conversions:1]] *)
val of_nuclei_and_basis_filename :
2021-01-28 00:34:26 +01:00
?kind:[> `Gaussian ] ->
?operators:Operator.t list ->
?cartesian:bool ->
nuclei:Nuclei.t ->
string ->
t
2021-01-04 09:19:35 +01:00
(* Conversions:1 ends here *)
(* Access *)
(* [[file:~/QCaml/ao/basis.org::*Access][Access:1]] *)
val size : t -> int
val ao_basis : t -> Basis_poly.t
val overlap : t -> (ao,ao) Matrix.t
val multipole : t -> string -> (ao,ao) Matrix.t
val ortho : t -> (ao,'a) Matrix.t
val eN_ints : t -> (ao,ao) Matrix.t
val kin_ints : t -> (ao,ao) Matrix.t
val ee_ints : t -> ao Four_idx_storage.t
val ee_lr_ints : t -> ao Four_idx_storage.t
val f12_ints : t -> ao Four_idx_storage.t
2020-10-18 01:58:22 +02:00
val f12_over_r12_ints : t -> ao Four_idx_storage.t
2021-01-04 09:19:35 +01:00
val cartesian : t -> bool
val values : t -> Coordinate.t -> ao Vector.t
(* Access:1 ends here *)
2020-10-07 17:54:15 +02:00
2021-01-04 09:19:35 +01:00
(* Printers *)
2020-10-07 17:54:15 +02:00
2021-01-04 09:19:35 +01:00
(* [[file:~/QCaml/ao/basis.org::*Printers][Printers:1]] *)
val pp : Format.formatter -> t -> unit
(* Printers:1 ends here *)