10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-21 04:32:05 +02:00
QCaml/Basis/TwoElectronRR.ml

408 lines
17 KiB
OCaml
Raw Normal View History

2018-01-18 23:42:48 +01:00
open Util
2018-02-02 01:25:10 +01:00
open Constants
2018-01-18 23:42:48 +01:00
2018-01-23 00:48:45 +01:00
let cutoff2 = cutoff *. cutoff
2018-02-01 16:09:04 +01:00
let debug = false
2018-01-23 00:48:45 +01:00
exception NullQuartet
2018-01-18 23:42:48 +01:00
(** Horizontal and Vertical Recurrence Relations (HVRR) *)
2018-01-31 14:37:51 +01:00
let hvrr_two_e (angMom_a, angMom_b, angMom_c, angMom_d)
2018-01-18 23:42:48 +01:00
(totAngMom_a, totAngMom_b, totAngMom_c, totAngMom_d)
(maxm, zero_m_array)
(expo_b, expo_d)
(expo_inv_p, expo_inv_q)
(center_ab, center_cd, center_pq)
2018-02-02 01:25:10 +01:00
map_1d map_2d
2018-01-18 23:42:48 +01:00
=
2018-02-02 01:25:10 +01:00
(* 2_011_273 *) let totAngMom_a = Angular_momentum.to_int totAngMom_a
2018-01-18 23:42:48 +01:00
and totAngMom_b = Angular_momentum.to_int totAngMom_b
and totAngMom_c = Angular_momentum.to_int totAngMom_c
and totAngMom_d = Angular_momentum.to_int totAngMom_d
in
2018-01-31 14:37:51 +01:00
let maxm = totAngMom_a + totAngMom_b + totAngMom_c + totAngMom_d in
let empty = Array.make (maxm+1) 0.
in
2018-02-01 16:09:04 +01:00
if debug then begin
Printf.printf "\n---- %d %d %d %d ----\n" totAngMom_a totAngMom_b totAngMom_c totAngMom_d;
Printf.printf "%d %d %d\n" angMom_a.(0) angMom_a.(1) angMom_a.(2) ;
Printf.printf "%d %d %d\n" angMom_b.(0) angMom_b.(1) angMom_b.(2) ;
Printf.printf "%d %d %d\n" angMom_c.(0) angMom_c.(1) angMom_c.(2) ;
Printf.printf "%d %d %d\n" angMom_d.(0) angMom_d.(1) angMom_d.(2) ;
Printf.printf "%f %f %f %f\n%f %f %f\n%f %f %f\n%f %f %f\n" expo_b expo_d
end
expo_inv_p expo_inv_q
(Coordinate.coord center_ab 0) (Coordinate.coord center_ab 1) (Coordinate.coord center_ab 2)
(Coordinate.coord center_cd 0) (Coordinate.coord center_cd 1) (Coordinate.coord center_cd 2)
(Coordinate.coord center_pq 0) (Coordinate.coord center_pq 1) (Coordinate.coord center_pq 2);
2018-01-18 23:42:48 +01:00
(** Vertical recurrence relations *)
2018-02-01 16:09:04 +01:00
let rec vrr0 angMom_a totAngMom_a =
2018-02-02 01:25:10 +01:00
(* 1_137_164 *) if debug then
2018-02-01 16:09:04 +01:00
Printf.printf "vrr0: %d : %d %d %d\n" totAngMom_a angMom_a.(0) angMom_a.(1) angMom_a.(2);
match totAngMom_a with
2018-02-02 01:25:10 +01:00
| 0 -> (* 66_288 *) zero_m_array
2018-02-01 16:09:04 +01:00
| _ ->
2018-02-02 01:25:10 +01:00
(* 1_070_876 *) let maxsze = maxm+1 in
2018-01-24 02:14:37 +01:00
let key = Zkey.of_int_tuple (Zkey.Three
(angMom_a.(0)+1, angMom_a.(1)+1, angMom_a.(2)+1) )
2018-01-23 00:48:45 +01:00
in
2018-01-18 23:42:48 +01:00
2018-02-02 01:25:10 +01:00
try Zmap.find map_1d key with
2018-02-01 16:09:04 +01:00
| Not_found ->
let result =
2018-02-02 01:25:10 +01:00
let am = [| angMom_a.(0) ; angMom_a.(1) ; angMom_a.(2) |] in
2018-02-01 16:09:04 +01:00
let xyz =
match angMom_a with
2018-02-02 01:25:10 +01:00
| [|_;0;0|] -> (* 28_336 *) 0
| [|_;_;0|] -> (* 52_221 *) 1
| _ -> (* 87_215 *) 2
2018-02-01 16:09:04 +01:00
in
am.(xyz) <- am.(xyz) - 1;
if am.(xyz) < 0 then empty else
let v1 =
vrr0 am (totAngMom_a-1)
in
let f1 = expo_inv_p *. (Coordinate.coord center_pq xyz)
and f2 = expo_b *. expo_inv_p *. (Coordinate.coord center_ab xyz)
in
2018-02-02 01:25:10 +01:00
if am.(xyz) < 1 then
Array.init maxsze (fun m ->
(* 544_860 *) if m = maxm then 0. else (f1 *. v1.(m+1) ) -. f2 *. v1.(m) )
2018-02-01 16:09:04 +01:00
else
let f3 = (float_of_int am.(xyz)) *. expo_inv_p *. 0.5 in
2018-02-02 01:25:10 +01:00
let amm = [| angMom_a.(0) ; angMom_a.(1) ; angMom_a.(2) |] in
let () = amm.(xyz) <- amm.(xyz) - 2 in
2018-02-01 16:09:04 +01:00
let v3 =
vrr0 amm (totAngMom_a-2)
in
2018-02-02 01:25:10 +01:00
Array.init maxsze (fun m ->
(* 484_257 *) (if m = maxm then 0. else
(f1 *. v1.(m+1) ) -. f2 *. v1.(m) )
+. f3 *. (v3.(m) +. if m = maxm then 0. else
2018-02-01 16:09:04 +01:00
expo_inv_p *. v3.(m+1))
)
2018-02-02 01:25:10 +01:00
in Zmap.add map_1d key result;
2018-01-23 00:48:45 +01:00
result
2018-01-18 23:42:48 +01:00
2018-02-01 16:09:04 +01:00
2018-01-31 14:37:51 +01:00
and vrr angMom_a angMom_c totAngMom_a totAngMom_c =
2018-01-24 16:29:48 +01:00
2018-02-02 01:25:10 +01:00
(* 11_580_843 *) if debug then
2018-02-01 16:09:04 +01:00
Printf.printf "vrr : %d %d : %d %d %d %d %d %d\n" totAngMom_a totAngMom_c angMom_a.(0) angMom_a.(1) angMom_a.(2) angMom_c.(0) angMom_c.(1) angMom_c.(2);
2018-01-24 16:29:48 +01:00
match (totAngMom_a, totAngMom_c) with
2018-02-02 01:25:10 +01:00
| (i,0) -> (* 959_629 *) if (i>0) then vrr0 angMom_a totAngMom_a else zero_m_array
2018-01-23 00:48:45 +01:00
| (_,_) ->
2018-01-18 23:42:48 +01:00
2018-02-02 01:25:10 +01:00
(* 10_621_214 *) let maxsze = maxm+1 in
2018-01-24 02:14:37 +01:00
let key = Zkey.of_int_tuple (Zkey.Six
((angMom_a.(0)+1, angMom_a.(1)+1, angMom_a.(2)+1),
(angMom_c.(0)+1, angMom_c.(1)+1, angMom_c.(2)+1)) )
2018-01-23 00:48:45 +01:00
in
2018-01-18 23:42:48 +01:00
2018-02-02 01:25:10 +01:00
try Zmap.find map_2d key with
2018-02-01 16:09:04 +01:00
| Not_found ->
let result =
2018-02-02 01:25:10 +01:00
let cm = [| angMom_c.(0) ; angMom_c.(1) ; angMom_c.(2) |] in
let xyz =
2018-01-23 00:48:45 +01:00
match angMom_c with
2018-02-02 01:25:10 +01:00
| [|_;0;0|] -> (* 321_984 *) 0
| [|_;_;0|] -> (* 612_002 *) 1
| _ -> (* 1_067_324 *) 2
2018-01-23 00:48:45 +01:00
in
cm.(xyz) <- cm.(xyz) - 1;
2018-01-31 14:37:51 +01:00
if cm.(xyz) < 0 then empty else
let f1 =
-. expo_d *. expo_inv_q *. (Coordinate.coord center_cd xyz)
in
let f2 =
expo_inv_q *. (Coordinate.coord center_pq xyz)
in
let result =
if ( (abs_float f1 < cutoff) && (abs_float f2 < cutoff) ) then empty else
let v1 =
vrr angMom_a cm totAngMom_a (totAngMom_c-1)
in
2018-02-02 01:25:10 +01:00
Array.init maxsze (fun m ->
(* 9_232_029 *) f1 *. v1.(m) -. (if m = maxm then 0. else f2 *. v1.(m+1)) )
2018-01-31 14:37:51 +01:00
in
let result =
2018-02-02 01:25:10 +01:00
if cm.(xyz) < 1 then result else
2018-01-31 14:37:51 +01:00
let f3 =
(float_of_int cm.(xyz)) *. expo_inv_q *. 0.5
in
2018-02-01 16:09:04 +01:00
if (abs_float f3 < cutoff) && (abs_float (f3 *. expo_inv_q) < cutoff) then result else
2018-02-02 01:25:10 +01:00
(
let cmm = [| angMom_c.(0) ; angMom_c.(1) ; angMom_c.(2) |] in
cmm.(xyz) <- cmm.(xyz) - 2;
2018-01-31 14:37:51 +01:00
let v3 =
vrr angMom_a cmm totAngMom_a (totAngMom_c-2)
in
2018-02-02 01:25:10 +01:00
Array.init maxsze (fun m -> (* 7_322_025 *) result.(m) +.
2018-01-31 14:37:51 +01:00
f3 *. (v3.(m) +. (if m=maxm then 0. else expo_inv_q *. v3.(m+1)) ))
2018-02-02 01:25:10 +01:00
)
2018-01-31 14:37:51 +01:00
in
let result =
2018-02-02 01:25:10 +01:00
let am = [| angMom_a.(0) ; angMom_a.(1) ; angMom_a.(2) |] in
am.(xyz) <- am.(xyz) - 1;
2018-01-31 14:37:51 +01:00
if am.(xyz) lor cm.(xyz) < 0 then result else
let f5 =
(float_of_int angMom_a.(xyz)) *. expo_inv_p *. expo_inv_q *. 0.5
in
if (abs_float f5 < cutoff) then result else
let v5 =
vrr am cm (totAngMom_a-1) (totAngMom_c-1)
in
2018-02-01 16:09:04 +01:00
Array.init (maxsze) (fun m ->
2018-02-02 01:25:10 +01:00
(* 7_963_213 *) result.(m) -. (if m = maxm then 0. else f5 *. v5.(m+1)))
2018-01-31 14:37:51 +01:00
in
result
2018-02-02 01:25:10 +01:00
in Zmap.add map_2d key result;
2018-01-23 00:48:45 +01:00
result
2018-01-18 23:42:48 +01:00
2018-02-01 16:09:04 +01:00
2018-01-18 23:42:48 +01:00
(** Horizontal recurrence relations *)
2018-01-31 14:37:51 +01:00
and hrr0 angMom_a angMom_b angMom_c
2018-01-24 16:29:48 +01:00
totAngMom_a totAngMom_b totAngMom_c =
2018-02-02 01:25:10 +01:00
(* 8_448_486 *) if debug then
2018-02-01 16:09:04 +01:00
Printf.printf "hrr0: %d %d %d : %d %d %d %d %d %d %d %d %d\n" totAngMom_a totAngMom_b totAngMom_c angMom_a.(0) angMom_a.(1) angMom_a.(2) angMom_b.(0) angMom_b.(1) angMom_b.(2) angMom_c.(0) angMom_c.(1) angMom_c.(2);
2018-01-24 16:29:48 +01:00
match totAngMom_b with
2018-02-02 01:25:10 +01:00
| 0 -> (* 0 *) (vrr angMom_a angMom_c totAngMom_a totAngMom_c).(0)
2018-02-01 16:09:04 +01:00
| 1 ->
2018-02-02 01:25:10 +01:00
(* 5_045_008 *) let xyz = if angMom_b.(0) = 1 then 0 else if angMom_b.(1) = 1 then 1 else 2 in
2018-02-01 16:09:04 +01:00
let ap = [| angMom_a.(0) ; angMom_a.(1) ; angMom_a.(2) |] in
ap.(xyz) <- ap.(xyz) + 1;
let v1 =
vrr ap angMom_c (totAngMom_a+1) totAngMom_c
in
let f2 =
(Coordinate.coord center_ab xyz)
in
if (abs_float f2 < cutoff) then v1.(0) else
let v2 =
vrr angMom_a angMom_c totAngMom_a totAngMom_c
in
v1.(0) +. f2 *. v2.(0)
2018-01-24 16:29:48 +01:00
| _ ->
2018-02-02 01:25:10 +01:00
(* 3_403_478 *) let ap = [| angMom_a.(0) ; angMom_a.(1) ; angMom_a.(2) |]
2018-02-01 17:46:10 +01:00
and bm = [| angMom_b.(0) ; angMom_b.(1) ; angMom_b.(2) |]
and xyz =
match angMom_b with
2018-02-02 01:25:10 +01:00
| [|_;0;0|] -> (* 677_315 *) 0
| [|_;_;0|] -> (* 1_136_646 *) 1
| _ -> (* 1_589_517 *) 2
2018-02-01 17:46:10 +01:00
in
ap.(xyz) <- ap.(xyz) + 1;
bm.(xyz) <- bm.(xyz) - 1;
if (bm.(xyz) < 0) then 0. else
let h1 =
hrr0 ap bm angMom_c (totAngMom_a+1) (totAngMom_b-1) totAngMom_c
in
let f2 =
(Coordinate.coord center_ab xyz)
in
if (abs_float f2 < cutoff) then h1 else
let h2 =
hrr0 angMom_a bm angMom_c totAngMom_a (totAngMom_b-1) totAngMom_c
2018-02-01 16:09:04 +01:00
in
2018-02-01 17:46:10 +01:00
h1 +. f2 *. h2
2018-01-24 16:29:48 +01:00
2018-01-31 14:37:51 +01:00
and hrr angMom_a angMom_b angMom_c angMom_d
2018-01-18 23:42:48 +01:00
totAngMom_a totAngMom_b totAngMom_c totAngMom_d =
2018-02-02 01:25:10 +01:00
(* 7_738_602 *) if debug then
2018-02-01 16:09:04 +01:00
Printf.printf "hrr : %d %d %d %d : %d %d %d %d %d %d %d %d %d %d %d %d\n" totAngMom_a totAngMom_b totAngMom_c totAngMom_d angMom_a.(0) angMom_a.(1) angMom_a.(2) angMom_b.(0) angMom_b.(1) angMom_b.(2) angMom_c.(0) angMom_c.(1) angMom_c.(2) angMom_d.(0) angMom_d.(1) angMom_d.(2);
2018-01-23 00:48:45 +01:00
match (totAngMom_b, totAngMom_d) with
2018-02-02 01:25:10 +01:00
| (_,0) -> (* 3_608_781 *) if (totAngMom_b = 0) then
(vrr angMom_a angMom_c totAngMom_a totAngMom_c).(0)
else
hrr0 angMom_a angMom_b angMom_c totAngMom_a totAngMom_b totAngMom_c
2018-01-23 00:48:45 +01:00
| (_,_) ->
2018-02-02 01:25:10 +01:00
(* 4_130_325 *) let cp = [| angMom_c.(0) ; angMom_c.(1) ; angMom_c.(2) |]
2018-01-24 16:29:48 +01:00
and dm = [| angMom_d.(0) ; angMom_d.(1) ; angMom_d.(2) |]
and xyz =
match angMom_d with
2018-02-02 01:25:10 +01:00
| [|_;0;0|] -> (* 1_524_451 *) 0
| [|_;_;0|] -> (* 1_302_937 *) 1
| _ -> (* 1_302_937 *) 2
2018-01-23 00:48:45 +01:00
in
2018-01-24 16:29:48 +01:00
cp.(xyz) <- cp.(xyz) + 1;
dm.(xyz) <- dm.(xyz) - 1;
2018-01-31 14:37:51 +01:00
let h1 =
hrr angMom_a angMom_b cp dm totAngMom_a totAngMom_b (totAngMom_c+1) (totAngMom_d-1)
in
let f2 = Coordinate.coord center_cd xyz in
if (abs_float f2 < cutoff) then h1 else
let h2 =
hrr angMom_a angMom_b angMom_c dm totAngMom_a totAngMom_b totAngMom_c (totAngMom_d-1)
in
h1 +. f2 *. h2
2018-02-01 16:09:04 +01:00
2018-01-18 23:42:48 +01:00
in
2018-02-01 16:09:04 +01:00
hrr angMom_a angMom_b angMom_c angMom_d totAngMom_a totAngMom_b totAngMom_c totAngMom_d
2018-01-18 23:42:48 +01:00
2018-01-23 19:26:28 +01:00
let contracted_class_shell_pairs ~zero_m ?schwartz_p ?schwartz_q shell_p shell_q : float Zmap.t =
2018-01-18 23:42:48 +01:00
2018-02-02 01:25:10 +01:00
(* 12850 *) let shell_a = shell_p.(0).Shell_pair.shell_a
2018-01-23 19:26:28 +01:00
and shell_b = shell_p.(0).Shell_pair.shell_b
and shell_c = shell_q.(0).Shell_pair.shell_a
and shell_d = shell_q.(0).Shell_pair.shell_b
in
let maxm =
2018-01-18 23:42:48 +01:00
let open Angular_momentum in
2018-01-20 01:49:50 +01:00
(to_int @@ Contracted_shell.totAngMom shell_a) + (to_int @@ Contracted_shell.totAngMom shell_b)
2018-01-18 23:42:48 +01:00
+ (to_int @@ Contracted_shell.totAngMom shell_c) + (to_int @@ Contracted_shell.totAngMom shell_d)
in
(* Pre-computation of integral class indices *)
let class_indices =
Angular_momentum.zkey_array
2018-01-19 18:18:11 +01:00
(Angular_momentum.Quartet
2018-01-20 01:49:50 +01:00
Contracted_shell.(totAngMom shell_a, totAngMom shell_b,
totAngMom shell_c, totAngMom shell_d))
2018-01-18 23:42:48 +01:00
in
let contracted_class =
Array.make (Array.length class_indices) 0.;
in
(* Compute all integrals in the shell for each pair of significant shell pairs *)
2018-01-30 14:51:37 +01:00
for ab=0 to (Array.length shell_p - 1) do
let cab = shell_p.(ab).Shell_pair.coef in
let b = shell_p.(ab).Shell_pair.j in
2018-02-01 17:13:47 +01:00
let norm_coef_scale_p = shell_p.(ab).Shell_pair.norm_coef_scale in
2018-01-30 14:51:37 +01:00
for cd=0 to (Array.length shell_q - 1) do
let coef_prod =
cab *. shell_q.(cd).Shell_pair.coef
in
(** Screening on the product of coefficients *)
try
if (abs_float coef_prod) < 1.e-4*.cutoff then
raise NullQuartet;
let expo_pq_inv =
shell_p.(ab).Shell_pair.expo_inv +. shell_q.(cd).Shell_pair.expo_inv
in
let center_pq =
Coordinate.(shell_p.(ab).Shell_pair.center |- shell_q.(cd).Shell_pair.center)
in
let norm_pq_sq =
Coordinate.dot center_pq center_pq
in
let zero_m_array =
zero_m ~maxm ~expo_pq_inv ~norm_pq_sq
in
begin
match Contracted_shell.(totAngMom shell_a, totAngMom shell_b,
totAngMom shell_c, totAngMom shell_d) with
| Angular_momentum.(S,S,S,S) ->
2018-02-02 01:25:10 +01:00
(* 14_700 *) let integral =
2018-01-24 16:29:48 +01:00
zero_m_array.(0)
in
contracted_class.(0) <- contracted_class.(0) +. coef_prod *. integral
2018-01-30 14:51:37 +01:00
| _ ->
2018-02-02 01:25:10 +01:00
(* 15_577 *) let d = shell_q.(cd).Shell_pair.j in
let map_1d = Zmap.create (4*maxm) in
let map_2d = Zmap.create (Array.length class_indices) in
2018-02-01 17:13:47 +01:00
let norm_coef_scale_q = shell_q.(cd).Shell_pair.norm_coef_scale in
let norm_coef_scale =
Array.map (fun v1 ->
2018-02-02 01:25:10 +01:00
(* 165_245 *) Array.map (fun v2 -> (* 2_011_273 *) v1 *. v2) norm_coef_scale_q
2018-02-01 17:13:47 +01:00
) norm_coef_scale_p
|> Array.to_list
|> Array.concat
in
2018-01-24 16:29:48 +01:00
(* Compute the integral class from the primitive shell quartet *)
2018-02-01 16:09:04 +01:00
class_indices
|> Array.iteri (fun i key ->
2018-02-02 01:25:10 +01:00
(* 2_011_273 *) let a = Zkey.to_int_array Zkey.Kind_12 key in
2018-01-24 16:29:48 +01:00
let (angMomA,angMomB,angMomC,angMomD) =
( [| a.(0) ; a.(1) ; a.(2) |],
[| a.(3) ; a.(4) ; a.(5) |],
[| a.(6) ; a.(7) ; a.(8) |],
[| a.(9) ; a.(10) ; a.(11) |] )
2018-01-23 19:26:28 +01:00
in
2018-01-24 16:29:48 +01:00
try
(* Schwartz screening *)
(*
let schwartz_p =
let key =
Zkey.of_int_array Zkey.Kind_12
[| a.(0) ; a.(1) ; a.(2) ;
a.(3) ; a.(4) ; a.(5) ;
a.(0) ; a.(1) ; a.(2) ;
a.(3) ; a.(4) ; a.(5) |]
in
match schwartz_p with
| None -> 1.
| Some schwartz_p -> Zmap.find schwartz_p key
2018-01-23 19:26:28 +01:00
in
2018-01-24 16:29:48 +01:00
if schwartz_p < cutoff then raise NullQuartet;
let schwartz_q =
let key =
Zkey.of_int_array Zkey.Kind_12
[| a.(6) ; a.(7) ; a.(8) ;
a.(9) ; a.(10) ; a.(11) ;
a.(6) ; a.(7) ; a.(8) ;
a.(9) ; a.(10) ; a.(11) |]
in
match schwartz_q with
| None -> 1.
| Some schwartz_q -> Zmap.find schwartz_q key
in
if schwartz_p *. schwartz_q < cutoff2 then raise NullQuartet;
*)
2018-02-01 17:13:47 +01:00
let norm = norm_coef_scale.(i) in
2018-02-02 01:25:10 +01:00
let coef_prod = coef_prod *. norm in
let integral =
(* 2_011_273 *) hvrr_two_e (angMomA, angMomB, angMomC, angMomD)
2018-01-24 16:29:48 +01:00
(Contracted_shell.totAngMom shell_a, Contracted_shell.totAngMom shell_b,
Contracted_shell.totAngMom shell_c, Contracted_shell.totAngMom shell_d)
(maxm, zero_m_array)
(Contracted_shell.expo shell_b b, Contracted_shell.expo shell_d d)
(shell_p.(ab).Shell_pair.expo_inv, shell_q.(cd).Shell_pair.expo_inv)
(shell_p.(ab).Shell_pair.center_ab, shell_q.(cd).Shell_pair.center_ab, center_pq)
2018-02-02 01:25:10 +01:00
map_1d map_2d
2018-01-24 16:29:48 +01:00
in
contracted_class.(i) <- contracted_class.(i) +. coef_prod *. integral
with NullQuartet -> ()
2018-02-01 16:09:04 +01:00
)
2018-01-30 14:51:37 +01:00
end
with NullQuartet -> ()
done
done;
2018-01-24 16:29:48 +01:00
2018-01-18 23:42:48 +01:00
let result =
Zmap.create (Array.length contracted_class)
in
2018-02-02 01:25:10 +01:00
Array.iteri (fun i key -> (* 1_929_480 *) Zmap.add result key contracted_class.(i)) class_indices;
2018-01-18 23:42:48 +01:00
result
2018-01-23 19:26:28 +01:00
(** Computes all the two-electron integrals of the contracted shell quartet *)
let contracted_class ~zero_m shell_a shell_b shell_c shell_d : float Zmap.t =
2018-02-02 01:25:10 +01:00
(* 0 *) let shell_p = Shell_pair.create_array ~cutoff shell_a shell_b
2018-01-30 22:36:17 +01:00
and shell_q = Shell_pair.create_array ~cutoff shell_c shell_d
2018-01-23 19:26:28 +01:00
in
contracted_class_shell_pairs ~zero_m shell_p shell_q