10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-06 05:15:19 +02:00
QCaml/Basis/TwoElectronRRVectorized.ml

713 lines
24 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-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-01-25 01:28:10 +01:00
(totAngMom_a, totAngMom_b, totAngMom_c, totAngMom_d)
(maxm, zero_m_array)
(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-10 03:37:00 +01:00
map_1d map_2d np nq
2018-01-25 01:28:10 +01:00
=
let totAngMom_a = Angular_momentum.to_int totAngMom_a
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
(** Vertical recurrence relations *)
2018-02-09 20:32:39 +01:00
let rec vrr0_v m angMom_a = function
2018-02-10 03:37:00 +01:00
| 0 -> Some zero_m_array.(m)
2018-01-25 01:28:10 +01:00
| totAngMom_a ->
2018-02-02 11:59:30 +01:00
let key = Zkey.of_int_tuple (Zkey.Three angMom_a)
2018-01-25 01:28:10 +01:00
in
2018-02-09 20:32:39 +01:00
try Zmap.find map_1d.(m) key with
2018-02-02 11:59:30 +01:00
| Not_found ->
2018-02-03 19:01:30 +01:00
let result =
let am, amm, amxyz, xyz =
match angMom_a with
| (x,0,0) -> (x-1,0,0),(x-2,0,0), x-1, 0
| (x,y,0) -> (x,y-1,0),(x,y-2,0), y-1, 1
| (x,y,z) -> (x,y,z-1),(x,y,z-2), z-1, 2
in
2018-02-09 20:32:39 +01:00
if amxyz < 0 then
None
else
2018-02-10 22:19:13 +01:00
begin
let cab = Coordinate.coord center_ab xyz in
let v1_top, p1_top =
if abs_float cab < cutoff then
None,
vrr0_v (m+1) am (totAngMom_a-1)
else
vrr0_v m am (totAngMom_a-1),
vrr0_v (m+1) am (totAngMom_a-1)
in
let v1_top2, p1_top2 =
if amxyz < 1 then (None,None) else
vrr0_v m amm (totAngMom_a-2),
vrr0_v (m+1) amm (totAngMom_a-2)
in
2018-02-09 20:32:39 +01:00
2018-02-10 22:19:13 +01:00
let result = Array.make_matrix np nq 0. in
2018-02-11 00:05:56 +01:00
if amxyz < 1 then
begin
let p0 =
match p1_top with
| Some p1_top -> p1_top
| _ -> assert false
in
2018-02-10 22:19:13 +01:00
begin
2018-02-11 00:05:56 +01:00
match v1_top with
| None -> ()
| Some v0 ->
for l=0 to np-1 do
let f0 =
-. expo_b.(l) *. expo_inv_p.(l) *. cab
in
2018-02-11 01:05:30 +01:00
for k=0 to nq-1 do
2018-02-11 00:05:56 +01:00
result.(l).(k) <- v0.(l).(k) *. f0
done
done
end;
for l=0 to np-1 do
for k=0 to nq-1 do
2018-02-11 01:05:30 +01:00
result.(l).(k) <- result.(l).(k)
+. expo_inv_p.(l) *. center_pq.(xyz).(l).(k) *. p0.(l).(k)
2018-02-10 22:19:13 +01:00
done
2018-02-11 00:05:56 +01:00
done
end
else
begin
let p0 =
match p1_top with
| Some p1_top -> p1_top
| _ -> assert false
in
2018-02-10 22:19:13 +01:00
begin
2018-02-11 00:05:56 +01:00
match v1_top with
| None -> ()
| Some v0 ->
for l=0 to np-1 do
2018-02-11 01:05:30 +01:00
let f0 = -. expo_b.(l) *. expo_inv_p.(l) *. cab in
for k=0 to nq-1 do
2018-02-11 00:05:56 +01:00
result.(l).(k) <- v0.(l).(k) *. f0
done
done
end;
let v1 =
match v1_top2 with
| Some v1_top2 -> v1_top2
| None -> assert false
in
let v2 =
match p1_top2 with
| Some p1_top2 -> p1_top2
| None -> assert false
in
for l=0 to np-1 do
let f = (float_of_int amxyz) *. expo_inv_p.(l) *. 0.5 in
2018-02-10 22:19:13 +01:00
for k=0 to nq-1
do
2018-02-11 01:05:30 +01:00
result.(l).(k) <- result.(l).(k) +.
expo_inv_p.(l) *. center_pq.(xyz).(l).(k) *. p0.(l).(k) +.
f *. (v1.(l).(k) +. v2.(l).(k) *. expo_inv_p.(l))
2018-02-10 22:19:13 +01:00
done
2018-02-11 00:05:56 +01:00
done
end;
2018-02-10 22:19:13 +01:00
Some result
end
in
Zmap.add map_1d.(m) key result;
result
2018-01-25 01:28:10 +01:00
2018-02-09 20:32:39 +01:00
and vrr_v m angMom_a angMom_c totAngMom_a totAngMom_c =
2018-01-25 01:28:10 +01:00
match (totAngMom_a, totAngMom_c) with
2018-02-10 03:37:00 +01:00
| (i,0) -> vrr0_v m angMom_a totAngMom_a
2018-01-25 01:28:10 +01:00
| (_,_) ->
2018-02-02 11:59:30 +01:00
let key = Zkey.of_int_tuple (Zkey.Six (angMom_a, angMom_c))
2018-01-25 01:28:10 +01:00
in
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-10 03:37:00 +01:00
begin
2018-02-03 19:01:30 +01:00
let am, cm, cmm, axyz, cxyz, xyz =
let (aax, aay, aaz) = angMom_a
and (acx, acy, acz) = angMom_c in
if (acz > 0) then
(aax, aay, aaz-1),
(acx, acy, acz-1),
(acx, acy, acz-2),
aaz, acz, 2
else if (acy > 0) then
(aax, aay-1,aaz),
(acx, acy-1,acz),
(acx, acy-2,acz),
aay,acy, 1
else
(aax-1,aay,aaz),
(acx-1,acy,acz),
(acx-2,acy,acz),
aax,acx, 0
in
2018-02-10 22:19:13 +01:00
(*
let result = Array.make_matrix np nq 0. in
*)
2018-02-10 22:27:00 +01:00
let do_compute = ref false in
let v1 =
2018-02-11 00:05:56 +01:00
let f = -. (Coordinate.coord center_cd xyz) in
2018-02-11 01:05:30 +01:00
let f1 =
Array.init nq (fun k ->
2018-02-10 22:27:00 +01:00
let x = expo_d.(k) *. expo_inv_q.(k) *. f in
2018-02-11 01:05:30 +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
match vrr_v m angMom_a cm totAngMom_a (totAngMom_c-1) with
| None -> None
| Some v1 ->
begin
let result = Array.make_matrix np nq 0. in
for l=0 to np-1 do
for k=0 to nq-1 do
2018-02-11 01:05:30 +01:00
result.(l).(k) <- v1.(l).(k) *. f1.(k)
2018-02-10 22:27:00 +01:00
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-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 ->
Array.init nq (fun k ->
let x = expo_inv_q.(k) *. center_pq.(xyz).(l).(k) in
if (!do_compute) then x
else (if abs_float x > cutoff then do_compute := true ; x)
) )
in
if (!do_compute) then
match vrr_v (m+1) angMom_a cm totAngMom_a (totAngMom_c-1) with
| None -> None
| Some v2 ->
begin
for l=0 to np-1 do
for k=0 to nq-1 do
f2.(l).(k) <- -. v2.(l).(k) *. f2.(l).(k)
done
done;
Some f2
end
2018-02-10 01:07:34 +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-11 01:05:30 +01:00
begin
for l=0 to np-1 do
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-03 19:01:30 +01:00
let p2 =
if cxyz < 2 then p1 else
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 ->
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
match vrr_v m angMom_a cmm totAngMom_a (totAngMom_c-2) with
| None -> None
| Some v1 ->
begin
let result = Array.make_matrix np nq 0. in
for l=0 to np-1 do
for k=0 to nq-1 do
result.(l).(k) <- v1.(l).(k) *. f1.(k)
2018-02-11 01:05:30 +01:00
done;
2018-02-10 22:27:00 +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 ->
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)
)
in
if (!do_compute) then
match vrr_v (m+1) angMom_a cmm totAngMom_a (totAngMom_c-2) with
| None -> None
2018-02-11 01:17:37 +01:00
| Some v3 ->
2018-02-10 22:27:00 +01:00
begin
let result = Array.make_matrix np nq 0. in
for l=0 to np-1 do
for k=0 to nq-1 do
2018-02-11 01:17:37 +01:00
result.(l).(k) <- v3.(l).(k) *. f2.(k)
2018-02-10 22:27:00 +01:00
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-11 01:05:30 +01:00
begin
for l=0 to np-1 do
for k=0 to nq-1 do
2018-02-11 01:17:37 +01:00
v3.(l).(k) <- p1.(l).(k) +. v1.(l).(k) +. v3.(l).(k)
2018-02-11 01:05:30 +01:00
done
done;
2018-02-11 01:17:37 +01:00
Some v3
2018-02-11 01:05:30 +01:00
end
2018-02-09 20:32:39 +01:00
| Some p1, Some v1, None ->
2018-02-11 01:05:30 +01:00
begin
for l=0 to np-1 do
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-11 01:05:30 +01:00
begin
for l=0 to np-1 do
for k=0 to nq-1 do
2018-02-11 01:17:37 +01:00
p1.(l).(k) <- p1.(l).(k) +. v3.(l).(k)
2018-02-11 01:05:30 +01:00
done
done;
Some p1
end
2018-02-11 01:17:37 +01:00
| None , Some v1, Some v3 ->
2018-02-11 01:05:30 +01:00
begin
for l=0 to np-1 do
for k=0 to nq-1 do
2018-02-11 01:17:37 +01:00
v3.(l).(k) <- v1.(l).(k) +. v3.(l).(k)
2018-02-11 01:05:30 +01:00
done
done;
2018-02-11 01:17:37 +01:00
Some v3
2018-02-11 01:05:30 +01:00
end
2018-02-03 19:01:30 +01:00
in
if (axyz < 1) || (cxyz < 1) then p2 else
2018-02-09 20:32:39 +01:00
let v =
vrr_v (m+1) am cm (totAngMom_a-1) (totAngMom_c-1)
2018-02-03 19:01:30 +01:00
in
2018-02-09 20:32:39 +01:00
match (p2, v) with
| None, None -> None
2018-02-10 22:27:00 +01:00
| 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
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
(** Horizontal recurrence relations *)
2018-02-09 20:32:39 +01:00
and hrr0_v angMom_a angMom_b angMom_c
2018-01-25 01:28:10 +01:00
totAngMom_a totAngMom_b totAngMom_c =
match totAngMom_b with
2018-01-29 22:48:09 +01:00
| 0 ->
begin
match (totAngMom_a, totAngMom_c) with
2018-02-10 03:37:00 +01:00
| (0,0) -> Array.fold_left (fun accu c ->
accu +. Array.fold_left (+.) 0. c) 0. zero_m_array.(0)
| (_,_) ->
2018-02-10 01:07:34 +01:00
begin
2018-02-10 03:37:00 +01:00
match vrr_v 0 angMom_a angMom_c totAngMom_a totAngMom_c with
| Some matrix -> Array.fold_left (fun accu c -> accu +. Array.fold_left (+.) 0. c) 0. matrix
| None -> 0.
2018-02-10 01:07:34 +01:00
end
2018-01-29 22:48:09 +01:00
end
2018-02-02 11:59:30 +01:00
| 1 ->
2018-02-03 16:41:29 +01:00
let (aax, aay, aaz) = angMom_a in
2018-02-02 11:59:30 +01:00
let ap, xyz =
2018-02-03 19:01:30 +01:00
match angMom_b with
| (_,_,1) -> (aax,aay,aaz+1), 2
| (_,1,_) -> (aax,aay+1,aaz), 1
| (_,_,_) -> (aax+1,aay,aaz), 0
2018-02-02 11:59:30 +01:00
in
2018-01-30 00:06:04 +01:00
let f = Coordinate.coord center_ab xyz in
2018-01-29 13:39:59 +01:00
let v1 =
2018-02-09 20:32:39 +01:00
match vrr_v 0 ap angMom_c (totAngMom_a+1) totAngMom_c with
2018-02-10 01:07:34 +01:00
| Some matrix -> Array.fold_left (fun accu c -> accu +. Array.fold_left (+.) 0. c) 0. matrix
2018-02-09 20:32:39 +01:00
| None -> 0.
2018-01-29 22:48:09 +01:00
in
2018-02-09 20:32:39 +01:00
if (abs_float f < cutoff) then v1 else
let v2 =
match vrr_v 0 angMom_a angMom_c totAngMom_a totAngMom_c with
2018-02-10 01:07:34 +01:00
| Some matrix -> Array.fold_left (fun accu c -> accu +. Array.fold_left (+.) 0. c) 0. matrix
2018-02-09 20:32:39 +01:00
| None -> 0.
2018-01-30 00:06:04 +01:00
in
2018-02-09 20:32:39 +01:00
v1 +. v2 *. f
2018-01-25 01:28:10 +01:00
| _ ->
2018-02-03 16:41:29 +01:00
let (aax, aay, aaz) = angMom_a
and (abx, aby, abz) = angMom_b in
2018-02-02 11:59:30 +01:00
let bxyz, xyz =
2018-02-03 19:01:30 +01:00
match angMom_b with
| (0,0,_) -> abz, 2
| (0,_,_) -> aby, 1
| _ -> abx, 0
2018-01-25 01:28:10 +01:00
in
2018-02-09 19:41:22 +01:00
if (bxyz < 1) then 0. else
2018-02-03 19:01:30 +01:00
let ap, bm =
match xyz with
| 0 -> (aax+1,aay,aaz),(abx-1,aby,abz)
| 1 -> (aax,aay+1,aaz),(abx,aby-1,abz)
| _ -> (aax,aay,aaz+1),(abx,aby,abz-1)
in
2018-02-02 11:59:30 +01:00
2018-01-29 13:39:59 +01:00
let h1 =
2018-02-09 20:32:39 +01:00
hrr0_v ap bm angMom_c (totAngMom_a+1) (totAngMom_b-1) totAngMom_c
2018-01-30 00:06:04 +01:00
in
let f = (Coordinate.coord center_ab xyz) in
if (abs_float f < cutoff) then h1 else
2018-02-03 19:01:30 +01:00
let h2 =
2018-02-09 20:32:39 +01:00
hrr0_v angMom_a bm angMom_c totAngMom_a (totAngMom_b-1) totAngMom_c
2018-02-09 19:41:22 +01:00
in
h1 +. h2 *. f
2018-01-25 01:28:10 +01:00
2018-02-09 20:32:39 +01:00
and hrr_v angMom_a angMom_b angMom_c angMom_d
2018-01-25 01:28:10 +01:00
totAngMom_a totAngMom_b totAngMom_c totAngMom_d =
match (totAngMom_b, totAngMom_d) with
2018-02-02 11:59:30 +01:00
| (_,0) -> if (totAngMom_b = 0) then
2018-02-09 20:32:39 +01:00
begin
match vrr_v 0 angMom_a angMom_c totAngMom_a totAngMom_c with
2018-02-10 01:07:34 +01:00
| Some matrix -> Array.fold_left (fun accu c -> accu +. Array.fold_left (+.) 0. c) 0. matrix
2018-02-09 20:32:39 +01:00
| None -> 0.
end
2018-02-03 19:01:30 +01:00
else
2018-02-09 20:32:39 +01:00
hrr0_v angMom_a angMom_b angMom_c totAngMom_a totAngMom_b totAngMom_c
2018-01-25 01:28:10 +01:00
| (_,_) ->
2018-02-03 16:41:29 +01:00
let (acx, acy, acz) = angMom_c
and (adx, ady, adz) = angMom_d in
2018-02-02 11:59:30 +01:00
let cp, dm, xyz =
match angMom_d with
2018-02-03 16:41:29 +01:00
| (_,0,0) -> (acx+1, acy, acz), (adx-1, ady, adz), 0
| (_,_,0) -> (acx, acy+1, acz), (adx, ady-1, adz), 1
| _ -> (acx, acy, acz+1), (adx, ady, adz-1), 2
2018-01-25 01:28:10 +01:00
in
2018-01-29 22:48:09 +01:00
let h1 =
2018-02-09 20:32:39 +01:00
hrr_v angMom_a angMom_b cp dm totAngMom_a totAngMom_b (totAngMom_c+1) (totAngMom_d-1)
2018-01-25 13:59:31 +01:00
in
2018-02-09 12:57:42 +01:00
let f = (Coordinate.coord center_cd xyz) in
2018-02-10 03:37:00 +01:00
if (abs_float f < cutoff) then
h1
else
let h2 =
hrr_v angMom_a angMom_b angMom_c dm totAngMom_a totAngMom_b totAngMom_c (totAngMom_d-1)
in h1 +. f *. h2
2018-01-25 01:28:10 +01:00
in
2018-02-10 03:37:00 +01:00
hrr_v
2018-02-09 19:41:22 +01:00
(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))
totAngMom_a totAngMom_b totAngMom_c totAngMom_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-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
let center_pq =
Coordinate.(sp.(i-1).ShellPair.center |- sq.(j-1).ShellPair.center)
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-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 =
Coordinate.(shell_ab.ShellPair.center |- shell_cd.ShellPair.center)
in
match xyz with
| 0 -> Coordinate.x cpq;
| 1 -> Coordinate.y cpq;
| 2 -> Coordinate.z cpq;
| _ -> assert false
)
2018-02-09 20:32:39 +01:00
)
2018-02-10 01:07:34 +01:00
)
2018-02-09 19:41:22 +01:00
in
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 =
center_pq.(0).(ab).(cd) *. center_pq.(0).(ab).(cd) +.
center_pq.(1).(ab).(cd) *. center_pq.(1).(ab).(cd) +.
center_pq.(2).(ab).(cd) *. center_pq.(2).(ab).(cd)
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-10 03:37:00 +01:00
let map_1d = Array.init (maxm+1) (fun _ -> Zmap.create (4*maxm))
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 ->
let a = Zkey.to_int_array Zkey.Kind_12 key in
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) |] )
in
let integral =
hvrr_two_e_vector (angMomA, angMomB, angMomC, angMomD)
(Contracted_shell.totAngMom shell_a, Contracted_shell.totAngMom shell_b,
Contracted_shell.totAngMom shell_c, Contracted_shell.totAngMom shell_d)
(maxm, zero_m_array)
(expo_b, expo_d)
(expo_inv_p, expo_inv_q)
(shell_p.ContractedShellPair.center_ab,
shell_q.ContractedShellPair.center_ab, center_pq)
2018-02-10 03:37:00 +01:00
map_1d map_2d np nq
2018-02-09 19:41:22 +01:00
in
contracted_class.(i) <- contracted_class.(i) +. integral *. norm.(i)
) 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