10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00
QCaml/Utils/SphericalToCartesian.mli

26 lines
736 B
OCaml
Raw Normal View History

(** Conversion from spherical coordinate to cartesian corrdinates. *)
2018-05-30 01:15:45 +02:00
val matrix : AngularMomentum.t -> Lacaml.D.Mat.t
2018-05-09 20:02:49 +02:00
(** Returns a transformation matrix to rotate between the basis of atom-centered
spherical coordinates to x,y,z coordinates.
The first index of the result matrix is the index of the cartesian shell, as
obtained by the [index] function, and the second index is the index of the
spherical shell.
Example:
{[
SphericalToCartesian.matrix AngularMomentum.D ->
]}
*)
val index : nx:int -> ny:int -> nz:int -> int
2018-05-09 20:02:49 +02:00
(** Unique index given to a triplet of powers. Used to identify a cartesian shell.
Example:
{[
let nx, ny, nz = 3, 2, 1 in
SphericalToCartesian.index ~nx ~ny ~nz -> 8
2018-05-09 20:02:49 +02:00
]}
*)