10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 03:15:19 +02:00
QCaml/particles/zmatrix.org
2020-12-29 02:29:43 +01:00

9.5 KiB

Z-matrix

Z-matrix representation of nuclear coordinates.

Type

type t

Conversion

val of_string      : string -> t
val to_xyz         : t -> (Element.t * float * float * float) array
val to_xyz_string  : t -> string
of_string Reads a z-matrix from a string
to_xyz Converts to xyz format, as in the Nuclei module
to_xyz_string Converts to xyz format, as a string

Printers

val pp : Format.formatter -> t -> unit