2018-01-25 01:28:10 +01:00
|
|
|
open Util
|
2018-02-09 19:41:22 +01:00
|
|
|
open Lacaml.D
|
|
|
|
open Bigarray
|
2018-02-19 11:24:15 +01:00
|
|
|
open Powers
|
2018-02-13 17:36:25 +01:00
|
|
|
open Coordinate
|
2018-01-25 01:28:10 +01:00
|
|
|
|
2018-02-02 01:25:10 +01:00
|
|
|
let cutoff = Constants.cutoff
|
2018-01-25 01:28:10 +01:00
|
|
|
let cutoff2 = cutoff *. cutoff
|
|
|
|
|
|
|
|
exception NullQuartet
|
2018-01-31 15:05:01 +01:00
|
|
|
exception Found
|
|
|
|
|
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
|
|
|
|
|
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)
|
2018-02-19 16:01:13 +01:00
|
|
|
zero_m_array
|
2018-01-25 01:28:10 +01:00
|
|
|
(expo_b, expo_d)
|
|
|
|
(expo_inv_p, expo_inv_q)
|
2018-01-25 13:59:31 +01:00
|
|
|
(center_ab, center_cd, center_pq)
|
2018-02-22 01:38:47 +01:00
|
|
|
(center_pa, center_qc)
|
2018-02-10 03:37:00 +01:00
|
|
|
map_1d map_2d np nq
|
2018-01-25 01:28:10 +01:00
|
|
|
=
|
|
|
|
|
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
|
|
|
|
| { y=0 ; z=0 ; _ } -> X
|
|
|
|
| { z=0 ; _ } -> Y
|
|
|
|
| _ -> 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-19 16:01:13 +01:00
|
|
|
match angMom_a.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 00:58:54 +01:00
|
|
|
let am = Powers.decr xyz angMom_a in
|
2018-02-21 17:27:31 +01:00
|
|
|
let cab = Coordinate.get xyz center_ab in
|
2018-02-23 02:02:53 +01:00
|
|
|
let result = Array.init (maxm+1-angMom_a.tot) (fun _ -> Array.make_matrix np nq 0.) in
|
|
|
|
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
|
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 ->
|
|
|
|
let f0 = -. expo_b.(l) *. expo_inv_p.(l) *. cab
|
|
|
|
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;
|
|
|
|
let amxyz = Powers.get xyz am in
|
|
|
|
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
|
|
|
|
) expo_inv_p
|
2018-02-21 17:27:31 +01:00
|
|
|
else
|
2018-02-19 16:01:13 +01:00
|
|
|
begin
|
2018-02-21 17:27:31 +01:00
|
|
|
let amm = Powers.decr xyz am in
|
|
|
|
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 ->
|
2018-02-21 17:27:31 +01:00
|
|
|
let f = amxyz *. expo_inv_p.(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
|
|
|
|
) expo_inv_p
|
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-19 16:01:13 +01:00
|
|
|
match (angMom_a.tot, angMom_c.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-19 16:01:13 +01:00
|
|
|
let cm = Powers.decr xyz angMom_c in
|
|
|
|
let axyz = Powers.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-13 17:36:25 +01:00
|
|
|
let f = -. (Coordinate.get xyz center_cd) in
|
2018-02-11 01:05:30 +01:00
|
|
|
|
|
|
|
let f1 =
|
|
|
|
Array.init nq (fun k ->
|
2018-02-19 16:01:13 +01:00
|
|
|
let x = expo_d.(k) *. expo_inv_q.(k) *. f in
|
|
|
|
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 ->
|
|
|
|
let x = expo_inv_q.(k) *. cpq_l.(k) in
|
|
|
|
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-19 11:24:15 +01:00
|
|
|
let cxyz = Powers.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
|
|
|
|
let cmm = Powers.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 ->
|
2018-02-19 16:01:13 +01:00
|
|
|
let x = fcm *. expo_inv_q.(k) in
|
|
|
|
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 ->
|
2018-02-19 16:01:13 +01:00
|
|
|
let x = expo_inv_q.(k) *. f1.(k) in
|
|
|
|
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
|
|
|
|
let am = Powers.decr xyz angMom_a in
|
|
|
|
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
|
|
|
|
let fa = (float_of_int axyz) *. expo_inv_p.(l) *. 0.5 in
|
|
|
|
let p2_l = p2.(l)
|
|
|
|
and v_l = v.(l)
|
|
|
|
in
|
|
|
|
for k=0 to nq-1 do
|
|
|
|
p2_l.(k) <- p2_l.(k) -. fa *. expo_inv_q.(k) *. v_l.(k)
|
|
|
|
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 =
|
|
|
|
|
|
|
|
match (angMom_a.tot, angMom_c.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
|
|
|
|
let axyz = Powers.get xyz angMom_a in
|
|
|
|
let cm = Powers.decr xyz angMom_c in
|
|
|
|
let cmxyz = Powers.get xyz cm in
|
|
|
|
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 ->
|
|
|
|
expo_inv_q_k *. expo_p_l) expo_inv_q ) expo_inv_p
|
|
|
|
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
|
|
|
|
let cmm = Powers.decr xyz cm in
|
|
|
|
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 ->
|
|
|
|
expo_inv_q.(k) *. f *. v3_lk) v3_l
|
|
|
|
) )
|
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) +.
|
|
|
|
expo_inv_q.(k) *. f *. v3_lk) v3_l
|
|
|
|
) 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
|
|
|
|
let ap = Powers.incr xyz angMom_a in
|
|
|
|
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
|
|
|
|
let am = Powers.decr xyz angMom_a in
|
|
|
|
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) +.
|
|
|
|
expo_inv_q.(k) *. f *. v2_lk) v2_l
|
|
|
|
) 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 ->
|
|
|
|
expo_inv_q.(k) *. f *. v2_lk) v2_l
|
|
|
|
) )
|
|
|
|
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 03:25:25 +01:00
|
|
|
if c.tot <> 0 then
|
|
|
|
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-19 16:01:13 +01:00
|
|
|
match angMom_b.tot with
|
2018-01-29 22:48:09 +01:00
|
|
|
| 0 ->
|
|
|
|
begin
|
2018-02-19 16:01:13 +01:00
|
|
|
match (angMom_a.tot, angMom_c.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
|
|
|
|
let ap = Powers.incr xyz angMom_a in
|
|
|
|
let f = Coordinate.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
|
|
|
|
let bxyz = Powers.get xyz angMom_b in
|
2018-02-19 16:01:13 +01:00
|
|
|
if (bxyz < 0) then 0. else
|
2018-02-22 01:38:47 +01:00
|
|
|
let ap = Powers.incr xyz angMom_a in
|
|
|
|
let bm = Powers.decr xyz angMom_b in
|
|
|
|
let h1 = hrr0_v ap bm angMom_c in
|
|
|
|
let f = Coordinate.get xyz center_ab in
|
|
|
|
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-19 16:01:13 +01:00
|
|
|
match (angMom_b.tot, angMom_d.tot) with
|
|
|
|
| (_,0) -> if angMom_b.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
|
|
|
|
let cp = Powers.incr xyz angMom_c in
|
2018-02-19 16:01:13 +01:00
|
|
|
let dm = Powers.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-13 17:36:25 +01:00
|
|
|
let f = Coordinate.get xyz center_cd in
|
|
|
|
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-02-09 19:41:22 +01:00
|
|
|
let shell_a = shell_p.ContractedShellPair.shell_a
|
|
|
|
and shell_b = shell_p.ContractedShellPair.shell_b
|
|
|
|
and shell_c = shell_q.ContractedShellPair.shell_a
|
|
|
|
and shell_d = shell_q.ContractedShellPair.shell_b
|
|
|
|
and sp = shell_p.ContractedShellPair.shell_pairs
|
|
|
|
and sq = shell_q.ContractedShellPair.shell_pairs
|
2018-01-25 01:28:10 +01:00
|
|
|
in
|
|
|
|
let maxm =
|
2018-02-10 03:37:00 +01:00
|
|
|
shell_p.ContractedShellPair.totAngMomInt +
|
|
|
|
shell_q.ContractedShellPair.totAngMomInt
|
2018-01-25 01:28:10 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
(* Pre-computation of integral class indices *)
|
|
|
|
let class_indices =
|
|
|
|
Angular_momentum.zkey_array
|
|
|
|
(Angular_momentum.Quartet
|
|
|
|
Contracted_shell.(totAngMom shell_a, totAngMom shell_b,
|
|
|
|
totAngMom shell_c, totAngMom shell_d))
|
|
|
|
in
|
|
|
|
|
|
|
|
let contracted_class =
|
|
|
|
Array.make (Array.length class_indices) 0.;
|
|
|
|
in
|
|
|
|
|
2018-02-12 00:05:33 +01:00
|
|
|
let monocentric =
|
|
|
|
shell_p.ContractedShellPair.monocentric &&
|
2018-02-12 00:56:32 +01:00
|
|
|
shell_q.ContractedShellPair.monocentric &&
|
|
|
|
Contracted_shell.center shell_p.ContractedShellPair.shell_a =
|
|
|
|
Contracted_shell.center shell_q.ContractedShellPair.shell_a
|
2018-02-12 00:05:33 +01:00
|
|
|
in
|
|
|
|
|
2018-02-11 02:30:19 +01:00
|
|
|
(** Screening on the product of coefficients *)
|
|
|
|
let coef_max_p =
|
|
|
|
Array.fold_left (fun accu x ->
|
|
|
|
if (abs_float x) > accu then (abs_float x) else accu)
|
|
|
|
0. shell_p.ContractedShellPair.coef
|
|
|
|
and coef_max_q =
|
|
|
|
Array.fold_left (fun accu x ->
|
|
|
|
if (abs_float x) > accu then (abs_float x) else accu)
|
|
|
|
0. shell_q.ContractedShellPair.coef
|
|
|
|
in
|
|
|
|
|
|
|
|
let rec build_list cutoff vec accu = function
|
|
|
|
| -1 -> Array.of_list accu
|
|
|
|
| k -> build_list cutoff vec (
|
|
|
|
if (abs_float vec.(k) > cutoff) then (k::accu)
|
|
|
|
else accu ) (k-1)
|
|
|
|
in
|
|
|
|
let p_list =
|
|
|
|
let vec = shell_p.ContractedShellPair.coef in
|
|
|
|
build_list (cutoff /. coef_max_q) vec [] (Array.length vec - 1)
|
|
|
|
and q_list =
|
|
|
|
let vec = shell_q.ContractedShellPair.coef in
|
|
|
|
build_list (cutoff /. coef_max_p) vec [] (Array.length vec - 1)
|
|
|
|
in
|
|
|
|
|
|
|
|
let np, nq =
|
|
|
|
Array.length p_list,
|
|
|
|
Array.length q_list
|
|
|
|
in
|
|
|
|
let filter_p vec = Array.init np (fun k -> vec.(p_list.(k)))
|
|
|
|
and filter_q vec = Array.init nq (fun k -> vec.(q_list.(k)))
|
|
|
|
in
|
|
|
|
let sp = filter_p sp
|
|
|
|
and sq = filter_q sq
|
|
|
|
in
|
|
|
|
|
|
|
|
|
2018-01-25 01:28:10 +01:00
|
|
|
(* Compute all integrals in the shell for each pair of significant shell pairs *)
|
|
|
|
|
|
|
|
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-11 02:41:55 +01:00
|
|
|
contracted_class.(0) <-
|
|
|
|
begin
|
2018-02-11 02:30:19 +01:00
|
|
|
try
|
2018-02-11 02:41:55 +01:00
|
|
|
let expo_inv_p =
|
|
|
|
Vec.init np (fun ab -> sp.(ab-1).ShellPair.expo_inv)
|
|
|
|
and expo_inv_q =
|
|
|
|
Vec.init nq (fun cd -> sq.(cd-1).ShellPair.expo_inv)
|
|
|
|
in
|
2018-02-10 01:07:34 +01:00
|
|
|
|
2018-02-11 02:41:55 +01:00
|
|
|
let coef =
|
|
|
|
let result = Mat.make0 nq np in
|
|
|
|
Lacaml.D.ger
|
|
|
|
(Vec.of_array @@ filter_q shell_q.ContractedShellPair.coef)
|
|
|
|
(Vec.of_array @@ filter_p shell_p.ContractedShellPair.coef)
|
|
|
|
result;
|
|
|
|
result
|
|
|
|
in
|
|
|
|
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;
|
2018-02-09 19:41:22 +01:00
|
|
|
|
2018-02-11 02:41:55 +01:00
|
|
|
let expo_pq_inv =
|
|
|
|
expo_inv_p.{i} +. expo_inv_q.{j}
|
|
|
|
in
|
2018-02-12 00:56:32 +01:00
|
|
|
|
2018-02-11 02:41:55 +01:00
|
|
|
let center_pq =
|
2018-02-13 17:36:25 +01:00
|
|
|
sp.(i-1).ShellPair.center |- sq.(j-1).ShellPair.center
|
2018-02-11 02:41:55 +01:00
|
|
|
in
|
|
|
|
let norm_pq_sq =
|
|
|
|
Coordinate.dot center_pq center_pq
|
|
|
|
in
|
2018-02-09 19:41:22 +01:00
|
|
|
|
2018-02-11 02:41:55 +01:00
|
|
|
let zero_m_array =
|
|
|
|
zero_m ~maxm:0 ~expo_pq_inv ~norm_pq_sq
|
|
|
|
in
|
|
|
|
zero_m_array.(0)
|
|
|
|
with NullQuartet -> 0.
|
|
|
|
) in
|
|
|
|
Mat.gemm_trace zm_array coef
|
2018-02-11 02:30:19 +01:00
|
|
|
with (Invalid_argument _) -> 0.
|
2018-02-11 02:41:55 +01:00
|
|
|
end
|
2018-01-25 01:28:10 +01:00
|
|
|
| _ ->
|
2018-02-11 02:30:19 +01:00
|
|
|
|
|
|
|
let coef =
|
|
|
|
let cp = filter_p shell_p.ContractedShellPair.coef
|
|
|
|
and cq = filter_q shell_q.ContractedShellPair.coef
|
|
|
|
in
|
|
|
|
Array.init np (fun l -> Array.init nq (fun k -> cq.(k) *. cp.(l)) )
|
|
|
|
in
|
|
|
|
|
2018-02-10 01:07:34 +01:00
|
|
|
let expo_inv_p =
|
2018-02-11 02:30:19 +01:00
|
|
|
Array.map (fun shell_ab -> shell_ab.ShellPair.expo_inv) sp
|
2018-02-10 01:07:34 +01:00
|
|
|
and expo_inv_q =
|
2018-02-11 02:30:19 +01:00
|
|
|
Array.map (fun shell_cd -> shell_cd.ShellPair.expo_inv) sq
|
2018-02-10 01:07:34 +01:00
|
|
|
in
|
2018-02-11 02:30:19 +01:00
|
|
|
|
2018-02-09 19:41:22 +01:00
|
|
|
let expo_b =
|
|
|
|
Array.map (fun shell_ab -> Contracted_shell.expo shell_b shell_ab.ShellPair.j) sp
|
|
|
|
and expo_d =
|
|
|
|
Array.map (fun shell_cd -> Contracted_shell.expo shell_d shell_cd.ShellPair.j) sq
|
|
|
|
in
|
|
|
|
let norm_coef_scale_p = shell_p.ContractedShellPair.norm_coef_scale in
|
2018-01-29 15:29:38 +01:00
|
|
|
|
2018-02-09 19:41:22 +01:00
|
|
|
let center_pq =
|
2018-02-13 17:36:25 +01:00
|
|
|
let result =
|
2018-02-09 20:32:39 +01:00
|
|
|
Array.init 3 (fun xyz ->
|
2018-02-10 01:07:34 +01:00
|
|
|
Array.init np (fun ab ->
|
|
|
|
let shell_ab = sp.(ab) in
|
|
|
|
Array.init nq (fun cd ->
|
|
|
|
let shell_cd = sq.(cd)
|
|
|
|
in
|
|
|
|
let cpq =
|
2018-02-13 17:36:25 +01:00
|
|
|
shell_ab.ShellPair.center |- shell_cd.ShellPair.center
|
2018-02-10 01:07:34 +01:00
|
|
|
in
|
|
|
|
match xyz with
|
2018-02-13 17:36:25 +01:00
|
|
|
| 0 -> Coordinate.get X cpq;
|
|
|
|
| 1 -> Coordinate.get Y cpq;
|
2018-02-22 01:38:47 +01:00
|
|
|
| _ -> Coordinate.get Z cpq;
|
2018-02-10 01:07:34 +01:00
|
|
|
)
|
2018-02-09 20:32:39 +01:00
|
|
|
)
|
2018-02-10 01:07:34 +01:00
|
|
|
)
|
2018-02-13 17:36:25 +01:00
|
|
|
in function
|
|
|
|
| X -> result.(0)
|
|
|
|
| Y -> result.(1)
|
|
|
|
| Z -> result.(2)
|
2018-02-09 19:41:22 +01:00
|
|
|
in
|
2018-02-22 01:38:47 +01:00
|
|
|
let center_pa =
|
|
|
|
let result =
|
|
|
|
Array.init 3 (fun xyz ->
|
|
|
|
Array.init np (fun ab ->
|
|
|
|
let shell_ab = sp.(ab) in
|
|
|
|
let cpa =
|
|
|
|
shell_ab.ShellPair.center |- Contracted_shell.center shell_a
|
|
|
|
in
|
|
|
|
match xyz with
|
|
|
|
| 0 -> Coordinate.get X cpa;
|
|
|
|
| 1 -> Coordinate.get Y cpa;
|
|
|
|
| _ -> Coordinate.get Z cpa;
|
|
|
|
)
|
|
|
|
)
|
|
|
|
in function
|
|
|
|
| X -> result.(0)
|
|
|
|
| Y -> result.(1)
|
|
|
|
| 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 =
|
|
|
|
shell_cd.ShellPair.center |- Contracted_shell.center shell_c
|
|
|
|
in
|
|
|
|
match xyz with
|
|
|
|
| 0 -> Coordinate.get X cqc;
|
|
|
|
| 1 -> Coordinate.get Y cqc;
|
|
|
|
| _ -> Coordinate.get Z cqc;
|
|
|
|
)
|
|
|
|
)
|
|
|
|
in function
|
|
|
|
| X -> result.(0)
|
|
|
|
| Y -> result.(1)
|
|
|
|
| Z -> result.(2)
|
|
|
|
in
|
2018-02-09 19:41:22 +01:00
|
|
|
let zero_m_array =
|
|
|
|
let result =
|
2018-02-10 01:07:34 +01:00
|
|
|
Array.init (maxm+1) (fun _ ->
|
|
|
|
Array.init np (fun _ -> Array.make nq 0. ) )
|
2018-02-09 19:41:22 +01:00
|
|
|
in
|
2018-02-10 22:19:13 +01:00
|
|
|
let empty = Array.make (maxm+1) 0. in
|
2018-02-09 19:41:22 +01:00
|
|
|
Array.iteri (fun ab shell_ab ->
|
|
|
|
let zero_m_array_tmp =
|
|
|
|
Array.mapi (fun cd shell_cd ->
|
2018-02-10 22:19:13 +01:00
|
|
|
if (abs_float coef.(ab).(cd) < cutoff) then
|
|
|
|
empty
|
|
|
|
else
|
|
|
|
let expo_pq_inv =
|
|
|
|
expo_inv_p.(ab) +. expo_inv_q.(cd)
|
|
|
|
in
|
|
|
|
let norm_pq_sq =
|
2018-02-13 17:36:25 +01:00
|
|
|
let x = (center_pq X).(ab).(cd)
|
|
|
|
and y = (center_pq Y).(ab).(cd)
|
|
|
|
and z = (center_pq Z).(ab).(cd)
|
|
|
|
in
|
|
|
|
x *. x +. y *. y +. z *. z
|
2018-02-10 22:19:13 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
zero_m ~maxm ~expo_pq_inv ~norm_pq_sq
|
2018-02-09 19:41:22 +01:00
|
|
|
) sq
|
2018-02-02 18:51:17 +01:00
|
|
|
in
|
2018-02-09 19:41:22 +01:00
|
|
|
(* Transpose result *)
|
|
|
|
for m=0 to maxm do
|
2018-02-10 01:07:34 +01:00
|
|
|
for cd=0 to nq-1 do
|
2018-02-10 03:37:00 +01:00
|
|
|
result.(m).(ab).(cd) <- zero_m_array_tmp.(cd).(m) *. coef.(ab).(cd)
|
2018-02-09 19:41:22 +01:00
|
|
|
done
|
|
|
|
done
|
|
|
|
) sp;
|
|
|
|
result
|
|
|
|
in
|
2018-02-02 18:51:17 +01:00
|
|
|
|
2018-02-09 19:41:22 +01:00
|
|
|
let norm =
|
2018-02-11 23:41:18 +01:00
|
|
|
let norm_coef_scale_q =
|
|
|
|
shell_q.ContractedShellPair.norm_coef_scale
|
|
|
|
in
|
|
|
|
Array.to_list norm_coef_scale_p
|
|
|
|
|> List.map (fun v1 ->
|
|
|
|
Array.map (fun v2 -> v1 *. v2) norm_coef_scale_q)
|
2018-02-09 19:41:22 +01:00
|
|
|
|> Array.concat
|
|
|
|
in
|
|
|
|
|
2018-02-23 02:02:53 +01:00
|
|
|
let map_1d = Zmap.create (4*maxm)
|
2018-02-10 03:37:00 +01:00
|
|
|
and map_2d = Array.init (maxm+1) (fun _ -> Zmap.create (Array.length class_indices))
|
2018-02-09 19:41:22 +01:00
|
|
|
in
|
2018-02-03 19:01:30 +01:00
|
|
|
(* Compute the integral class from the primitive shell quartet *)
|
2018-02-09 19:41:22 +01:00
|
|
|
Array.iteri (fun i key ->
|
2018-02-19 16:01:13 +01:00
|
|
|
let (angMom_a,angMom_b,angMom_c,angMom_d) =
|
|
|
|
match Zkey.to_powers ~kind:Zkey.Kind_12 key with
|
2018-02-12 00:05:33 +01:00
|
|
|
| Zkey.Twelve x -> x
|
|
|
|
| _ -> assert false
|
2018-02-09 19:41:22 +01:00
|
|
|
in
|
2018-02-12 00:05:33 +01:00
|
|
|
try
|
2018-02-19 16:01:13 +01:00
|
|
|
if monocentric then
|
|
|
|
begin
|
|
|
|
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)
|
|
|
|
) then
|
|
|
|
raise NullQuartet
|
|
|
|
end;
|
2018-02-12 00:56:32 +01:00
|
|
|
|
|
|
|
(* Schwartz screening *)
|
|
|
|
if (np+nq> 24) then
|
|
|
|
(
|
|
|
|
let schwartz_p =
|
2018-02-22 01:38:47 +01:00
|
|
|
let key = Zkey.of_powers_twelve
|
|
|
|
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
|
|
|
|
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-02-12 00:05:33 +01:00
|
|
|
let integral =
|
2018-02-19 16:01:13 +01:00
|
|
|
hvrr_two_e_vector (angMom_a, angMom_b, angMom_c, angMom_d)
|
|
|
|
zero_m_array
|
2018-02-12 00:05:33 +01:00
|
|
|
(expo_b, expo_d)
|
|
|
|
(expo_inv_p, expo_inv_q)
|
|
|
|
(shell_p.ContractedShellPair.center_ab,
|
2018-02-22 01:38:47 +01:00
|
|
|
shell_q.ContractedShellPair.center_ab, center_pq)
|
|
|
|
(center_pa, center_qc)
|
2018-02-12 00:05:33 +01:00
|
|
|
map_1d map_2d np nq
|
|
|
|
in
|
|
|
|
contracted_class.(i) <- contracted_class.(i) +. integral *. norm.(i)
|
|
|
|
with NullQuartet -> ()
|
2018-02-09 19:41:22 +01:00
|
|
|
) class_indices
|
2018-01-25 13:59:31 +01:00
|
|
|
|
2018-01-25 01:28:10 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
let result =
|
|
|
|
Zmap.create (Array.length contracted_class)
|
|
|
|
in
|
|
|
|
Array.iteri (fun i key -> Zmap.add result key contracted_class.(i)) class_indices;
|
|
|
|
result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(** 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-07 17:07:05 +01:00
|
|
|
let shell_p = ContractedShellPair.create ~cutoff shell_a shell_b
|
|
|
|
and shell_q = ContractedShellPair.create ~cutoff shell_c shell_d
|
2018-01-25 01:28:10 +01:00
|
|
|
in
|
|
|
|
contracted_class_shell_pairs ~zero_m shell_p shell_q
|
|
|
|
|