QCaml/run_integrals.ml

71 lines
2.5 KiB
OCaml
Raw Permalink Normal View History

let out_file : string option ref = ref None
let basis_file : string option ref = ref None
let nuclei_file : string option ref = ref None
let charge : int option ref = ref None
let multiplicity : int option ref = ref None
let range_separation : float option ref = ref None
2018-01-18 00:21:05 +01:00
let speclist = [
2018-02-09 00:37:25 +01:00
( "-b" , Arg.String (fun x -> basis_file := Some x),
2018-01-19 03:14:06 +01:00
"File containing the atomic basis set") ;
( "-c" , Arg.Int (fun x -> charge := Some x),
"Total charge of the system") ;
( "-m" , Arg.Int (fun x -> multiplicity := Some x),
"Multiplicity of the system") ;
2019-04-05 14:33:31 +02:00
( "-x" , Arg.String (fun x -> nuclei_file := Some x),
2018-01-19 03:14:06 +01:00
"File containing the nuclear coordinates") ;
( "-u" , Arg.Float (fun x -> range_separation := Some x),
"Value of mu, the range separation factor") ;
2018-01-18 00:21:05 +01:00
]
2020-01-17 10:51:11 +01:00
let run () =
let basis_file =
2018-02-09 00:37:25 +01:00
match !basis_file with
| None -> raise (Invalid_argument "Basis set file should be specified with -b")
| Some x -> x
and nuclei_file =
match !nuclei_file with
2019-04-05 14:33:31 +02:00
| None -> raise (Invalid_argument "Coordinate file should be specified with -x")
2018-02-09 00:37:25 +01:00
| Some x -> x
2020-05-08 00:33:43 +02:00
and range_separation = !range_separation
and charge = !charge
and multiplicity = !multiplicity
2018-01-18 00:21:05 +01:00
in
2018-01-19 03:14:06 +01:00
2018-02-09 00:37:25 +01:00
let s =
Simulation.of_filenames ?range_separation ?charge ?multiplicity
~nuclei:nuclei_file basis_file
2018-02-09 00:37:25 +01:00
in
2018-01-19 03:14:06 +01:00
2019-02-20 18:15:15 +01:00
print_endline @@ Nuclei.to_string @@ Simulation.nuclei s;
2018-02-20 23:54:48 +01:00
print_endline "Nuclear repulsion : ";
2019-02-20 18:15:15 +01:00
print_float @@ Simulation.nuclear_repulsion s; print_newline ();
print_endline @@ Basis.to_string @@ Simulation.basis s;
2018-02-09 00:37:25 +01:00
2019-02-20 18:15:15 +01:00
let ao_basis = Simulation.ao_basis s in
2019-02-20 18:24:44 +01:00
let overlap = AOBasis.overlap ao_basis in
let eN_ints = AOBasis.eN_ints ao_basis in
let kin_ints = AOBasis.kin_ints ao_basis in
let ee_ints = AOBasis.ee_ints ao_basis in
let multipole = AOBasis.multipole ao_basis in
2020-01-17 10:51:11 +01:00
Overlap.to_file ~filename:("Ov.dat") overlap;
NucInt.to_file ~filename:("Nuc.dat") eN_ints;
KinInt.to_file ~filename:("Kin.dat") kin_ints;
2020-03-26 16:24:41 +01:00
ERI.to_file ~filename:("ERI.dat") ee_ints;
Multipole.to_file ~filename:("x.dat") (Multipole.matrix_x multipole);
Multipole.to_file ~filename:("y.dat") (Multipole.matrix_y multipole);
Multipole.to_file ~filename:("z.dat") (Multipole.matrix_z multipole);
2020-05-08 00:33:43 +02:00
match range_separation with
| Some _mu ->
2020-03-26 16:24:41 +01:00
ERI_lr.to_file ~filename:("ERI_lr.dat") (AOBasis.ee_lr_ints ao_basis)
| None -> ()
2018-01-18 00:21:05 +01:00
let () =
2018-01-18 14:56:08 +01:00
let usage_msg = "Available options:" in
2018-01-18 00:21:05 +01:00
Arg.parse speclist (fun _ -> ()) usage_msg;
2020-01-17 10:51:11 +01:00
run ()
2018-01-19 03:14:06 +01:00