10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-19 19:52:20 +02:00
QuantumPackage/ocaml/Units.ml
2019-01-25 11:39:31 +01:00

12 lines
121 B
OCaml

type units =
| Bohr
| Angstrom
;;
let angstrom_to_bohr = 1. /. 0.52917721092
let bohr_to_angstrom = 0.52917721092
;;