10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-16 16:10:22 +02:00
QCaml/common/lib/constants.ml

22 lines
427 B
OCaml
Raw Normal View History

2024-01-17 10:30:24 +01:00
(** Thresholds *)
2020-12-28 01:55:03 +01:00
let epsilon = 2.e-15
2020-12-17 19:52:09 +01:00
let integrals_cutoff = epsilon
2020-12-28 01:55:03 +01:00
2024-01-17 10:30:24 +01:00
(** Mathematical constants *)
2020-12-28 01:55:03 +01:00
2020-12-27 16:55:53 +01:00
let pi = acos (-1.)
let two_pi = 2. *. pi
let sq_pi = sqrt pi
2018-02-01 19:06:29 +01:00
let sq_pi_over_two = sq_pi *. 0.5
2020-12-27 16:55:53 +01:00
let pi_inv = 1. /. pi
let two_over_sq_pi = 2. /. sq_pi
2020-12-28 01:55:03 +01:00
2024-01-17 10:30:24 +01:00
(** Physical constants *)
2020-12-28 01:55:03 +01:00
2018-05-30 20:16:18 +02:00
let a0 = 0.529_177_210_67
2018-02-13 17:36:25 +01:00
let a0_inv = 1. /. a0
2018-05-30 20:16:18 +02:00
let ha_to_ev = 27.211_386_02
let ev_to_ha = 1. /. ha_to_ev