10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 03:15:19 +02:00
QCaml/Nuclei/Element.mli

26 lines
702 B
OCaml
Raw Normal View History

2018-01-02 22:02:01 +01:00
exception ElementError of string
2018-01-17 15:56:57 +01:00
type t =
|X
|H |He
|Li|Be |B |C |N |O |F |Ne
|Na|Mg |Al|Si|P |S |Cl|Ar
|K |Ca|Sc|Ti|V |Cr|Mn|Fe|Co|Ni|Cu|Zn|Ga|Ge|As|Se|Br|Kr
|Rb|Sr|Y |Zr|Nb|Mo|Tc|Ru|Rh|Pd|Ag|Cd|In|Sn|Sb|Te|I |Xe
|Pt
2018-01-02 22:02:01 +01:00
(** String conversion functions *)
val of_string : string -> t
val to_string : t -> string
val to_long_string : t -> string
(** Properties *)
2018-01-17 15:56:57 +01:00
val to_int : t -> int
val of_int : int -> t
2018-01-02 22:02:01 +01:00
val to_charge : t -> Charge.t
val of_charge : Charge.t -> t
val covalent_radius : t -> Radius.t
val vdw_radius : t -> Radius.t
val mass : t -> Mass.t