QCaml/Basis/TwoElectronRR.ml

524 lines
17 KiB
OCaml
Raw Normal View History

2018-01-18 23:42:48 +01:00
open Util
2018-02-23 15:49:27 +01:00
2018-03-21 15:01:39 +01:00
module Am = AngularMomentum
2018-03-21 18:54:56 +01:00
module Asp = AtomicShellPair
module Aspc = AtomicShellPairCouple
2018-03-21 15:01:39 +01:00
module Co = Coordinate
module Cs = ContractedShell
module Csp = ContractedShellPair
module Cspc = ContractedShellPairCouple
module Po = Powers
module Psp = PrimitiveShellPair
module Pspc = PrimitiveShellPairCouple
module Ps = PrimitiveShell
2019-03-12 14:07:59 +01:00
module Zp = Zero_m_parameters
2018-01-18 23:42:48 +01:00
2018-02-24 23:57:38 +01:00
let cutoff = Constants.integrals_cutoff
2018-01-23 00:48:45 +01:00
let cutoff2 = cutoff *. cutoff
exception NullQuartet
2018-01-18 23:42:48 +01:00
2019-03-12 13:23:26 +01:00
type four_idx_intermediates =
{
expo_b : float ;
expo_d : float ;
2019-03-12 13:48:55 +01:00
expo_p_inv : float ;
expo_q_inv : float ;
2019-03-12 13:23:26 +01:00
center_ab : Co.t ;
center_cd : Co.t ;
center_pq : Co.t ;
center_pa : Co.t ;
center_qc : Co.t ;
zero_m_array : float array ;
}
2018-01-18 23:42:48 +01:00
(** Horizontal and Vertical Recurrence Relations (HVRR) *)
2018-02-23 15:49:27 +01:00
let rec hvrr_two_e
angMom_a angMom_b angMom_c angMom_d
2019-03-12 13:23:26 +01:00
abcd map_1d map_2d =
2018-01-18 23:42:48 +01:00
2018-02-09 10:49:27 +01:00
(* Swap electrons 1 and 2 so that the max angular momentum is on 1 *)
2018-02-23 15:49:27 +01:00
if angMom_a.Po.tot + angMom_b.Po.tot < angMom_c.Po.tot + angMom_d.Po.tot then
2019-03-12 13:23:26 +01:00
let abcd = {
expo_b = abcd.expo_d ;
expo_d = abcd.expo_b ;
2019-03-12 13:48:55 +01:00
expo_p_inv = abcd.expo_q_inv ;
expo_q_inv = abcd.expo_p_inv ;
2019-03-12 13:23:26 +01:00
center_ab = abcd.center_cd ;
center_cd = abcd.center_ab ;
center_pq = Co.neg abcd.center_pq ;
center_pa = abcd.center_qc ;
center_qc = abcd.center_pa ;
zero_m_array = abcd.zero_m_array ;
} in
2018-02-23 15:49:27 +01:00
hvrr_two_e
angMom_c angMom_d angMom_a angMom_b
2019-03-12 13:23:26 +01:00
abcd map_1d map_2d
2018-02-19 16:01:13 +01:00
2018-02-09 10:49:27 +01:00
else
2018-02-19 16:01:13 +01:00
2018-02-23 15:49:27 +01:00
let maxm = angMom_a.Po.tot + angMom_b.Po.tot + angMom_c.Po.tot + angMom_d.Po.tot in
2018-02-19 16:01:13 +01:00
let maxsze = maxm+1 in
let get_xyz angMom =
match angMom with
2018-02-23 15:49:27 +01:00
| { Po.y=0 ; z=0 ; _ } -> Co.X
2020-01-20 09:42:16 +01:00
| { z=0 ; _ } -> Co.Y
2018-02-23 15:49:27 +01:00
| _ -> Co.Z
2018-02-09 10:49:27 +01:00
in
2018-02-19 16:01:13 +01:00
2019-03-12 13:48:55 +01:00
let expo_p_inv = abcd.expo_p_inv
and expo_q_inv = abcd.expo_q_inv
2019-03-12 13:23:26 +01:00
and center_ab = abcd.center_ab
and center_cd = abcd.center_cd
and center_pq = abcd.center_pq
in
2018-02-09 10:49:27 +01:00
(** Vertical recurrence relations *)
2018-02-19 16:01:13 +01:00
let rec vrr0 angMom_a =
2018-02-09 10:49:27 +01:00
2018-02-23 15:49:27 +01:00
match angMom_a.Po.tot with
2019-03-12 13:23:26 +01:00
| 0 -> abcd.zero_m_array
2018-02-09 10:49:27 +01:00
| _ ->
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_three angMom_a in
2018-02-09 10:49:27 +01:00
try Zmap.find map_1d key with
| Not_found ->
let result =
2018-02-19 16:01:13 +01:00
let xyz = get_xyz angMom_a in
2018-02-23 15:49:27 +01:00
let am = Po.decr xyz angMom_a in
let amxyz = Po.get xyz am in
2018-02-19 16:01:13 +01:00
2019-03-12 13:48:55 +01:00
let f1 = expo_p_inv *. Co.get xyz center_pq
and f2 = abcd.expo_b *. expo_p_inv *. Co.get xyz center_ab
2018-02-21 17:27:31 +01:00
in
2018-02-23 15:49:27 +01:00
let result = Array.create_float (maxsze - angMom_a.Po.tot) in
2018-02-21 17:27:31 +01:00
if amxyz = 0 then
begin
2018-02-23 02:02:53 +01:00
let v1 = vrr0 am in
Array.iteri (fun m _ ->
result.(m) <- f1 *. v1.(m+1) -. f2 *. v1.(m)) result
2018-02-21 17:27:31 +01:00
end
2018-02-20 23:54:48 +01:00
else
2018-02-21 17:27:31 +01:00
begin
2018-02-23 15:49:27 +01:00
let amm = Po.decr xyz am in
2018-02-21 17:27:31 +01:00
let v3 = vrr0 amm in
let v1 = vrr0 am in
2019-03-12 13:48:55 +01:00
let f3 = (float_of_int amxyz) *. expo_p_inv *. 0.5 in
2018-02-23 02:02:53 +01:00
Array.iteri (fun m _ ->
2018-02-21 17:27:31 +01:00
result.(m) <- f1 *. v1.(m+1) -. f2 *. v1.(m)
2019-03-12 13:48:55 +01:00
+. f3 *. (v3.(m) +. expo_p_inv *. v3.(m+1)) ) result
2018-02-21 17:27:31 +01:00
end;
result
2018-02-09 10:49:27 +01:00
in Zmap.add map_1d key result;
result
2018-01-18 23:42:48 +01:00
2018-02-01 16:09:04 +01:00
2018-02-19 16:01:13 +01:00
and vrr angMom_a angMom_c =
2018-01-24 16:29:48 +01:00
2018-02-23 15:49:27 +01:00
match angMom_a.Po.tot, angMom_c.Po.tot with
2018-02-20 23:54:48 +01:00
| (i,0) -> if (i>0) then vrr0 angMom_a
2019-03-12 13:23:26 +01:00
else abcd.zero_m_array
2018-02-09 10:49:27 +01:00
| (_,_) ->
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_six angMom_a angMom_c in
2018-02-09 10:49:27 +01:00
try Zmap.find map_2d key with
| Not_found ->
let result =
2018-02-23 15:49:27 +01:00
(* angMom_c.Po.tot > 0 so cm.Po.tot >= 0 *)
2018-02-21 20:21:45 +01:00
let xyz = get_xyz angMom_c in
2018-02-23 15:49:27 +01:00
let cm = Po.decr xyz angMom_c in
let cmxyz = Po.get xyz cm in
let axyz = Po.get xyz angMom_a in
2018-02-19 16:01:13 +01:00
2018-02-21 17:27:31 +01:00
let f1 =
2019-03-12 13:48:55 +01:00
-. abcd.expo_d *. expo_q_inv *. Co.get xyz center_cd
2018-02-21 17:27:31 +01:00
and f2 =
2019-03-12 13:48:55 +01:00
expo_q_inv *. Co.get xyz center_pq
2018-02-21 17:27:31 +01:00
in
2018-02-23 15:49:27 +01:00
let result = Array.make (maxsze - angMom_a.Po.tot - angMom_c.Po.tot) 0. in
2018-02-22 01:38:47 +01:00
if axyz > 0 then
2018-02-21 17:27:31 +01:00
begin
2018-02-23 15:49:27 +01:00
let am = Po.decr xyz angMom_a in
2018-02-22 01:38:47 +01:00
let f5 =
2019-03-12 13:48:55 +01:00
(float_of_int axyz) *. expo_p_inv *. expo_q_inv *. 0.5
2018-02-21 17:27:31 +01:00
in
2018-02-22 01:38:47 +01:00
if (abs_float f5 > cutoff) then
let v5 =
vrr am cm
in
2018-02-23 02:02:53 +01:00
Array.iteri (fun m _ ->
result.(m) <- result.(m) -. f5 *. v5.(m+1)) result
2018-02-21 17:27:31 +01:00
end;
if cmxyz > 0 then
begin
let f3 =
2019-03-12 13:48:55 +01:00
(float_of_int cmxyz) *. expo_q_inv *. 0.5
2018-02-21 17:27:31 +01:00
in
if (abs_float f3 > cutoff) ||
2019-03-12 13:48:55 +01:00
(abs_float (f3 *. expo_q_inv) > cutoff) then
2018-02-11 23:41:18 +01:00
begin
2018-02-21 17:27:31 +01:00
let v3 =
2018-02-23 15:49:27 +01:00
let cmm = Po.decr xyz cm in
2018-02-21 17:27:31 +01:00
vrr angMom_a cmm
2018-02-09 10:49:27 +01:00
in
2018-02-23 02:02:53 +01:00
Array.iteri (fun m _ ->
2018-02-21 17:27:31 +01:00
result.(m) <- result.(m) +.
2019-03-12 13:48:55 +01:00
f3 *. (v3.(m) +. expo_q_inv *. v3.(m+1)) ) result
2018-02-21 17:27:31 +01:00
end
end;
2018-02-22 01:38:47 +01:00
if ( (abs_float f1 > cutoff) || (abs_float f2 > cutoff) ) then
2018-02-21 17:27:31 +01:00
begin
2018-02-22 01:38:47 +01:00
let v1 =
vrr angMom_a cm
2018-02-21 17:27:31 +01:00
in
2018-02-23 02:02:53 +01:00
Array.iteri (fun m _ ->
result.(m) <- result.(m) +. f1 *. v1.(m) -. f2 *. v1.(m+1) ) result
2018-02-21 17:27:31 +01:00
end;
result
2018-02-09 10:49:27 +01:00
in Zmap.add map_2d key result;
result
2018-01-18 23:42:48 +01:00
2018-02-23 03:25:25 +01:00
(*
2018-02-21 17:27:31 +01:00
and trr angMom_a angMom_c =
2018-02-23 15:49:27 +01:00
match (angMom_a.Po.tot, angMom_c.Po.tot) with
2018-02-21 20:21:45 +01:00
| (i,0) -> if (i>0) then (vrr0 angMom_a).(0)
2019-03-12 13:23:26 +01:00
else abcd.zero_m_array.(0)
2018-02-21 17:27:31 +01:00
| (_,_) ->
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_six angMom_a angMom_c in
2018-02-21 17:27:31 +01:00
2018-02-22 01:38:47 +01:00
try (Zmap.find map_2d key).(0) with
2018-02-21 17:27:31 +01:00
| Not_found ->
let result =
2018-02-21 20:21:45 +01:00
let xyz = get_xyz angMom_c in
2018-02-23 15:49:27 +01:00
let axyz = Po.get xyz angMom_a in
let cm = Po.decr xyz angMom_c in
let cmxyz = Po.get xyz cm in
2018-02-21 20:21:45 +01:00
2019-03-12 13:48:55 +01:00
let expo_inv_q_over_p = expo_q_inv /. expo_p_inv in
2018-02-21 20:21:45 +01:00
let f =
2018-02-23 15:49:27 +01:00
Co.get xyz center_qc +. expo_inv_q_over_p *.
Co.get xyz center_pa
2018-02-21 20:21:45 +01:00
in
2018-02-22 01:38:47 +01:00
let result = 0. in
2018-02-21 20:21:45 +01:00
let result =
if cmxyz < 1 then result else
2019-03-12 13:48:55 +01:00
let f = 0.5 *. (float_of_int cmxyz) *. expo_q_inv in
2018-02-21 20:21:45 +01:00
if abs_float f < cutoff then 0. else
2018-02-23 15:49:27 +01:00
let cmm = Po.decr xyz cm in
2018-02-21 20:21:45 +01:00
let v3 = trr angMom_a cmm in
result +. f *. v3
in
2018-02-22 01:38:47 +01:00
let result =
if abs_float f < cutoff then result else
let v1 = trr angMom_a cm in
result +. f *. v1
in
2018-02-21 20:21:45 +01:00
let result =
if cmxyz < 0 then result else
let f = -. expo_inv_q_over_p in
2018-02-23 15:49:27 +01:00
let ap = Po.incr xyz angMom_a in
2018-02-21 20:21:45 +01:00
let v4 = trr ap cm in
result +. v4 *. f
in
2018-02-22 01:38:47 +01:00
let result =
if axyz < 1 then result else
2019-03-12 13:48:55 +01:00
let f = 0.5 *. (float_of_int axyz) *. expo_q_inv in
2018-02-22 01:38:47 +01:00
if abs_float f < cutoff then result else
2018-02-23 15:49:27 +01:00
let am = Po.decr xyz angMom_a in
2018-02-22 01:38:47 +01:00
let v2 = trr am cm in
result +. f *. v2
in
2018-02-21 20:21:45 +01:00
result
in
2018-02-22 01:38:47 +01:00
Zmap.add map_2d key [|result|];
2018-02-21 20:21:45 +01:00
result
2018-02-22 09:57:43 +01:00
*)
2018-02-22 01:38:47 +01:00
in
2018-01-18 23:42:48 +01:00
2018-02-23 03:25:25 +01:00
2018-02-22 01:38:47 +01:00
let vrr a c =
2018-02-22 09:57:43 +01:00
(vrr a c).(0)
(*
2018-02-22 01:48:30 +01:00
if maxm < 10 then (vrr a c).(0) else trr a c
2018-02-22 09:57:43 +01:00
*)
2018-02-22 01:38:47 +01:00
in
2018-01-18 23:42:48 +01:00
2018-02-01 16:09:04 +01:00
2018-02-09 10:49:27 +01:00
(** Horizontal recurrence relations *)
2018-02-22 01:38:47 +01:00
let rec hrr0 angMom_a angMom_b angMom_c =
2018-01-24 16:29:48 +01:00
2018-02-23 15:49:27 +01:00
match angMom_b.Po.tot with
2018-02-09 10:49:27 +01:00
| 1 ->
2018-02-19 16:01:13 +01:00
let xyz = get_xyz angMom_b in
2018-02-23 15:49:27 +01:00
let ap = Po.incr xyz angMom_a in
2018-02-20 23:54:48 +01:00
let v1 = vrr ap angMom_c in
2018-02-23 15:49:27 +01:00
let f2 = Co.get xyz center_ab in
2018-02-22 01:38:47 +01:00
if (abs_float f2 < cutoff) then v1 else
2018-02-20 23:54:48 +01:00
let v2 = vrr angMom_a angMom_c in
2018-02-22 01:38:47 +01:00
v1 +. f2 *. v2
2018-02-22 09:57:43 +01:00
| 0 -> vrr angMom_a angMom_c
2018-02-09 10:49:27 +01:00
| _ ->
2018-02-19 16:01:13 +01:00
let xyz = get_xyz angMom_b in
2018-02-23 15:49:27 +01:00
let bxyz = Po.get xyz angMom_b in
2018-02-20 23:54:48 +01:00
if bxyz > 0 then
2018-02-23 15:49:27 +01:00
let ap = Po.incr xyz angMom_a in
let bm = Po.decr xyz angMom_b in
2018-02-20 23:54:48 +01:00
let h1 = hrr0 ap bm angMom_c in
2018-02-23 15:49:27 +01:00
let f2 = Co.get xyz center_ab in
2018-02-20 23:54:48 +01:00
if abs_float f2 < cutoff then h1 else
let h2 = hrr0 angMom_a bm angMom_c in
h1 +. f2 *. h2
else 0.
2018-01-24 16:29:48 +01:00
2018-02-13 17:36:25 +01:00
2018-02-19 16:01:13 +01:00
and hrr angMom_a angMom_b angMom_c angMom_d =
2018-01-18 23:42:48 +01:00
2018-02-23 15:49:27 +01:00
match (angMom_b.Po.tot, angMom_d.Po.tot) with
2018-02-20 23:54:48 +01:00
| (_,0) ->
2018-02-23 15:49:27 +01:00
if (angMom_b.Po.tot = 0) then
2018-02-22 01:38:47 +01:00
vrr angMom_a angMom_c
2018-02-09 10:49:27 +01:00
else
2018-02-20 23:54:48 +01:00
hrr0 angMom_a angMom_b angMom_c
2018-02-09 10:49:27 +01:00
| (_,_) ->
2018-02-19 16:01:13 +01:00
let xyz = get_xyz angMom_d in
2018-02-23 15:49:27 +01:00
let cp = Po.incr xyz angMom_c in
let dm = Po.decr xyz angMom_d in
2018-02-20 23:54:48 +01:00
let h1 = hrr angMom_a angMom_b cp dm in
2018-02-23 15:49:27 +01:00
let f2 = Co.get xyz center_cd in
2018-02-20 23:54:48 +01:00
if abs_float f2 < cutoff then h1 else
let h2 = hrr angMom_a angMom_b angMom_c dm in
h1 +. f2 *. h2
2018-02-01 16:09:04 +01:00
2018-02-09 10:49:27 +01:00
in
hrr angMom_a angMom_b angMom_c angMom_d
2018-01-18 23:42:48 +01:00
2018-03-27 19:26:32 +02:00
let contracted_class_shell_pair_couple ~zero_m shell_pair_couple : float Zmap.t =
2018-01-18 23:42:48 +01:00
2018-03-21 15:01:39 +01:00
let maxm = Am.to_int (Cspc.ang_mom shell_pair_couple) in
2018-01-18 23:42:48 +01:00
2018-03-21 15:01:39 +01:00
(* Pre-computation of integral class indices *)
let class_indices = Cspc.zkey_array shell_pair_couple in
2018-02-11 23:41:18 +01:00
2018-03-21 15:01:39 +01:00
let contracted_class =
Array.make (Array.length class_indices) 0.;
in
2018-01-18 23:42:48 +01:00
2018-03-21 15:01:39 +01:00
let monocentric =
Cspc.monocentric shell_pair_couple
in
2018-03-15 16:03:43 +01:00
2018-03-21 15:01:39 +01:00
(* Compute all integrals in the shell for each pair of significant shell pairs *)
2018-03-15 16:03:43 +01:00
2018-03-27 19:26:32 +02:00
let shell_p = Cspc.shell_pair_p shell_pair_couple
and shell_q = Cspc.shell_pair_q shell_pair_couple
in
2018-03-21 15:01:39 +01:00
let center_ab = Csp.a_minus_b shell_p
and center_cd = Csp.a_minus_b shell_q
2018-03-20 19:02:58 +01:00
in
2018-03-15 16:03:43 +01:00
2018-03-21 15:01:39 +01:00
let norm_scales = Cspc.norm_scales shell_pair_couple in
2018-03-15 16:03:43 +01:00
2018-03-21 15:01:39 +01:00
List.iter (fun (coef_prod, spc) ->
2018-03-15 16:03:43 +01:00
2018-03-21 15:01:39 +01:00
let sp_ab = Pspc.shell_pair_p spc
and sp_cd = Pspc.shell_pair_q spc
in
2019-03-12 13:48:55 +01:00
let expo_p_inv = Psp.exponent_inv sp_ab
2018-03-21 15:01:39 +01:00
in
2018-01-30 14:51:37 +01:00
2018-03-15 16:03:43 +01:00
let center_pq = Co.(Psp.center sp_ab |- Psp.center sp_cd) in
2019-03-13 22:02:08 +01:00
let center_pa = Psp.center_minus_a sp_ab in
let center_qc = Psp.center_minus_a sp_cd in
2018-03-15 16:03:43 +01:00
let norm_pq_sq = Co.dot center_pq center_pq in
2019-03-12 13:48:55 +01:00
let expo_q_inv = Psp.exponent_inv sp_cd in
2019-03-13 22:02:08 +01:00
let normalization = Psp.normalization sp_ab *. Psp.normalization sp_cd in
2018-01-30 14:51:37 +01:00
let zero_m_array =
2019-03-13 22:02:08 +01:00
zero_m Zp.{
maxm ; expo_p_inv ; expo_q_inv ; norm_pq_sq ;
center_pq ; center_pa ; center_qc ; normalization ;
}
2018-01-30 14:51:37 +01:00
in
2018-03-15 16:03:43 +01:00
2018-01-30 14:51:37 +01:00
begin
2018-03-21 15:01:39 +01:00
match Cspc.ang_mom shell_pair_couple with
| Am.S ->
let integral = zero_m_array.(0) in
2018-02-03 19:01:30 +01:00
contracted_class.(0) <- contracted_class.(0) +. coef_prod *. integral
2018-01-30 14:51:37 +01:00
| _ ->
2018-03-21 15:01:39 +01:00
let expo_b = Ps.exponent (Psp.shell_b sp_ab)
and expo_d = Ps.exponent (Psp.shell_b sp_cd)
in
let map_1d = Zmap.create (4*maxm)
and map_2d = Zmap.create (Array.length class_indices)
in
2018-02-12 00:56:32 +01:00
2018-02-03 19:01:30 +01:00
(* Compute the integral class from the primitive shell quartet *)
class_indices
|> Array.iteri (fun i key ->
2018-02-19 16:01:13 +01:00
let (angMom_a,angMom_b,angMom_c,angMom_d) =
2018-02-25 01:40:12 +01:00
match Zkey.to_powers key with
2018-02-06 17:13:25 +01:00
| Zkey.Twelve x -> x
| _ -> assert false
2018-02-03 19:01:30 +01:00
in
try
2018-02-12 00:56:32 +01:00
if monocentric then
begin
2018-02-23 15:49:27 +01:00
if ( ((1 land angMom_a.Po.x + angMom_b.Po.x + angMom_c.Po.x + angMom_d.Po.x)=1) ||
((1 land angMom_a.Po.y + angMom_b.Po.y + angMom_c.Po.y + angMom_d.Po.y)=1) ||
((1 land angMom_a.Po.z + angMom_b.Po.z + angMom_c.Po.z + angMom_d.Po.z)=1)
2018-03-21 15:01:39 +01:00
) then
2018-02-12 00:56:32 +01:00
raise NullQuartet
end;
2018-02-19 16:01:13 +01:00
2018-03-21 15:01:39 +01:00
let norm = norm_scales.(i) in
2018-02-03 19:01:30 +01:00
let coef_prod = coef_prod *. norm in
2018-02-21 20:21:45 +01:00
2019-03-12 13:23:26 +01:00
let abcd = {
2019-03-12 13:48:55 +01:00
expo_b ; expo_d ; expo_p_inv ; expo_q_inv ;
2019-03-12 13:23:26 +01:00
center_ab ; center_cd ; center_pq ;
center_pa ; center_qc ; zero_m_array ;
} in
2018-02-03 19:01:30 +01:00
let integral =
2018-02-23 15:49:27 +01:00
hvrr_two_e
angMom_a angMom_b angMom_c angMom_d
2019-03-12 13:23:26 +01:00
abcd map_1d map_2d
2018-02-03 19:01:30 +01:00
in
contracted_class.(i) <- contracted_class.(i) +. coef_prod *. integral
with NullQuartet -> ()
)
2018-01-30 14:51:37 +01:00
end
2018-03-21 15:01:39 +01:00
) (Cspc.coefs_and_shell_pair_couples shell_pair_couple);
2018-01-24 16:29:48 +01:00
2018-03-21 15:01:39 +01:00
let result =
Zmap.create (Array.length contracted_class)
in
Array.iteri (fun i key -> Zmap.add result key contracted_class.(i)) class_indices;
result
2018-01-18 23:42:48 +01:00
2018-01-23 19:26:28 +01:00
2018-03-21 18:54:56 +01:00
2018-03-27 19:26:32 +02:00
let contracted_class_atomic_shell_pair_couple ~zero_m atomic_shell_pair_couple : float Zmap.t =
2018-03-21 18:54:56 +01:00
let maxm = Am.to_int (Aspc.ang_mom atomic_shell_pair_couple) in
(* Pre-computation of integral class indices *)
let class_indices = Aspc.zkey_array atomic_shell_pair_couple in
let contracted_class =
Array.make (Array.length class_indices) 0.;
in
let monocentric =
Aspc.monocentric atomic_shell_pair_couple
in
2018-03-27 19:26:32 +02:00
let shell_p = Aspc.atomic_shell_pair_p atomic_shell_pair_couple
and shell_q = Aspc.atomic_shell_pair_q atomic_shell_pair_couple
in
2018-03-21 18:54:56 +01:00
(* Compute all integrals in the shell for each pair of significant shell pairs *)
let center_ab = Asp.a_minus_b shell_p
and center_cd = Asp.a_minus_b shell_q
in
let norm_scales = Aspc.norm_scales atomic_shell_pair_couple in
List.iter (fun cspc ->
List.iter (fun (coef_prod, spc) ->
let sp_ab = Pspc.shell_pair_p spc
and sp_cd = Pspc.shell_pair_q spc
in
2019-03-12 13:48:55 +01:00
let expo_p_inv = Psp.exponent_inv sp_ab
2018-03-21 18:54:56 +01:00
in
let center_pq = Co.(Psp.center sp_ab |- Psp.center sp_cd) in
2019-03-13 22:02:08 +01:00
let center_qc = Psp.center_minus_a sp_cd in
let center_pa = Psp.center_minus_a sp_ab in
2018-03-21 18:54:56 +01:00
let norm_pq_sq = Co.dot center_pq center_pq in
2019-03-12 13:48:55 +01:00
let expo_q_inv = Psp.exponent_inv sp_cd in
2019-03-13 22:02:08 +01:00
let normalization = Psp.normalization sp_ab *. Psp.normalization sp_cd in
2018-03-21 18:54:56 +01:00
let zero_m_array =
2019-03-13 22:02:08 +01:00
zero_m Zp.{
maxm ; expo_p_inv ; expo_q_inv ; norm_pq_sq ;
center_pq ; center_pa ; center_qc ; normalization ;
}
2018-03-21 18:54:56 +01:00
in
begin
match Aspc.ang_mom atomic_shell_pair_couple with
| Am.S ->
let integral = zero_m_array.(0) in
contracted_class.(0) <- contracted_class.(0) +. coef_prod *. integral
| _ ->
let expo_b = Ps.exponent (Psp.shell_b sp_ab)
and expo_d = Ps.exponent (Psp.shell_b sp_cd)
in
let map_1d = Zmap.create (4*maxm)
and map_2d = Zmap.create (Array.length class_indices)
in
(* Compute the integral class from the primitive shell quartet *)
class_indices
|> Array.iteri (fun i key ->
let (angMom_a,angMom_b,angMom_c,angMom_d) =
match Zkey.to_powers key with
| Zkey.Twelve x -> x
| _ -> assert false
in
try
if monocentric then
begin
if ( ((1 land angMom_a.Po.x + angMom_b.Po.x + angMom_c.Po.x + angMom_d.Po.x)=1) ||
((1 land angMom_a.Po.y + angMom_b.Po.y + angMom_c.Po.y + angMom_d.Po.y)=1) ||
((1 land angMom_a.Po.z + angMom_b.Po.z + angMom_c.Po.z + angMom_d.Po.z)=1)
) then
raise NullQuartet
end;
let norm = norm_scales.(i) in
let coef_prod = coef_prod *. norm in
2019-03-12 13:23:26 +01:00
let abcd = {
2019-03-12 13:48:55 +01:00
expo_b ; expo_d ; expo_p_inv ; expo_q_inv ;
2019-03-12 13:23:26 +01:00
center_ab ; center_cd ; center_pq ;
center_pa ; center_qc ; zero_m_array ;
} in
2018-03-21 18:54:56 +01:00
let integral =
hvrr_two_e
angMom_a angMom_b angMom_c angMom_d
2019-03-12 13:23:26 +01:00
abcd
2018-03-21 18:54:56 +01:00
map_1d map_2d
in
contracted_class.(i) <- contracted_class.(i) +. coef_prod *. integral
with NullQuartet -> ()
)
end
) (Cspc.coefs_and_shell_pair_couples cspc)
) (Aspc.contracted_shell_pair_couples atomic_shell_pair_couple);
let result =
Zmap.create (Array.length contracted_class)
in
Array.iteri (fun i key -> Zmap.add result key contracted_class.(i)) class_indices;
result