2017-08-18 18:28:33 +02:00
|
|
|
open Core
|
2016-01-14 15:17:57 +01:00
|
|
|
open Qptypes
|
|
|
|
|
2016-01-26 15:17:25 +01:00
|
|
|
let basis () =
|
2016-01-14 15:17:57 +01:00
|
|
|
let ezfio_filename =
|
|
|
|
Sys.argv.(1)
|
|
|
|
in
|
|
|
|
if (not (Sys.file_exists_exn ezfio_filename)) then
|
|
|
|
failwith "Error reading EZFIO file";
|
|
|
|
Ezfio.set_file ezfio_filename;
|
|
|
|
let basis =
|
|
|
|
match Input.Ao_basis.read () with
|
|
|
|
| Some basis -> basis
|
|
|
|
| _ -> failwith "Error reading basis set"
|
|
|
|
in
|
|
|
|
Input.Ao_basis.to_rst basis
|
|
|
|
|> Rst_string.to_string
|
|
|
|
|> print_endline
|
2016-01-26 15:05:46 +01:00
|
|
|
|
2016-01-14 15:17:57 +01:00
|
|
|
|
2016-01-26 15:17:25 +01:00
|
|
|
let mo () =
|
2016-01-14 15:18:31 +01:00
|
|
|
let ezfio_filename =
|
|
|
|
Sys.argv.(1)
|
|
|
|
in
|
|
|
|
if (not (Sys.file_exists_exn ezfio_filename)) then
|
|
|
|
failwith "Error reading EZFIO file";
|
|
|
|
Ezfio.set_file ezfio_filename;
|
|
|
|
let mo_coef =
|
|
|
|
match Input.Mo_basis.read () with
|
|
|
|
| Some mo_coef -> mo_coef
|
|
|
|
| _ -> failwith "Error reading the mo set"
|
|
|
|
in
|
|
|
|
Input.Mo_basis.to_rst mo_coef
|
|
|
|
|> Rst_string.to_string
|
|
|
|
|> print_endline
|
2016-01-26 15:05:46 +01:00
|
|
|
|
2016-01-14 15:18:31 +01:00
|
|
|
|
2016-02-29 11:26:33 +01:00
|
|
|
let psi_det () =
|
|
|
|
let ezfio_filename =
|
|
|
|
Sys.argv.(1)
|
|
|
|
in
|
|
|
|
if (not (Sys.file_exists_exn ezfio_filename)) then
|
|
|
|
failwith "Error reading EZFIO file";
|
|
|
|
Ezfio.set_file ezfio_filename;
|
|
|
|
let psi_det =
|
2016-03-07 20:13:43 +01:00
|
|
|
Input.Determinants_by_hand.read ()
|
2016-02-29 11:26:33 +01:00
|
|
|
in
|
|
|
|
Input.Determinants_by_hand.to_rst psi_det
|
|
|
|
|> Rst_string.to_string
|
|
|
|
|> print_endline
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-01-26 15:17:25 +01:00
|
|
|
let () =
|
|
|
|
basis ();
|
2017-07-15 05:28:31 +02:00
|
|
|
mo ()
|
|
|
|
(* psi_det () *)
|
2016-01-26 15:17:25 +01:00
|
|
|
|