QCaml/Basis/ContractedShellPair.ml

173 lines
4.1 KiB
OCaml
Raw Normal View History

2018-01-17 18:19:38 +01:00
open Util
2018-02-02 01:25:10 +01:00
open Constants
2018-01-17 18:19:38 +01:00
2018-02-08 01:00:54 +01:00
exception Null_contribution
2018-02-09 19:41:22 +01:00
type t =
{
2019-02-26 12:47:23 +01:00
coefs_and_shell_pairs : (float * PrimitiveShellPair.t) list;
2018-03-20 15:16:24 +01:00
shell_a : ContractedShell.t;
shell_b : ContractedShell.t;
2018-02-09 19:41:22 +01:00
}
2018-01-17 18:19:38 +01:00
2018-03-15 15:25:49 +01:00
module Am = AngularMomentum
module Co = Coordinate
module Cs = ContractedShell
module Ps = PrimitiveShell
module Psp = PrimitiveShellPair
2018-02-23 15:49:27 +01:00
2018-02-07 17:07:05 +01:00
(** Creates an contracted shell pair : an array of pairs of primitive shells.
A contracted shell with N functions combined with a contracted
shell with M functions generates a NxM array of shell pairs.
*)
2018-03-21 18:54:56 +01:00
let make ?(cutoff=Constants.epsilon) s_a s_b =
2018-03-15 15:25:49 +01:00
2018-03-20 14:11:31 +01:00
let make = Psp.create_make_of (Cs.primitives s_a).(0) (Cs.primitives s_b).(0) in
2018-03-15 15:25:49 +01:00
2018-03-20 19:02:58 +01:00
let coefs_and_shell_pairs =
2018-03-15 16:03:43 +01:00
Array.mapi (fun i p_a ->
2018-03-20 14:11:31 +01:00
let c_a = (Cs.coefficients s_a).(i) in
2018-03-15 19:11:59 +01:00
let make = make p_a in
2018-03-15 16:03:43 +01:00
Array.mapi (fun j p_b ->
2018-03-20 14:11:31 +01:00
let c_b = (Cs.coefficients s_b).(j) in
2018-03-15 16:03:43 +01:00
let coef = c_a *. c_b in
assert (coef <> 0.);
let cutoff = cutoff /. abs_float coef in
2018-03-20 14:11:31 +01:00
coef, make p_b cutoff) (Cs.primitives s_b)) (Cs.primitives s_a)
2018-02-09 19:41:22 +01:00
|> Array.to_list
|> Array.concat
|> Array.to_list
2018-03-15 16:03:43 +01:00
|> List.filter (function (_, Some _) -> true | _ -> false)
2018-03-20 19:02:58 +01:00
|> List.map (function (c, Some x) -> (c *. Psp.normalization x, x) | _ -> assert false)
2018-02-09 19:41:22 +01:00
in
2018-03-15 16:03:43 +01:00
2018-03-20 19:02:58 +01:00
match coefs_and_shell_pairs with
2018-03-20 18:20:40 +01:00
| [] -> None
2018-03-20 19:02:58 +01:00
| coefs_and_shell_pairs -> Some { shell_a = s_a ; shell_b = s_b ; coefs_and_shell_pairs }
2018-03-21 15:01:39 +01:00
2018-03-20 19:02:58 +01:00
let shell_a x = x.shell_a
let shell_b x = x.shell_b
let coefs_and_shell_pairs x = x.coefs_and_shell_pairs
let shell_pairs x =
List.map snd x.coefs_and_shell_pairs
|> Array.of_list
let coefficients x =
List.map fst x.coefs_and_shell_pairs
|> Array.of_list
let exponents_inv x =
List.map (fun (_,sp) -> Psp.exponent_inv sp) x.coefs_and_shell_pairs
|> Array.of_list
2018-03-21 15:01:39 +01:00
let a_minus_b x =
2018-03-20 19:02:58 +01:00
match x.coefs_and_shell_pairs with
| [] -> assert false
| (_,sp)::_ -> Psp.a_minus_b sp
2018-03-21 15:01:39 +01:00
let a_minus_b_sq x =
2018-03-20 19:02:58 +01:00
match x.coefs_and_shell_pairs with
| [] -> assert false
| (_,sp)::_ -> Psp.a_minus_b_sq sp
2018-03-21 15:01:39 +01:00
let ang_mom x =
2018-03-20 19:02:58 +01:00
match x.coefs_and_shell_pairs with
| [] -> assert false
2018-03-21 15:01:39 +01:00
| (_,sp)::_ -> Psp.ang_mom sp
2018-03-20 19:02:58 +01:00
let norm_scales x =
match x.coefs_and_shell_pairs with
| [] -> assert false
| (_,sp)::_ -> Psp.norm_scales sp
let monocentric x =
match x.coefs_and_shell_pairs with
| [] -> assert false
| (_,sp)::_ -> Psp.monocentric sp
2018-03-14 14:39:22 +01:00
2018-03-21 15:01:39 +01:00
2018-02-07 17:07:05 +01:00
(** Returns an integer characteristic of a contracted shell pair *)
2018-02-07 13:33:25 +01:00
let hash a =
2018-02-08 01:00:54 +01:00
Array.map Hashtbl.hash a
2018-02-07 13:33:25 +01:00
2018-02-07 17:07:05 +01:00
(** Comparison function, used for sorting *)
2018-02-07 13:33:25 +01:00
let cmp a b =
2018-02-08 01:00:54 +01:00
if a = b then 0
else if (Array.length a < Array.length b) then -1
else if (Array.length a > Array.length b) then 1
else
let out = ref 0 in
begin
try
for k=0 to (Array.length a - 1) do
if a.(k) < b.(k) then
(out := (-1); raise Not_found)
else if a.(k) > b.(k) then
(out := 1; raise Not_found);
done
with Not_found -> ();
end;
!out
(** The array of all shell pairs with their correspondance in the list
of contracted shells.
*)
2018-03-21 18:54:56 +01:00
let of_contracted_shell_array ?(cutoff=Constants.epsilon) basis =
2018-03-22 00:29:14 +01:00
let rec loop accu = function
2018-03-22 00:51:34 +01:00
| [] -> accu
2018-03-22 00:29:14 +01:00
| (s_a :: rest) as l ->
let new_accu =
(List.map (fun s_b -> make ~cutoff s_a s_b) l) :: accu
2019-09-10 18:39:14 +02:00
in (loop [@tailcall]) new_accu rest
2018-03-22 00:29:14 +01:00
in
2018-03-22 00:51:34 +01:00
loop [] (List.rev (Array.to_list basis))
2018-03-22 00:29:14 +01:00
|> List.concat
|> list_some
2018-02-07 13:33:25 +01:00
2018-02-08 01:00:54 +01:00
let equivalent x y =
(Array.length x = Array.length y) &&
2018-03-15 16:03:43 +01:00
let rec eqv = function
| 0 -> true
| k -> if Psp.equivalent x.(k) y.(k) then
2019-09-10 18:39:14 +02:00
(eqv [@tailcall]) (k-1)
2018-03-15 16:03:43 +01:00
else false
in eqv (Array.length x - 1)
2018-02-07 17:07:05 +01:00
(** A list of unique shell pairs *)
2018-02-08 01:00:54 +01:00
let unique sp =
let sp =
Array.to_list sp
|> Array.concat
|> Array.to_list
in
let rec aux accu = function
| [] -> accu
| x::rest ->
2019-09-10 18:39:14 +02:00
let newaccu =
try
ignore @@ List.find (fun y -> equivalent x y) accu;
accu
with Not_found -> (x::accu)
in
(aux [@tailcall]) newaccu rest
2018-02-08 01:00:54 +01:00
in
aux [] sp
2018-02-07 13:33:25 +01:00
2018-03-21 15:01:39 +01:00
let zkey_array x =
Am.zkey_array (Am.Doublet
Cs.(ang_mom x.shell_a, ang_mom x.shell_b)
)
2018-02-07 17:07:05 +01:00
2018-01-22 23:19:24 +01:00