QCaml/Basis/ERI.ml

337 lines
9.1 KiB
OCaml
Raw Normal View History

2018-01-19 03:14:06 +01:00
(** Electron-electron repulsion integrals *)
2018-01-17 19:09:57 +01:00
open Util
2018-02-02 01:25:10 +01:00
open Constants
2018-03-26 19:15:09 +02:00
2018-06-29 16:04:40 +02:00
include FourIdxStorage
2018-03-26 19:15:09 +02:00
2018-03-26 16:47:08 +02:00
2018-03-13 18:24:00 +01:00
module Am = AngularMomentum
2018-03-22 00:29:14 +01:00
module As = AtomicShell
module Asp = AtomicShellPair
2018-02-23 15:49:27 +01:00
module Bs = Basis
2018-02-23 18:41:30 +01:00
module Cs = ContractedShell
2018-02-23 15:49:27 +01:00
module Csp = ContractedShellPair
2018-03-27 19:26:32 +02:00
module Cspc = ContractedShellPairCouple
2018-03-27 16:32:04 +02:00
module Fis = FourIdxStorage
2018-03-27 19:26:32 +02:00
let cutoff = integrals_cutoff
2018-02-23 15:49:27 +01:00
2018-02-24 23:57:38 +01:00
2018-01-18 23:42:48 +01:00
(** (00|00)^m : Fundamental electron repulsion integral
2018-01-19 03:14:06 +01:00
$ \int \int \phi_p(r1) 1/r_{12} \phi_q(r2) dr_1 dr_2 $
2018-01-17 19:09:57 +01:00
2018-01-19 03:14:06 +01:00
maxm : Maximum total angular momentum
expo_pq_inv : $1./p + 1./q$ where $p$ and $q$ are the exponents of
$\phi_p$ and $\phi_q$
norm_pq_sq : square of the distance between the centers of $\phi_p$
and $\phi_q$
2018-01-17 19:09:57 +01:00
*)
2018-02-02 21:14:13 +01:00
2018-01-17 19:09:57 +01:00
let zero_m ~maxm ~expo_pq_inv ~norm_pq_sq =
2018-06-27 13:13:59 +02:00
assert (expo_pq_inv <> 0.);
let norm_pq_sq =
if norm_pq_sq > integrals_cutoff then norm_pq_sq else 0.
in
2018-01-19 23:31:10 +01:00
let exp_pq = 1. /. expo_pq_inv in
let t = norm_pq_sq *. exp_pq in
2018-02-09 02:01:26 +01:00
let f = two_over_sq_pi *. (sqrt exp_pq) in
let result = boys_function ~maxm t in
let rec aux accu k = function
| 0 -> result.(k) <- result.(k) *. accu
| l ->
begin
result.(k) <- result.(k) *. accu;
let new_accu = -. accu *. exp_pq in
aux new_accu (k+1) (l-1)
end
in
aux f 0 maxm;
result
2018-01-17 19:09:57 +01:00
2018-01-23 19:26:28 +01:00
2018-01-31 14:37:51 +01:00
2018-01-19 03:14:06 +01:00
2018-03-27 19:26:32 +02:00
let class_of_contracted_shell_pair_couple shell_pair_couple =
let shell_p = Cspc.shell_pair_p shell_pair_couple
and shell_q = Cspc.shell_pair_q shell_pair_couple
in
2018-03-27 16:31:44 +02:00
if Array.length (Csp.shell_pairs shell_p) + (Array.length (Csp.shell_pairs shell_q)) < 4 then
2018-03-27 19:26:32 +02:00
TwoElectronRR.contracted_class_shell_pair_couple ~zero_m shell_pair_couple
2018-03-27 16:31:44 +02:00
else
TwoElectronRRVectorized.contracted_class_shell_pairs ~zero_m shell_p shell_q
2018-03-22 00:29:14 +01:00
2018-03-27 16:31:44 +02:00
let filter_contracted_shell_pairs ?(cutoff=integrals_cutoff) shell_pairs =
2018-03-27 19:26:32 +02:00
List.map (fun pair ->
match Cspc.make ~cutoff pair pair with
| Some cspc ->
let cls = class_of_contracted_shell_pair_couple cspc in
(pair, Zmap.fold (fun key value accu -> max (abs_float value) accu) cls 0. )
(* TODO \sum_k |coef_k * integral_k| *)
2018-03-27 19:32:37 +02:00
| None -> (pair, -1.)
2018-03-27 19:26:32 +02:00
) shell_pairs
|> List.filter (fun (_, schwartz_p_max) -> schwartz_p_max >= cutoff)
|> List.map fst
(* TODO
let filter_contracted_shell_pair_couples ?(cutoff=integrals_cutoff) shell_pair_couples =
2018-03-27 16:32:04 +02:00
List.map (fun pair ->
let cls =
class_of_contracted_shell_pairs pair pair
in
(pair, Zmap.fold (fun key value accu -> max (abs_float value) accu) cls 0. )
) shell_pairs
|> List.filter (fun (_, schwartz_p_max) -> schwartz_p_max >= cutoff)
|> List.map fst
2018-03-27 19:26:32 +02:00
*)
2018-03-27 16:31:44 +02:00
2018-06-01 14:42:47 +02:00
let store_class ?(cutoff=integrals_cutoff) data contracted_shell_pair_couple cls =
2018-03-27 16:32:04 +02:00
let to_powers x =
2018-03-27 16:31:44 +02:00
let open Zkey in
match to_powers x with
| Three x -> x
| _ -> assert false
2018-03-27 16:32:04 +02:00
in
2018-03-27 19:26:32 +02:00
let shell_p = Cspc.shell_pair_p contracted_shell_pair_couple
and shell_q = Cspc.shell_pair_q contracted_shell_pair_couple
in
2018-03-27 16:32:04 +02:00
Array.iteri (fun i_c powers_i ->
let i_c = Cs.index (Csp.shell_a shell_p) + i_c + 1 in
let xi = to_powers powers_i in
Array.iteri (fun j_c powers_j ->
let j_c = Cs.index (Csp.shell_b shell_p) + j_c + 1 in
let xj = to_powers powers_j in
Array.iteri (fun k_c powers_k ->
let k_c = Cs.index (Csp.shell_a shell_q) + k_c + 1 in
let xk = to_powers powers_k in
Array.iteri (fun l_c powers_l ->
let l_c = Cs.index (Csp.shell_b shell_q) + l_c + 1 in
let xl = to_powers powers_l in
let key = Zkey.of_powers_twelve xi xj xk xl in
let value = Zmap.find cls key in
2018-06-27 13:13:59 +02:00
set_chem data i_c j_c k_c l_c value
2018-03-27 16:32:04 +02:00
) (Cs.zkey_array (Csp.shell_b shell_q))
) (Cs.zkey_array (Csp.shell_a shell_q))
) (Cs.zkey_array (Csp.shell_b shell_p))
2018-06-01 14:42:47 +02:00
) (Cs.zkey_array (Csp.shell_a shell_p))
2018-03-27 16:31:44 +02:00
2018-02-02 10:10:05 +01:00
2018-10-23 13:39:06 +02:00
let of_basis_serial basis =
2018-06-01 14:42:47 +02:00
let n = Bs.size basis
and shell = Bs.contracted_shells basis
in
let eri_array =
Fis.create ~size:n `Dense
(*
Fis.create ~size:n `Sparse
*)
in
let t0 = Unix.gettimeofday () in
let shell_pairs =
Csp.of_contracted_shell_array shell
|> filter_contracted_shell_pairs ~cutoff
in
Printf.printf "%d significant shell pairs computed in %f seconds\n"
(List.length shell_pairs) (Unix.gettimeofday () -. t0);
let t0 = Unix.gettimeofday () in
let ishell = ref 0 in
List.iter (fun shell_p ->
let () =
if (Cs.index (Csp.shell_a shell_p) > !ishell) then
(ishell := Cs.index (Csp.shell_a shell_p) ; print_int !ishell ; print_newline ())
in
let sp =
Csp.shell_pairs shell_p
in
try
List.iter (fun shell_q ->
let () =
if Cs.index (Csp.shell_a shell_q) >
Cs.index (Csp.shell_a shell_p) then
raise Exit
in
let sq = Csp.shell_pairs shell_q in
let cspc =
if Array.length sp < Array.length sq then
Cspc.make ~cutoff shell_p shell_q
else
Cspc.make ~cutoff shell_q shell_p
in
match cspc with
2018-06-27 13:13:59 +02:00
| Some cspc ->
let cls =
class_of_contracted_shell_pair_couple cspc
in
store_class ~cutoff eri_array cspc cls
2018-06-01 14:42:47 +02:00
| None -> ()
) shell_pairs
with Exit -> ()
) shell_pairs ;
Printf.printf "Computed ERIs in %f seconds\n%!" (Unix.gettimeofday () -. t0);
eri_array
2018-10-23 13:39:06 +02:00
(* Parallel functions *)
2018-06-01 14:42:47 +02:00
let of_basis_parallel basis =
2018-10-23 13:39:06 +02:00
let n = Bs.size basis
and shell = Bs.contracted_shells basis
in
let store_class_parallel
?(cutoff=integrals_cutoff) contracted_shell_pair_couple cls =
2018-06-01 14:42:47 +02:00
let to_powers x =
let open Zkey in
match to_powers x with
| Three x -> x
| _ -> assert false
in
let shell_p = Cspc.shell_pair_p contracted_shell_pair_couple
and shell_q = Cspc.shell_pair_q contracted_shell_pair_couple
in
2018-10-23 13:39:06 +02:00
let result = ref [] in
2018-06-01 14:42:47 +02:00
Array.iteri (fun i_c powers_i ->
let i_c = Cs.index (Csp.shell_a shell_p) + i_c + 1 in
let xi = to_powers powers_i in
Array.iteri (fun j_c powers_j ->
let j_c = Cs.index (Csp.shell_b shell_p) + j_c + 1 in
let xj = to_powers powers_j in
Array.iteri (fun k_c powers_k ->
let k_c = Cs.index (Csp.shell_a shell_q) + k_c + 1 in
let xk = to_powers powers_k in
Array.iteri (fun l_c powers_l ->
let l_c = Cs.index (Csp.shell_b shell_q) + l_c + 1 in
let xl = to_powers powers_l in
let key = Zkey.of_powers_twelve xi xj xk xl in
let value = Zmap.find cls key in
2018-10-23 13:39:06 +02:00
result := (i_c, j_c, k_c, l_c, value) :: !result
2018-06-01 14:42:47 +02:00
) (Cs.zkey_array (Csp.shell_b shell_q))
) (Cs.zkey_array (Csp.shell_a shell_q))
) (Cs.zkey_array (Csp.shell_b shell_p))
) (Cs.zkey_array (Csp.shell_a shell_p));
2018-10-23 13:39:06 +02:00
!result
2018-06-01 14:42:47 +02:00
in
2018-01-19 23:31:10 +01:00
2018-03-27 16:32:04 +02:00
let t0 = Unix.gettimeofday () in
2018-02-07 17:07:05 +01:00
2018-01-23 19:26:28 +01:00
let shell_pairs =
2018-03-20 14:11:31 +01:00
Csp.of_contracted_shell_array shell
2018-03-27 19:26:32 +02:00
|> filter_contracted_shell_pairs ~cutoff
2018-02-07 17:07:05 +01:00
in
2018-01-23 19:26:28 +01:00
2018-10-23 13:39:06 +02:00
Printf.printf "%d significant shell pairs computed in %f seconds\n"
2018-03-27 16:32:04 +02:00
(List.length shell_pairs) (Unix.gettimeofday () -. t0);
2018-02-02 10:10:05 +01:00
2018-01-30 22:36:17 +01:00
2018-02-09 00:37:25 +01:00
let t0 = Unix.gettimeofday () in
2019-01-15 15:17:34 +01:00
let ishell = ref 10000000 in
2018-03-27 16:32:04 +02:00
2018-10-23 16:11:15 +02:00
let input_stream = Stream.of_list (List.rev shell_pairs) in
2018-03-22 00:29:14 +01:00
2018-10-23 13:39:06 +02:00
let f shell_p =
let () =
2019-01-15 15:17:34 +01:00
if Parallel.rank < 2 && Cs.index (Csp.shell_a shell_p) < !ishell then
2018-10-23 13:39:06 +02:00
(ishell := Cs.index (Csp.shell_a shell_p) ; print_int !ishell ; print_newline ())
in
2018-02-01 17:13:47 +01:00
2018-10-23 13:39:06 +02:00
let sp =
Csp.shell_pairs shell_p
in
let result = ref [] in
try
List.iter (fun shell_q ->
let () =
if Cs.index (Csp.shell_a shell_q) >
Cs.index (Csp.shell_a shell_p) then
raise Exit
in
let sq = Csp.shell_pairs shell_q in
let cspc =
if Array.length sp < Array.length sq then
Cspc.make ~cutoff shell_p shell_q
else
Cspc.make ~cutoff shell_q shell_p
in
match cspc with
| Some cspc ->
let cls =
class_of_contracted_shell_pair_couple cspc
2018-06-01 14:34:28 +02:00
in
2018-10-23 13:39:06 +02:00
result := (store_class_parallel ~cutoff cspc cls) :: !result;
| None -> ()
) shell_pairs;
2018-10-23 14:37:02 +02:00
raise Exit
with Exit -> List.concat !result |> Array.of_list
2018-10-23 13:39:06 +02:00
in
let eri_array =
if Parallel.master then
Fis.create ~size:n `Dense
else
Fis.create ~size:0 `Dense
in
2018-10-23 14:37:02 +02:00
Farm.run ~ordered:false ~f input_stream
2018-10-23 13:39:06 +02:00
|> Stream.iter (fun l ->
2018-10-23 14:37:02 +02:00
Array.iter (fun (i_c,j_c,k_c,l_c,value) ->
2018-10-23 13:39:06 +02:00
set_chem eri_array i_c j_c k_c l_c value) l);
if not Parallel.master then
exit 0;
Printf.printf "Computed ERIs in parallel in %f seconds\n%!" (Unix.gettimeofday () -. t0);
2018-02-09 00:37:25 +01:00
eri_array
2018-10-23 13:39:06 +02:00
2019-01-15 15:17:34 +01:00
let of_basis =
match Parallel.size with
| 1 -> of_basis_serial
| _ -> of_basis_parallel
2018-10-23 13:39:06 +02:00
2018-02-02 10:10:05 +01:00