qp2/ocaml/Units.ml

12 lines
127 B
OCaml
Raw Normal View History

2019-01-25 11:39:31 +01:00
type units =
| Bohr
| Angstrom
;;
let angstrom_to_bohr = 1. /. 0.52917721067121
let bohr_to_angstrom = 0.52917721067121
2019-01-25 11:39:31 +01:00
;;