2018-01-19 03:14:06 +01:00
|
|
|
type t = Contracted_shell.t array
|
2018-01-18 00:21:05 +01:00
|
|
|
|
2018-01-18 17:39:10 +01:00
|
|
|
(** Returns an array of the basis set per atom *)
|
2018-01-18 00:21:05 +01:00
|
|
|
let of_nuclei_and_general_basis n b =
|
2018-01-19 17:42:12 +01:00
|
|
|
let result =
|
|
|
|
Array.map (fun (e, center) ->
|
|
|
|
List.assoc e b
|
|
|
|
|> Array.map (fun (totAngMom, shell) ->
|
|
|
|
let expo = Array.map (fun General_basis.{exponent ; coefficient} ->
|
|
|
|
exponent) shell
|
|
|
|
and coef = Array.map (fun General_basis.{exponent ; coefficient} ->
|
|
|
|
coefficient) shell
|
|
|
|
in
|
|
|
|
Contracted_shell.create ~expo ~coef ~totAngMom ~center ~indice:0)
|
|
|
|
) n
|
|
|
|
|> Array.to_list
|
|
|
|
|> Array.concat
|
|
|
|
in
|
|
|
|
Array.iteri (fun i x ->
|
|
|
|
if (i > 0) then
|
|
|
|
result.(i) <- {x with Contracted_shell.indice= (
|
|
|
|
result.(i-1).Contracted_shell.indice + (Array.length result.(i-1).Contracted_shell.powers)) }
|
|
|
|
) result ;
|
|
|
|
result
|
2018-01-18 00:21:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
let to_string b =
|
2018-01-18 17:39:10 +01:00
|
|
|
let line ="
|
|
|
|
-----------------------------------------------------------------------
|
|
|
|
" in
|
|
|
|
"
|
|
|
|
Atomic Basis set
|
|
|
|
----------------
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------
|
2018-01-19 17:42:12 +01:00
|
|
|
# Angular Coordinates (Bohr) Exponents Coefficients
|
|
|
|
Momentum X Y Z
|
2018-01-18 17:39:10 +01:00
|
|
|
-----------------------------------------------------------------------
|
|
|
|
"
|
2018-01-19 03:14:06 +01:00
|
|
|
^
|
|
|
|
( Array.map (fun i ->
|
|
|
|
Contracted_shell.to_string i) b
|
2018-01-18 17:39:10 +01:00
|
|
|
|> Array.to_list
|
|
|
|
|> String.concat line
|
2018-01-19 03:14:06 +01:00
|
|
|
)
|
2018-01-18 17:39:10 +01:00
|
|
|
^ line
|
2017-12-30 19:06:07 +01:00
|
|
|
|
2018-01-22 23:19:24 +01:00
|
|
|
let file : string option ref = ref None
|
|
|
|
|
|
|
|
let set_file f =
|
|
|
|
file := Some f
|
|
|
|
|
|
|
|
let general_basis = lazy(
|
|
|
|
match !file with
|
|
|
|
| None -> failwith "basis set file not defined"
|
|
|
|
| Some filename -> Gamess_reader.read ~filename
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
let basis = lazy (
|
|
|
|
of_nuclei_and_general_basis
|
|
|
|
(Lazy.force Nuclei.nuclei) (Lazy.force general_basis)
|
|
|
|
)
|
|
|
|
|
2018-01-18 23:42:48 +01:00
|
|
|
|