10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-12 06:13:37 +02:00
QCaml/gaussian/lib/contracted_shell_pair_couple.ml

76 lines
2.2 KiB
OCaml
Raw Normal View History

2020-10-09 09:47:57 +02:00
open Common
2018-03-22 00:29:14 +01:00
2018-03-21 15:01:39 +01:00
type t =
{
2020-09-26 12:02:53 +02:00
coefs_and_shell_pair_couples : (float * Primitive_shell_pair_couple.t) list ;
shell_pair_p: Contracted_shell_pair.t ;
shell_pair_q: Contracted_shell_pair.t ;
shell_a : Contracted_shell.t ;
shell_b : Contracted_shell.t ;
shell_c : Contracted_shell.t ;
shell_d : Contracted_shell.t ;
ang_mom : Angular_momentum.t ;
2018-03-21 15:01:39 +01:00
}
2020-09-26 12:02:53 +02:00
module Am = Angular_momentum
2018-03-21 15:01:39 +01:00
module Co = Coordinate
2020-09-26 12:02:53 +02:00
module Cs = Contracted_shell
module Csp = Contracted_shell_pair
module Pspc = Primitive_shell_pair_couple
2018-03-21 15:01:39 +01:00
let make ?(cutoff=Constants.epsilon) shell_pair_p shell_pair_q =
let ang_mom =
Am.(Csp.ang_mom shell_pair_p + Csp.ang_mom shell_pair_q)
in
let shell_a = Csp.shell_a shell_pair_p
and shell_b = Csp.shell_b shell_pair_p
and shell_c = Csp.shell_a shell_pair_q
and shell_d = Csp.shell_b shell_pair_q
in
let cutoff = 1.e-3 *. cutoff in
let coefs_and_shell_pair_couples =
2020-03-26 17:43:11 +01:00
List.concat_map (fun (c_ab, sp_ab) ->
2018-03-21 15:01:39 +01:00
List.map (fun (c_cd, sp_cd) ->
let coef_prod = c_ab *. c_cd in
if abs_float coef_prod < cutoff then None
else Some (coef_prod, Pspc.make sp_ab sp_cd)
) (Csp.coefs_and_shell_pairs shell_pair_q)
) (Csp.coefs_and_shell_pairs shell_pair_p)
2020-09-26 12:02:53 +02:00
|> Util.list_some
2018-03-21 15:01:39 +01:00
in
match coefs_and_shell_pair_couples with
| [] -> None
| _ -> Some { shell_pair_p ; shell_pair_q ; ang_mom ;
shell_a ; shell_b ; shell_c ; shell_d ;
coefs_and_shell_pair_couples ;
}
let coefs_and_shell_pair_couples t = t.coefs_and_shell_pair_couples
let monocentric t =
Csp.monocentric t.shell_pair_p && Csp.monocentric t.shell_pair_q &&
2018-03-21 19:43:49 +01:00
Cs.center (Csp.shell_a t.shell_pair_p) = Cs.center (Csp.shell_a t.shell_pair_q)
2018-03-21 15:01:39 +01:00
let ang_mom t = t.ang_mom
let shell_pair_p t = t.shell_pair_p
let shell_pair_q t = t.shell_pair_q
let shell_a t = t.shell_a
let shell_b t = t.shell_b
let shell_c t = t.shell_c
let shell_d t = t.shell_d
let zkey_array t =
match t.coefs_and_shell_pair_couples with
| (_,f)::_ -> Pspc.zkey_array f
| _ -> invalid_arg "ContractedShellPairCouple.zkey_array"
let norm_scales t =
match t.coefs_and_shell_pair_couples with
| (_,f)::_ -> Pspc.norm_scales f
| _ -> invalid_arg "ContractedShellPairCouple.norm_scales"