10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 11:25:19 +02:00
QCaml/Basis/KinInt.ml

182 lines
5.2 KiB
OCaml
Raw Normal View History

open Util
open Constants
2018-02-09 00:37:25 +01:00
open Lacaml.D
2018-02-23 15:49:27 +01:00
2018-02-23 18:41:30 +01:00
module Am = AngularMomentum
2018-02-23 15:49:27 +01:00
module Bs = Basis
module Co = Coordinate
2018-02-23 18:41:30 +01:00
module Cs = ContractedShell
2018-02-23 15:49:27 +01:00
module Csp = ContractedShellPair
2018-02-25 01:40:12 +01:00
module Po = Powers
2018-03-15 16:03:43 +01:00
module Ps = PrimitiveShell
module Psp = PrimitiveShellPair
2018-02-09 00:37:25 +01:00
type t = Mat.t
2018-02-24 23:57:38 +01:00
let cutoff = integrals_cutoff
2018-02-25 01:40:12 +01:00
let to_powers x =
let open Zkey in
match to_powers x with
| Six x -> x
| _ -> assert false
(** Computes all the kinetic integrals of the contracted shell pair *)
let contracted_class shell_a shell_b : float Zmap.t =
2018-03-15 19:35:10 +01:00
match Csp.create shell_a shell_b with
| Some shell_p ->
begin
(* Pre-computation of integral class indices *)
let class_indices =
Am.zkey_array (Am.Doublet Cs.(totAngMom shell_a, totAngMom shell_b))
in
2018-03-15 19:35:10 +01:00
let contracted_class =
Array.make (Array.length class_indices) 0.
in
2018-03-15 19:35:10 +01:00
(* Compute all integrals in the shell for each pair of significant shell pairs *)
2018-02-09 19:41:22 +01:00
2018-03-15 19:35:10 +01:00
let sp = Csp.shell_pairs shell_p in
let center_ab =
Csp.center_ab shell_p
in
let norm_coef_scale =
Csp.norm_coef_scale shell_p
in
2018-03-15 19:35:10 +01:00
for ab=0 to (Array.length sp - 1)
do
let coef_prod =
(Csp.coef shell_p).(ab)
2018-02-25 01:40:12 +01:00
in
2018-03-15 19:35:10 +01:00
(** Screening on thr product of coefficients *)
if (abs_float coef_prod) > 1.e-4*.cutoff then
begin
let center_pa =
Psp.center_minus_a sp.(ab)
in
2018-03-15 19:35:10 +01:00
let expo_inv =
(Csp.expo_inv shell_p).(ab)
in
2018-03-15 19:35:10 +01:00
let expo_a =
Ps.expo (Psp.shell_a sp.(ab))
and expo_b =
Ps.expo (Psp.shell_b sp.(ab))
in
2018-03-15 19:35:10 +01:00
let xyz_of_int k =
match k with
| 0 -> Co.X
| 1 -> Co.Y
| _ -> Co.Z
in
Array.iteri (fun i key ->
let (angMomA,angMomB) = to_powers key in
let ov a b k =
let xyz = xyz_of_int k in
Overlap_primitives.hvrr (a, b)
expo_inv
(Co.get xyz center_ab,
Co.get xyz center_pa)
in
let f k =
let xyz = xyz_of_int k in
ov (Po.get xyz angMomA) (Po.get xyz angMomB) k
and g k =
let xyz = xyz_of_int k in
let s1 = ov (Po.get xyz angMomA - 1) (Po.get xyz angMomB - 1) k
and s2 = ov (Po.get xyz angMomA + 1) (Po.get xyz angMomB - 1) k
and s3 = ov (Po.get xyz angMomA - 1) (Po.get xyz angMomB + 1) k
and s4 = ov (Po.get xyz angMomA + 1) (Po.get xyz angMomB + 1) k
and a = float_of_int (Po.get xyz angMomA)
and b = float_of_int (Po.get xyz angMomB)
in
0.5 *. a *. b *. s1 -. expo_a *. b *. s2 -. expo_b *. a *. s3 +.
2.0 *. expo_a *. expo_b *. s4
in
let s = Array.init 3 f
and k = Array.init 3 g
in
let norm = norm_coef_scale.(i) in
let integral = chop norm (fun () ->
k.(0)*.s.(1)*.s.(2) +.
s.(0)*.k.(1)*.s.(2) +.
s.(0)*.s.(1)*.k.(2)
) in
contracted_class.(i) <- contracted_class.(i) +. coef_prod *. integral
) class_indices
end
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
end
| None -> Zmap.create 0
2018-02-09 00:37:25 +01:00
(** Create kinetic energy matrix *)
let of_basis basis =
2018-02-19 16:01:13 +01:00
let to_powers x =
let open Zkey in
2018-02-25 01:40:12 +01:00
match to_powers x with
| Three x -> x
| _ -> assert false
in
2018-03-20 14:11:31 +01:00
let n = Bs.size basis
and shell = Bs.contracted_shells basis
2018-02-09 00:37:25 +01:00
in
let result = Mat.create n n in
for j=0 to (Array.length shell) - 1 do
for i=0 to j do
(* Compute all the integrals of the class *)
let cls =
2018-02-09 00:37:25 +01:00
contracted_class shell.(i) shell.(j)
in
2018-02-09 00:37:25 +01:00
Array.iteri (fun j_c powers_j ->
2018-03-13 18:56:28 +01:00
let j_c = Cs.index shell.(j) + j_c + 1 in
2018-02-19 16:01:13 +01:00
let xj = to_powers powers_j in
2018-02-09 00:37:25 +01:00
Array.iteri (fun i_c powers_i ->
2018-03-13 18:56:28 +01:00
let i_c = Cs.index shell.(i) + i_c + 1 in
2018-02-19 16:01:13 +01:00
let xi = to_powers powers_i in
2018-02-09 00:37:25 +01:00
let key =
2018-02-25 00:53:09 +01:00
Zkey.of_powers_six xi xj
in
2018-02-09 00:37:25 +01:00
let value =
try Zmap.find cls key
2018-03-15 19:35:10 +01:00
with Not_found -> 0.
in
2018-02-21 17:06:24 +01:00
result.{i_c,j_c} <- value;
result.{j_c,i_c} <- value;
2018-03-13 18:56:28 +01:00
) (Am.zkey_array (Singlet (Cs.totAngMom shell.(i))))
) (Am.zkey_array (Singlet (Cs.totAngMom shell.(j))))
2018-02-09 00:37:25 +01:00
done;
done;
Mat.detri result;
result
(** Write all kinetic integrals to a file *)
let to_file ~filename kinetic =
let oc = open_out filename in
let n =
Mat.dim1 kinetic
in
for j=1 to n do
for i=1 to j do
if (abs_float kinetic.{i,j} > cutoff) then
Printf.fprintf oc "%4d %4d %20.12e\n" i j kinetic.{i,j}
done;
done;
close_out oc
2018-02-09 00:37:25 +01:00