QCaml/Basis/TwoElectronRRVectorized.ml

880 lines
30 KiB
OCaml
Raw Normal View History

2018-01-25 01:28:10 +01:00
open Util
2018-02-09 19:41:22 +01:00
open Lacaml.D
open Bigarray
2018-01-25 01:28:10 +01:00
2018-03-21 15:01:39 +01:00
module Am = AngularMomentum
module Co = Coordinate
module Cs = ContractedShell
module Csp = ContractedShellPair
module Cspc = ContractedShellPairCouple
module Po = Powers
module Psp = PrimitiveShellPair
module Ps = PrimitiveShell
2019-03-12 14:07:59 +01:00
module Zp = Zero_m_parameters
2018-01-25 01:28:10 +01:00
exception NullQuartet
2018-01-31 15:05:01 +01:00
exception Found
2018-02-24 23:57:38 +01:00
let cutoff = Constants.integrals_cutoff
2018-02-23 18:41:30 +01:00
let cutoff2 = cutoff *. cutoff
2018-03-21 15:01:39 +01:00
let empty = Zmap.create 0
2018-02-23 18:41:30 +01:00
2018-02-10 01:07:34 +01:00
let at_least_one_valid arr =
try
Array.iter (fun x -> if (abs_float x > cutoff) then raise Found) arr ; false
with Found -> true
2019-03-12 13:48:55 +01:00
type fou_idx_intermediate =
{
expo_b : float array;
expo_d : float array;
expo_p_inv : float array;
expo_q_inv : float array;
center_ab : Co.t ;
center_cd : Co.t ;
center_pq : Co.axis -> float array array;
center_pa : Co.axis -> float array;
center_qc : Co.axis -> float array;
zero_m_array : float array array array;
}
2018-02-09 19:41:22 +01:00
2018-01-25 01:28:10 +01:00
(** Horizontal and Vertical Recurrence Relations (HVRR) *)
2018-01-31 15:05:01 +01:00
let hvrr_two_e_vector (angMom_a, angMom_b, angMom_c, angMom_d)
2019-03-12 13:48:55 +01:00
abcd map_1d map_2d np nq
2018-01-25 01:28:10 +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
and center_ab = abcd.center_ab
and center_cd = abcd.center_cd
and center_pq = abcd.center_pq
in
let zero_m_array = abcd.zero_m_array in
2018-02-23 02:02:53 +01:00
let maxm = Array.length zero_m_array - 1 in
2018-02-19 11:24:15 +01:00
let get_xyz angMom =
match angMom with
2018-02-23 18:41:30 +01:00
| { Po.y=0 ; z=0 ; _ } -> Co.X
2020-01-20 09:42:16 +01:00
| { z=0 ; _ } -> Co.Y
2018-02-23 18:41:30 +01:00
| _ -> Co.Z
2018-01-25 01:28:10 +01:00
in
(** Vertical recurrence relations *)
2018-02-23 02:02:53 +01:00
let rec vrr0_v angMom_a =
2018-02-23 18:41:30 +01:00
match angMom_a.Po.tot with
2018-02-23 02:02:53 +01:00
| 0 -> zero_m_array
2018-02-19 16:01:13 +01:00
| _ ->
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_three angMom_a
2018-01-25 01:28:10 +01:00
in
2018-02-23 02:02:53 +01:00
try Zmap.find map_1d key with
2018-02-02 11:59:30 +01:00
| Not_found ->
2018-02-03 19:01:30 +01:00
let result =
2018-02-19 16:01:13 +01:00
let xyz = get_xyz angMom_a in
2018-02-23 18:41:30 +01:00
let am = Po.decr xyz angMom_a in
let cab = Co.get xyz center_ab in
let result = Array.init (maxm+1-angMom_a.Po.tot) (fun _ -> Array.make_matrix np nq 0.) in
2018-02-23 02:02:53 +01:00
let v_am= vrr0_v am in
2018-02-19 16:01:13 +01:00
2018-02-21 17:27:31 +01:00
begin
if abs_float cab >= cutoff then
2019-03-12 13:48:55 +01:00
let expo_b = abcd.expo_b in
2018-02-23 02:02:53 +01:00
Array.iteri (fun m result_m ->
let v0 = v_am.(m) in
Array.iteri (fun l result_ml ->
2019-03-12 13:48:55 +01:00
let f0 = -. expo_b.(l) *. expo_p_inv.(l) *. cab
2018-02-23 02:02:53 +01:00
and v0_l = v0.(l)
in
Array.iteri (fun k v0_lk ->
result_ml.(k) <- v0_lk *. f0) v0_l
) result_m
) result
2018-02-21 17:27:31 +01:00
end;
2018-02-23 18:41:30 +01:00
let amxyz = Po.get xyz am in
2018-02-21 17:27:31 +01:00
if amxyz < 1 then
2018-02-23 02:02:53 +01:00
Array.iteri (fun l expo_inv_p_l ->
let center_pq_xyz_l = (center_pq xyz).(l) in
Array.iteri (fun m result_m ->
let result_ml = result_m.(l) in
let p0 = v_am.(m+1) in
let p0_l = p0.(l)
in
Array.iteri (fun k p0_lk ->
result_ml.(k) <- result_ml.(k)
+. expo_inv_p_l *. center_pq_xyz_l.(k) *. p0_lk
) p0_l
) result
2019-03-12 13:48:55 +01:00
) expo_p_inv
2018-02-21 17:27:31 +01:00
else
2018-02-19 16:01:13 +01:00
begin
2018-02-23 18:41:30 +01:00
let amm = Po.decr xyz am in
2018-02-21 17:27:31 +01:00
let amxyz = float_of_int amxyz in
2018-02-23 02:02:53 +01:00
let v_amm = vrr0_v amm in
Array.iteri (fun l expo_inv_p_l ->
2019-03-12 13:48:55 +01:00
let f = amxyz *. expo_p_inv.(l) *. 0.5
2018-02-19 16:01:13 +01:00
and center_pq_xyz_l = (center_pq xyz).(l)
in
2018-02-23 02:02:53 +01:00
Array.iteri (fun m result_m ->
let v1 = v_amm.(m) in
let v1_l = v1.(l) in
let result_ml = result_m.(l) in
let v2 = v_amm.(m+1) in
let p0 = v_am.(m+1) in
let v2_l = v2.(l)
in
Array.iteri (fun k p0_lk ->
result_ml.(k) <- result_ml.(k) +.
expo_inv_p_l *. center_pq_xyz_l.(k) *. p0_lk +.
f *. (v1_l.(k) +. v2_l.(k) *. expo_inv_p_l)
) p0.(l)
) result
2019-03-12 13:48:55 +01:00
) expo_p_inv
2018-02-21 17:27:31 +01:00
end;
result
2018-02-19 16:01:13 +01:00
in
2018-02-23 02:02:53 +01:00
Zmap.add map_1d key result;
2018-02-19 16:01:13 +01:00
result
2018-01-25 01:28:10 +01:00
2018-02-19 16:01:13 +01:00
and vrr_v m angMom_a angMom_c =
2018-01-25 01:28:10 +01:00
2018-02-23 18:41:30 +01:00
match (angMom_a.Po.tot, angMom_c.Po.tot) with
2018-02-23 02:02:53 +01:00
| (i,0) -> Some (vrr0_v angMom_a).(m)
2018-01-25 01:28:10 +01:00
| (_,_) ->
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_six angMom_a angMom_c in
2018-01-25 01:28:10 +01:00
2018-02-09 20:32:39 +01:00
try Zmap.find map_2d.(m) key with
2018-02-03 19:01:30 +01:00
| Not_found ->
let result =
2018-02-19 16:01:13 +01:00
begin
2018-02-19 11:24:15 +01:00
let xyz = get_xyz angMom_c in
2018-02-23 18:41:30 +01:00
let cm = Po.decr xyz angMom_c in
let axyz = Po.get xyz angMom_a in
2018-02-19 11:24:15 +01:00
2018-02-10 22:27:00 +01:00
let do_compute = ref false in
let v1 =
2018-02-23 18:41:30 +01:00
let f = -. (Co.get xyz center_cd) in
2018-02-11 01:05:30 +01:00
let f1 =
2019-03-12 13:48:55 +01:00
let expo_d = abcd.expo_d in
2018-02-11 01:05:30 +01:00
Array.init nq (fun k ->
2019-03-12 13:48:55 +01:00
let x = expo_d.(k) *. expo_q_inv.(k) *. f in
2018-02-19 16:01:13 +01:00
if ( (not !do_compute) && (abs_float x > cutoff) ) then
do_compute := true;
x)
2018-02-10 22:27:00 +01:00
in
if (!do_compute) then
2018-02-19 16:01:13 +01:00
match vrr_v m angMom_a cm with
2018-02-10 22:27:00 +01:00
| None -> None
| Some v1 ->
2018-02-19 16:01:13 +01:00
begin
2018-02-20 23:54:48 +01:00
Some (Array.init np (fun l ->
let v1_l = v1.(l) in
Array.mapi (fun k f1k -> v1_l.(k) *. f1k) f1
) )
2018-02-19 16:01:13 +01:00
end
2018-02-09 20:32:39 +01:00
else None
2018-02-03 19:01:30 +01:00
in
2018-02-10 22:27:00 +01:00
2018-02-09 20:32:39 +01:00
let v2 =
2018-02-10 22:27:00 +01:00
let f2 =
Array.init np (fun l ->
2018-02-19 16:01:13 +01:00
let cpq_l = (center_pq xyz).(l) in
Array.init nq (fun k ->
2019-03-12 13:48:55 +01:00
let x = expo_q_inv.(k) *. cpq_l.(k) in
2018-02-19 16:01:13 +01:00
if (!do_compute) then x
else (if abs_float x > cutoff then do_compute := true ; x)
) )
2018-02-10 22:27:00 +01:00
in
if (!do_compute) then
2018-02-19 16:01:13 +01:00
match vrr_v (m+1) angMom_a cm with
2018-02-10 22:27:00 +01:00
| None -> None
| Some v2 ->
2018-02-19 16:01:13 +01:00
begin
for l=0 to np-1 do
let f2_l = f2.(l)
and v2_l = v2.(l)
in
for k=0 to nq-1 do
f2_l.(k) <- -. v2_l.(k) *. f2_l.(k)
done
done;
Some f2
end
2018-02-22 01:38:47 +01:00
else None
2018-02-03 19:01:30 +01:00
in
2018-02-09 20:32:39 +01:00
2018-02-03 19:01:30 +01:00
let p1 =
2018-02-09 20:32:39 +01:00
match v1, v2 with
| None, None -> None
2018-02-11 01:05:30 +01:00
| None, Some v2 -> Some v2
| Some v1, None -> Some v1
2018-02-10 22:27:00 +01:00
| Some v1, Some v2 ->
2018-02-19 16:01:13 +01:00
begin
for l=0 to np-1 do
let v1_l = v1.(l)
and v2_l = v2.(l)
in
for k=0 to nq-1 do
v2_l.(k) <- v2_l.(k) +. v1_l.(k)
done
done;
Some v2
end
2018-02-03 19:01:30 +01:00
in
2018-02-09 20:32:39 +01:00
2018-02-23 18:41:30 +01:00
let cxyz = Po.get xyz angMom_c in
2018-02-03 19:01:30 +01:00
let p2 =
2018-02-19 16:01:13 +01:00
if cxyz < 2 then p1 else
2018-02-23 18:41:30 +01:00
let cmm = Po.decr xyz cm in
2018-02-10 22:27:00 +01:00
let fcm = (float_of_int (cxyz-1)) *. 0.5 in
2018-02-03 19:01:30 +01:00
let f1 =
2018-02-10 22:27:00 +01:00
Array.init nq (fun k ->
2019-03-12 13:48:55 +01:00
let x = fcm *. expo_q_inv.(k) in
2018-02-19 16:01:13 +01:00
if (!do_compute) then x
else (if abs_float x > cutoff then do_compute := true ; x)
)
2018-02-03 19:01:30 +01:00
in
let v1 =
2018-02-10 22:27:00 +01:00
if (!do_compute) then
2018-02-19 16:01:13 +01:00
match vrr_v m angMom_a cmm with
2018-02-10 22:27:00 +01:00
| None -> None
| Some v1 ->
2018-02-19 16:01:13 +01:00
begin
let result = Array.make_matrix np nq 0. in
for l=0 to np-1 do
let v1_l = v1.(l)
and result_l = result.(l)
in
for k=0 to nq-1 do
result_l.(k) <- v1_l.(k) *. f1.(k)
2018-02-10 22:27:00 +01:00
done;
2018-02-19 16:01:13 +01:00
done;
Some result
end
2018-02-09 20:32:39 +01:00
else None
2018-02-03 19:01:30 +01:00
in
2018-02-10 22:27:00 +01:00
2018-02-11 01:17:37 +01:00
let v3 =
2018-02-10 22:27:00 +01:00
let f2 =
Array.init nq (fun k ->
2019-03-12 13:48:55 +01:00
let x = expo_q_inv.(k) *. f1.(k) in
2018-02-19 16:01:13 +01:00
if (!do_compute) then x
else (if abs_float x > cutoff then do_compute := true ; x)
)
2018-02-10 22:27:00 +01:00
in
if (!do_compute) then
2018-02-19 16:01:13 +01:00
match vrr_v (m+1) angMom_a cmm with
2018-02-10 22:27:00 +01:00
| None -> None
2018-02-11 01:17:37 +01:00
| Some v3 ->
2018-02-19 16:01:13 +01:00
begin
let result = Array.make_matrix np nq 0. in
for l=0 to np-1 do
let v3_l = v3.(l)
and result_l = result.(l)
in
for k=0 to nq-1 do
result_l.(k) <- v3_l.(k) *. f2.(k)
done
done;
Some result
end
2018-02-09 20:32:39 +01:00
else None
2018-02-03 19:01:30 +01:00
in
2018-02-11 01:17:37 +01:00
match p1, v1, v3 with
2018-02-10 22:27:00 +01:00
| None, None, None -> None
2018-02-11 01:05:30 +01:00
| Some p1, None, None -> Some p1
| None, Some v1, None -> Some v1
2018-02-11 01:17:37 +01:00
| None, None, Some v3 -> Some v3
| Some p1, Some v1, Some v3 ->
2018-02-19 16:01:13 +01:00
begin
for l=0 to np-1 do
let v3_l = v3.(l)
and v1_l = v1.(l)
and p1_l = p1.(l)
in
for k=0 to nq-1 do
v3_l.(k) <- p1_l.(k) +. v1_l.(k) +. v3_l.(k)
done
done;
Some v3
end
2018-02-09 20:32:39 +01:00
| Some p1, Some v1, None ->
2018-02-19 16:01:13 +01:00
begin
for l=0 to np-1 do
let v1_l = v1.(l)
and p1_l = p1.(l)
in
for k=0 to nq-1 do
p1_l.(k) <- v1_l.(k) +. p1_l.(k)
done
done;
Some p1
end
2018-02-11 01:17:37 +01:00
| Some p1, None, Some v3 ->
2018-02-19 16:01:13 +01:00
begin
for l=0 to np-1 do
let v3_l = v3.(l)
and p1_l = p1.(l)
in
for k=0 to nq-1 do
p1_l.(k) <- p1_l.(k) +. v3_l.(k)
done
done;
Some p1
end
2018-02-11 01:17:37 +01:00
| None , Some v1, Some v3 ->
2018-02-19 16:01:13 +01:00
begin
for l=0 to np-1 do
let v3_l = v3.(l)
and v1_l = v1.(l)
in
for k=0 to nq-1 do
v3_l.(k) <- v1_l.(k) +. v3_l.(k)
done
done;
Some v3
end
2018-02-03 19:01:30 +01:00
in
2018-02-19 16:01:13 +01:00
if (axyz < 1) || (cxyz < 1) then p2 else
2018-02-23 18:41:30 +01:00
let am = Po.decr xyz angMom_a in
2018-02-19 16:01:13 +01:00
let v =
vrr_v (m+1) am cm
2018-02-03 19:01:30 +01:00
in
2018-02-19 16:01:13 +01:00
match (p2, v) with
| None, None -> None
| Some p2, None -> Some p2
| _, Some v ->
begin
let p2 =
match p2 with
| None -> Array.make_matrix np nq 0.
| Some p2 -> p2
in
for l=0 to np-1 do
2019-03-12 13:48:55 +01:00
let fa = (float_of_int axyz) *. expo_p_inv.(l) *. 0.5 in
2018-02-19 16:01:13 +01:00
let p2_l = p2.(l)
and v_l = v.(l)
in
for k=0 to nq-1 do
2019-03-12 13:48:55 +01:00
p2_l.(k) <- p2_l.(k) -. fa *. expo_q_inv.(k) *. v_l.(k)
2018-02-19 16:01:13 +01:00
done
done;
Some p2
end
2018-02-03 19:01:30 +01:00
end
2018-02-09 20:32:39 +01:00
in Zmap.add map_2d.(m) key result;
2018-02-03 19:01:30 +01:00
result
2018-01-25 01:28:10 +01:00
2018-02-23 00:58:54 +01:00
(*
2018-02-22 01:38:47 +01:00
and trr_v angMom_a angMom_c =
2018-02-23 18:41:30 +01:00
match (angMom_a.Po.tot, angMom_c.Po.tot) with
2018-02-23 03:25:25 +01:00
| (i,0) -> Some (vrr0_v angMom_a).(0)
2018-02-22 01:38:47 +01:00
| (_,_) ->
let key = Zkey.of_powers_six angMom_a angMom_c in
try Zmap.find map_2d.(0) key with
| Not_found ->
2018-02-22 18:20:45 +01:00
let xyz = get_xyz angMom_c in
2018-02-23 18:41:30 +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-22 18:20:45 +01:00
let expo_inv_q_over_p =
Array.mapi (fun l expo_inv_p_l ->
let expo_p_l = 1./.expo_inv_p_l in
Array.mapi (fun k expo_inv_q_k ->
2019-03-12 13:48:55 +01:00
expo_inv_q_k *. expo_p_l) expo_q_inv ) expo_p_inv
2018-02-22 18:20:45 +01:00
in
let result = None in
2018-02-22 01:38:47 +01:00
2018-02-22 18:20:45 +01:00
let result =
if cmxyz < 1 then result else
begin
let f = 0.5 *. (float_of_int cmxyz) in
2018-02-23 18:41:30 +01:00
let cmm = Po.decr xyz cm in
2018-02-22 18:20:45 +01:00
match result, trr_v angMom_a cmm with
2018-02-22 01:38:47 +01:00
| None, None -> None
2018-02-22 18:20:45 +01:00
| None, Some v3 ->
Some (Array.init np (fun l ->
let v3_l = v3.(l) in
Array.mapi (fun k v3_lk ->
2019-03-12 13:48:55 +01:00
expo_q_inv.(k) *. f *. v3_lk) v3_l
2018-02-22 18:20:45 +01:00
) )
2018-02-22 01:38:47 +01:00
| Some result, None -> Some result
2018-02-22 18:20:45 +01:00
| Some result, Some v3 ->
(Array.iteri (fun l v3_l ->
let result_l = result.(l) in
Array.iteri (fun k v3_lk ->
result_l.(k) <- result_l.(k) +.
2019-03-12 13:48:55 +01:00
expo_q_inv.(k) *. f *. v3_lk) v3_l
2018-02-22 18:20:45 +01:00
) v3 ; Some result)
end
in
let result =
begin
match result, trr_v angMom_a cm with
| Some result, None -> Some result
| Some result, Some v1 ->
(Array.iteri (fun l v1_l ->
let cpa = (center_pa xyz).(l)
and result_l = result.(l)
and expo_inv_q_over_p_l = expo_inv_q_over_p.(l)
in
Array.iteri (fun k v1_lk ->
let cqc = (center_qc xyz).(k) in
result_l.(k) <- result_l.(k) +.
(cqc +. expo_inv_q_over_p_l.(k) *. cpa) *. v1_lk
) v1_l
) v1 ; Some result)
| None, None -> None
| None, Some v1 ->
Some (Array.init np (fun l ->
let v1_l = v1.(l)
and cpa = (center_pa xyz).(l)
and expo_inv_q_over_p_l = expo_inv_q_over_p.(l)
in
Array.mapi (fun k v1_lk ->
let cqc = (center_qc xyz).(k) in
(cqc +. expo_inv_q_over_p_l.(k) *. cpa) *. v1_lk
) v1_l
) )
end
in
let result =
if cmxyz < 0 then result else
begin
2018-02-23 18:41:30 +01:00
let ap = Po.incr xyz angMom_a in
2018-02-22 18:20:45 +01:00
match result, trr_v ap cm with
| Some result, None -> Some result
| Some result, Some v4 ->
(Array.iteri (fun l v4_l ->
let result_l = result.(l) in
Array.iteri (fun k v4_lk ->
let expo_inv_q_over_p_l = expo_inv_q_over_p.(l) in
result_l.(k) <- result_l.(k)
-. expo_inv_q_over_p_l.(k) *. v4_lk) v4_l
) v4 ; Some result)
| None, None -> None
| None, Some v4 ->
Some (Array.init np (fun l ->
let v4_l = v4.(l) in
let expo_inv_q_over_p_l = expo_inv_q_over_p.(l) in
Array.mapi (fun k v4_lk ->
-. expo_inv_q_over_p_l.(k) *. v4_lk) v4_l
) )
end
in
let result =
if axyz < 1 then result else
begin
let f = 0.5 *. (float_of_int axyz) in
2018-02-23 18:41:30 +01:00
let am = Po.decr xyz angMom_a in
2018-02-22 18:20:45 +01:00
match result, trr_v am cm with
| Some result, None -> Some result
| Some result, Some v2 ->
(Array.iteri (fun l v2_l ->
let result_l = result.(l) in
Array.iteri (fun k v2_lk ->
result_l.(k) <- result_l.(k) +.
2019-03-12 13:48:55 +01:00
expo_q_inv.(k) *. f *. v2_lk) v2_l
2018-02-22 18:20:45 +01:00
) v2; Some result)
| None, None -> None
| None, Some v2 ->
Some (Array.init np (fun l ->
let v2_l = v2.(l) in
Array.mapi (fun k v2_lk ->
2019-03-12 13:48:55 +01:00
expo_q_inv.(k) *. f *. v2_lk) v2_l
2018-02-22 18:20:45 +01:00
) )
end
in
Zmap.add map_2d.(0) key result;
result
2018-02-23 00:58:54 +01:00
*)
2018-02-22 01:38:47 +01:00
in
let sum matrix =
Array.fold_left (fun accu c -> accu +. Array.fold_left (+.) 0. c) 0. matrix
in
2018-02-23 03:25:25 +01:00
let vrr_v a c =
2018-02-22 01:38:47 +01:00
let v =
2018-02-23 00:58:54 +01:00
(*
2018-02-23 18:41:30 +01:00
if c.Po.tot <> 0 then
2018-02-23 03:25:25 +01:00
vrr_v 0 a c
else trr_v a c
2018-02-23 00:58:54 +01:00
*)
2018-02-23 03:25:25 +01:00
vrr_v 0 a c
2018-02-22 01:38:47 +01:00
in
match v with
| Some matrix -> sum matrix
2018-02-23 03:25:25 +01:00
| None -> 0.
2018-02-22 01:38:47 +01:00
in
2018-01-25 01:28:10 +01:00
(** Horizontal recurrence relations *)
2018-02-22 01:38:47 +01:00
let rec hrr0_v angMom_a angMom_b angMom_c =
2018-01-25 01:28:10 +01:00
2018-02-23 18:41:30 +01:00
match angMom_b.Po.tot with
2018-01-29 22:48:09 +01:00
| 0 ->
begin
2018-02-23 18:41:30 +01:00
match (angMom_a.Po.tot, angMom_c.Po.tot) with
2018-02-22 01:38:47 +01:00
| (0,0) -> sum zero_m_array.(0)
| (_,_) -> vrr_v angMom_a angMom_c
2018-01-29 22:48:09 +01:00
end
2018-02-02 11:59:30 +01:00
| 1 ->
2018-02-19 11:24:15 +01:00
let xyz = get_xyz angMom_b in
2018-02-23 18:41:30 +01:00
let ap = Po.incr xyz angMom_a in
let f = Co.get xyz center_ab in
2018-02-22 01:38:47 +01:00
let v1 = vrr_v ap angMom_c in
2018-02-09 20:32:39 +01:00
if (abs_float f < cutoff) then v1 else
2018-02-22 01:38:47 +01:00
let v2 = vrr_v angMom_a angMom_c in
v1 +. v2 *. f
2018-01-25 01:28:10 +01:00
| _ ->
2018-02-19 11:24:15 +01:00
let xyz = get_xyz angMom_b in
2018-02-23 18:41:30 +01:00
let bxyz = Po.get xyz angMom_b in
2018-02-19 16:01:13 +01:00
if (bxyz < 0) then 0. else
2018-02-23 18:41:30 +01:00
let ap = Po.incr xyz angMom_a in
let bm = Po.decr xyz angMom_b in
2018-02-22 01:38:47 +01:00
let h1 = hrr0_v ap bm angMom_c in
2018-02-23 18:41:30 +01:00
let f = Co.get xyz center_ab in
2018-02-22 01:38:47 +01:00
if abs_float f < cutoff then h1 else
let h2 = hrr0_v angMom_a bm angMom_c in
h1 +. h2 *. f
2018-01-25 01:28:10 +01:00
2018-02-19 16:01:13 +01:00
and hrr_v angMom_a angMom_b angMom_c angMom_d =
2018-01-25 01:28:10 +01:00
2018-02-23 18:41:30 +01:00
match (angMom_b.Po.tot, angMom_d.Po.tot) with
| (_,0) -> if angMom_b.Po.tot = 0 then
2018-02-22 01:38:47 +01:00
vrr_v angMom_a angMom_c
2018-02-03 19:01:30 +01:00
else
2018-02-19 16:01:13 +01:00
hrr0_v angMom_a angMom_b angMom_c
2018-01-25 01:28:10 +01:00
| (_,_) ->
2018-02-19 11:24:15 +01:00
let xyz = get_xyz angMom_d in
2018-02-23 18:41:30 +01:00
let cp = Po.incr xyz angMom_c in
let dm = Po.decr xyz angMom_d in
2018-01-29 22:48:09 +01:00
let h1 =
2018-02-19 16:01:13 +01:00
hrr_v angMom_a angMom_b cp dm
2018-01-25 13:59:31 +01:00
in
2018-02-23 18:41:30 +01:00
let f = Co.get xyz center_cd in
2018-02-13 17:36:25 +01:00
if abs_float f < cutoff then
2018-02-10 03:37:00 +01:00
h1
else
let h2 =
2018-02-19 16:01:13 +01:00
hrr_v angMom_a angMom_b angMom_c dm
2018-02-10 03:37:00 +01:00
in h1 +. f *. h2
2018-01-25 01:28:10 +01:00
in
2018-02-12 00:05:33 +01:00
hrr_v angMom_a angMom_b angMom_c angMom_d
2018-01-25 01:28:10 +01:00
2018-01-29 22:48:09 +01:00
2018-01-25 01:28:10 +01:00
let contracted_class_shell_pairs ~zero_m ?schwartz_p ?schwartz_q shell_p shell_q : float Zmap.t =
2018-03-21 15:01:39 +01:00
let sp = Csp.shell_pairs shell_p
and sq = Csp.shell_pairs shell_q
and cp = Csp.coefficients shell_p
and cq = Csp.coefficients shell_q
2018-02-11 02:30:19 +01:00
in
let np, nq =
2018-03-21 10:59:22 +01:00
Array.length sp,
Array.length sq
2018-02-11 02:30:19 +01:00
in
2018-03-21 15:01:39 +01:00
try
match Cspc.make ~cutoff shell_p shell_q with
| None -> raise NullQuartet
| Some shell_pair_couple ->
2018-02-11 02:30:19 +01:00
2018-03-21 15:01:39 +01:00
let shell_a = Cspc.shell_a shell_pair_couple
and shell_c = Cspc.shell_c shell_pair_couple
in
2018-01-25 01:28:10 +01:00
2018-03-21 15:01:39 +01:00
let maxm = Am.to_int (Cspc.ang_mom shell_pair_couple) in
2018-02-10 01:07:34 +01:00
2018-02-09 19:41:22 +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-12 00:56:32 +01:00
2018-03-21 15:01:39 +01:00
let contracted_class =
Array.make (Array.length class_indices) 0.;
2018-02-11 02:30:19 +01:00
in
2018-03-21 15:01:39 +01:00
let monocentric =
Cspc.monocentric shell_pair_couple
2018-02-10 01:07:34 +01:00
in
2018-02-11 02:30:19 +01:00
2018-03-21 15:01:39 +01:00
(* Compute all integrals in the shell for each pair of significant shell pairs *)
2018-01-29 15:29:38 +01:00
2018-03-21 15:01:39 +01:00
begin
match Cspc.ang_mom shell_pair_couple with
| Am.S ->
contracted_class.(0) <-
begin
try
2019-03-12 13:48:55 +01:00
let expo_p_inv =
2018-03-21 15:01:39 +01:00
Vec.init np (fun ab -> Psp.exponent_inv sp.(ab-1))
2019-03-12 13:48:55 +01:00
and expo_q_inv =
2018-03-21 15:01:39 +01:00
Vec.init nq (fun cd -> Psp.exponent_inv sq.(cd-1))
2018-02-22 01:38:47 +01:00
in
2018-03-21 15:01:39 +01:00
let coef =
let result = Mat.make0 nq np in
Lacaml.D.ger (Vec.of_array @@ cq) (Vec.of_array @@ cp) result;
result
2018-02-22 01:38:47 +01:00
in
2018-03-21 15:01:39 +01:00
let zm_array = Mat.init_cols np nq (fun i j ->
try
if (abs_float coef.{j,i} ) < 1.e-3*.cutoff then
raise NullQuartet;
2019-03-12 13:48:55 +01:00
let expo_p_inv, expo_q_inv =
expo_p_inv.{i}, expo_q_inv.{j}
2018-02-13 17:36:25 +01:00
in
2018-02-10 22:19:13 +01:00
2018-03-21 15:01:39 +01:00
let center_pq =
Co.(Psp.center sp.(i-1) |- Psp.center sq.(j-1))
2019-03-13 22:02:08 +01:00
and center_pa =
Co.(Psp.center sp.(i-1) |- Cs.center shell_a)
and center_qc =
Co.(Psp.center sq.(i-1) |- Cs.center shell_c)
2018-03-21 15:01:39 +01:00
in
let norm_pq_sq =
Co.dot center_pq center_pq
in
2019-03-13 22:02:08 +01:00
let normalization = Psp.normalization sp.(i-1) *.
Psp.normalization sq.(i-1)
in
2018-03-21 15:01:39 +01:00
let zero_m_array =
2019-03-13 22:02:08 +01:00
zero_m Zp.{
maxm=0 ; expo_p_inv ; expo_q_inv ; norm_pq_sq ;
center_pq ; center_pa ; center_qc ; normalization ;
}
2018-03-21 15:01:39 +01:00
in
zero_m_array.(0)
with NullQuartet -> 0.
2018-06-27 13:13:59 +02:00
)
in
Mat.gemm_trace zm_array coef
2018-03-21 15:01:39 +01:00
with (Invalid_argument _) -> 0.
end
| _ ->
let coef =
Array.init np (fun l -> Array.init nq (fun k -> cq.(k) *. cp.(l)) )
in
let norm = Cspc.norm_scales shell_pair_couple in
2019-03-12 13:48:55 +01:00
let expo_p_inv =
2018-03-21 15:01:39 +01:00
Array.map (fun shell_ab -> Psp.exponent_inv shell_ab) sp
2019-03-12 13:48:55 +01:00
and expo_q_inv =
2018-03-21 15:01:39 +01:00
Array.map (fun shell_cd -> Psp.exponent_inv shell_cd) sq
in
let expo_b =
Array.map (fun shell_ab -> Ps.exponent (Psp.shell_b shell_ab) ) sp
and expo_d =
Array.map (fun shell_cd -> Ps.exponent (Psp.shell_b shell_cd) ) sq
in
let center_pq =
let result =
Array.init 3 (fun xyz ->
Array.init np (fun ab ->
let shell_ab = sp.(ab) in
Array.init nq (fun cd ->
let shell_cd = sq.(cd)
in
let cpq =
Co.(Psp.center shell_ab |- Psp.center shell_cd)
in
match xyz with
2020-01-20 09:42:16 +01:00
| 0 -> Co.get X cpq;
| 1 -> Co.get Y cpq;
| _ -> Co.get Z cpq;
2018-03-21 15:01:39 +01:00
)
)
)
in function
| Co.X -> result.(0)
| Co.Y -> result.(1)
| Co.Z -> result.(2)
in
let center_pa =
let result =
Array.init 3 (fun xyz ->
Array.init np (fun ab ->
let shell_ab = sp.(ab) in
let cpa =
Co.(Psp.center shell_ab |- Cs.center shell_a)
in
match xyz with
| 0 -> Co.(get X cpa);
| 1 -> Co.(get Y cpa);
| _ -> Co.(get Z cpa);
)
)
in function
| Co.X -> result.(0)
| Co.Y -> result.(1)
| Co.Z -> result.(2)
in
let center_qc =
let result =
Array.init 3 (fun xyz ->
Array.init nq (fun cd ->
let shell_cd = sq.(cd) in
let cqc =
Co.(Psp.center shell_cd |- Cs.center shell_c)
in
match xyz with
| 0 -> Co.(get X cqc);
| 1 -> Co.(get Y cqc);
| _ -> Co.(get Z cqc);
)
)
in function
| Co.X -> result.(0)
| Co.Y -> result.(1)
| Co.Z -> result.(2)
in
let zero_m_array =
let result =
Array.init (maxm+1) (fun _ ->
Array.init np (fun _ -> Array.make nq 0. ) )
2018-02-02 18:51:17 +01:00
in
2018-03-21 15:01:39 +01:00
let empty = Array.make (maxm+1) 0. in
2019-03-13 22:02:08 +01:00
let center_qc_tmp = Array.init nq (fun cd ->
Coordinate.make { Coordinate.
2019-03-13 22:02:08 +01:00
x = (center_qc Co.X).(cd) ;
y = (center_qc Co.Y).(cd) ;
z = (center_qc Co.Z).(cd) ;
})
in
2018-03-21 15:01:39 +01:00
Array.iteri (fun ab shell_ab ->
let center_pa = Coordinate.make { Coordinate.
2019-03-13 22:02:08 +01:00
x = (center_pa Co.X).(ab) ;
y = (center_pa Co.Y).(ab) ;
z = (center_pa Co.Z).(ab) ;
}
in
2018-03-21 15:01:39 +01:00
let zero_m_array_tmp =
Array.mapi (fun cd shell_cd ->
if (abs_float coef.(ab).(cd) < cutoff) then
empty
else
2019-03-12 13:48:55 +01:00
let expo_p_inv, expo_q_inv =
expo_p_inv.(ab), expo_q_inv.(cd)
2018-03-21 15:01:39 +01:00
in
2020-01-20 09:42:16 +01:00
let x = (center_pq X).(ab).(cd)
and y = (center_pq Y).(ab).(cd)
and z = (center_pq Z).(ab).(cd)
2019-03-13 22:02:08 +01:00
in
2018-03-21 15:01:39 +01:00
let norm_pq_sq =
x *. x +. y *. y +. z *. z
in
2019-03-13 22:02:08 +01:00
let normalization = Psp.normalization shell_ab *.
Psp.normalization shell_cd
in
zero_m Zp.{
maxm ; expo_p_inv ; expo_q_inv ; norm_pq_sq ;
center_pq = Coordinate.make Coordinate.{x ; y ; z} ;
2019-03-13 22:02:08 +01:00
center_pa ; center_qc = center_qc_tmp.(cd) ;
normalization ;
}
2018-03-21 15:01:39 +01:00
) sq
2018-03-15 10:26:05 +01:00
in
2018-03-21 15:01:39 +01:00
(* Transpose result *)
let coef_ab = coef.(ab) in
for m=0 to maxm do
let result_m_ab = result.(m).(ab)
in
for cd=0 to nq-1 do
result_m_ab.(cd) <- zero_m_array_tmp.(cd).(m) *. coef_ab.(cd)
done
2018-02-09 19:41:22 +01:00
done
2018-03-21 15:01:39 +01:00
) sp;
result
2018-02-11 23:41:18 +01:00
in
2018-02-09 19:41:22 +01:00
2018-03-21 15:01:39 +01:00
let map_1d = Zmap.create (4*maxm)
and map_2d = Array.init (maxm+1) (fun _ -> Zmap.create (Array.length class_indices))
in
2018-02-03 19:01:30 +01:00
(* Compute the integral class from the primitive shell quartet *)
2018-03-21 15:01:39 +01:00
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
2020-01-20 09:42:16 +01:00
if ( ((1 land angMom_a.x + angMom_b.x + angMom_c.x + angMom_d.x) =1) ||
((1 land angMom_a.y + angMom_b.y + angMom_c.y + angMom_d.y) =1) ||
((1 land angMom_a.z + angMom_b.z + angMom_c.z + angMom_d.z) =1)
2018-03-21 15:01:39 +01:00
) then
raise NullQuartet
end;
2018-02-12 00:56:32 +01:00
2018-03-21 15:01:39 +01:00
(* Schwartz screening *)
if (np+nq> 24) then
2018-02-12 00:56:32 +01:00
(
let schwartz_p =
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_twelve
2018-03-21 15:01:39 +01:00
angMom_a angMom_b angMom_a angMom_b
2018-02-12 00:56:32 +01:00
in
match schwartz_p with
| None -> 1.
| Some schwartz_p -> Zmap.find schwartz_p key
in
if schwartz_p < cutoff then raise NullQuartet;
let schwartz_q =
2018-02-22 01:38:47 +01:00
let key = Zkey.of_powers_twelve
2018-03-21 15:01:39 +01:00
angMom_c angMom_d angMom_c angMom_d
2018-02-12 00:56:32 +01:00
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-03-21 15:01:39 +01:00
);
2019-03-12 13:48:55 +01:00
let abcd =
{ expo_b ; expo_d ; expo_p_inv ; expo_q_inv ;
center_ab = Csp.a_minus_b shell_p;
center_cd = Csp.a_minus_b shell_q ;
center_pq ; center_pa ;
center_qc ; zero_m_array }
in
2018-03-21 15:01:39 +01:00
let integral =
hvrr_two_e_vector (angMom_a, angMom_b, angMom_c, angMom_d)
2019-03-12 13:48:55 +01:00
abcd map_1d map_2d np nq
2018-03-21 15:01:39 +01:00
in
contracted_class.(i) <- contracted_class.(i) +. integral *. norm.(i)
with NullQuartet -> ()
) class_indices
2018-01-25 13:59:31 +01:00
2018-03-21 15:01:39 +01:00
end;
2018-01-25 01:28:10 +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
with NullQuartet -> empty
2018-01-25 01:28:10 +01:00