2018-01-22 23:19:24 +01:00
|
|
|
open Util
|
2018-02-03 23:26:20 +01:00
|
|
|
open Constants
|
2018-02-09 00:37:25 +01:00
|
|
|
open Lacaml.D
|
|
|
|
|
|
|
|
type t = Mat.t
|
|
|
|
|
2018-01-22 23:19:24 +01:00
|
|
|
|
|
|
|
(** Computes all the overlap integrals of the contracted shell pair *)
|
2018-01-23 00:48:45 +01:00
|
|
|
let contracted_class shell_a shell_b : float Zmap.t =
|
2018-01-22 23:19:24 +01:00
|
|
|
|
|
|
|
let shell_p =
|
2018-02-07 17:07:05 +01:00
|
|
|
ContractedShellPair.create shell_a shell_b
|
2018-01-22 23:19:24 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
(* Pre-computation of integral class indices *)
|
|
|
|
let class_indices =
|
|
|
|
Angular_momentum.zkey_array (Angular_momentum.Doublet
|
2018-02-06 17:39:14 +01:00
|
|
|
Contracted_shell.(totAngMom shell_a, totAngMom shell_b))
|
2018-01-22 23:19:24 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
let contracted_class =
|
|
|
|
Array.make (Array.length class_indices) 0.
|
|
|
|
in
|
|
|
|
|
2018-02-09 19:41:22 +01:00
|
|
|
let sp =
|
|
|
|
shell_p.ContractedShellPair.shell_pairs
|
|
|
|
in
|
|
|
|
let center_ab =
|
|
|
|
shell_p.ContractedShellPair.center_ab
|
|
|
|
in
|
|
|
|
let norm_coef_scale =
|
|
|
|
shell_p.ContractedShellPair.norm_coef_scale
|
|
|
|
in
|
|
|
|
|
2018-01-22 23:19:24 +01:00
|
|
|
(* Compute all integrals in the shell for each pair of significant shell pairs *)
|
|
|
|
|
2018-02-09 19:41:22 +01:00
|
|
|
for ab=0 to (Array.length sp - 1)
|
2018-01-22 23:19:24 +01:00
|
|
|
do
|
2018-02-06 17:39:14 +01:00
|
|
|
let coef_prod =
|
2018-02-09 19:41:22 +01:00
|
|
|
shell_p.ContractedShellPair.coef.(ab)
|
2018-02-06 17:39:14 +01:00
|
|
|
in
|
|
|
|
(** Screening on thr product of coefficients *)
|
|
|
|
if (abs_float coef_prod) > 1.e-4*.cutoff then
|
|
|
|
begin
|
|
|
|
let expo_inv =
|
2018-02-09 19:41:22 +01:00
|
|
|
shell_p.ContractedShellPair.expo_inv.(ab)
|
2018-02-06 17:39:14 +01:00
|
|
|
in
|
2018-02-09 19:41:22 +01:00
|
|
|
let center_pa =
|
|
|
|
sp.(ab).ShellPair.center_a
|
2018-02-06 17:39:14 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
Array.iteri (fun i key ->
|
|
|
|
let (angMomA,angMomB) =
|
|
|
|
let a = Zkey.to_int_array Zkey.Kind_6 key in
|
|
|
|
( [| a.(0) ; a.(1) ; a.(2) |],
|
|
|
|
[| a.(3) ; a.(4) ; a.(5) |] )
|
2018-01-22 23:19:24 +01:00
|
|
|
in
|
2018-02-06 17:39:14 +01:00
|
|
|
let f k =
|
|
|
|
Overlap_primitives.hvrr (angMomA.(k), angMomB.(k))
|
|
|
|
expo_inv
|
|
|
|
(Coordinate.coord center_ab k,
|
|
|
|
Coordinate.coord center_pa k)
|
2018-01-22 23:19:24 +01:00
|
|
|
in
|
2018-02-06 17:39:14 +01:00
|
|
|
let norm = norm_coef_scale.(i) in
|
|
|
|
let integral = chop norm (fun () -> (f 0)*.(f 1)*.(f 2)) in
|
|
|
|
contracted_class.(i) <- contracted_class.(i) +. coef_prod *. integral
|
|
|
|
) class_indices
|
|
|
|
end
|
2018-01-22 23:19:24 +01:00
|
|
|
done;
|
|
|
|
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-02-09 00:37:25 +01:00
|
|
|
(** Create overlap matrix *)
|
|
|
|
let of_basis basis =
|
2018-01-22 23:19:24 +01:00
|
|
|
let to_int_tuple x =
|
|
|
|
let open Zkey in
|
|
|
|
match to_int_tuple Kind_3 x with
|
|
|
|
| Three x -> x
|
|
|
|
| _ -> assert false
|
|
|
|
in
|
|
|
|
|
2018-02-09 00:37:25 +01:00
|
|
|
let n =
|
|
|
|
Basis.size basis
|
|
|
|
and shell =
|
|
|
|
Basis.contracted_shells basis
|
|
|
|
in
|
|
|
|
|
|
|
|
let result = Mat.create n n in
|
|
|
|
for j=0 to (Array.length shell) - 1 do
|
|
|
|
for i=0 to j do
|
2018-01-22 23:19:24 +01:00
|
|
|
(* Compute all the integrals of the class *)
|
|
|
|
let cls =
|
2018-02-09 00:37:25 +01:00
|
|
|
contracted_class shell.(i) shell.(j)
|
2018-01-22 23:19:24 +01:00
|
|
|
in
|
|
|
|
|
2018-02-09 00:37:25 +01:00
|
|
|
Array.iteri (fun j_c powers_j ->
|
|
|
|
let j_c = Contracted_shell.index shell.(j) + j_c + 1 in
|
|
|
|
let xj = to_int_tuple powers_j in
|
|
|
|
Array.iteri (fun i_c powers_i ->
|
|
|
|
let i_c = Contracted_shell.index shell.(i) + i_c + 1 in
|
|
|
|
let xi = to_int_tuple powers_i in
|
2018-01-22 23:19:24 +01:00
|
|
|
let key =
|
|
|
|
Zkey.of_int_tuple (Zkey.Six (xi,xj))
|
|
|
|
in
|
|
|
|
let value =
|
2018-02-09 00:37:25 +01:00
|
|
|
try Zmap.find cls key
|
2018-01-22 23:19:24 +01:00
|
|
|
with Not_found -> failwith "Bug in overlap integrals"
|
|
|
|
in
|
2018-02-09 00:37:25 +01:00
|
|
|
result.{i_c,j_c} <- value
|
|
|
|
) (Contracted_shell.powers shell.(i));
|
|
|
|
) (Contracted_shell.powers shell.(j))
|
|
|
|
done;
|
|
|
|
done;
|
|
|
|
Mat.detri result;
|
|
|
|
result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(** Write all overlap integrals to a file *)
|
|
|
|
let to_file ~filename overlap =
|
|
|
|
|
|
|
|
let oc = open_out filename in
|
|
|
|
let n =
|
|
|
|
Mat.dim1 overlap
|
|
|
|
in
|
|
|
|
|
|
|
|
for j=1 to n do
|
|
|
|
for i=1 to j do
|
|
|
|
if (abs_float overlap.{i,j} > cutoff) then
|
|
|
|
Printf.fprintf oc "%4d %4d %20.12e\n" i j overlap.{i,j}
|
2018-01-22 23:19:24 +01:00
|
|
|
done;
|
|
|
|
done;
|
|
|
|
close_out oc
|
|
|
|
|