quantum_package/ocaml/test_basis.ml

42 lines
973 B
OCaml
Raw Permalink Normal View History

2017-08-18 18:28:33 +02:00
open Core;;
2014-09-17 14:57:12 +02:00
open Qputils;;
2014-09-17 23:47:13 +02:00
open Qptypes;;
2014-09-17 14:57:12 +02:00
let test_module () =
let basis_channel =
let b = "cc-pvdz" in
2014-10-18 00:10:25 +02:00
In_channel.create (Qpackage.root^"/data/basis/"^(String.lowercase b))
2014-09-17 14:57:12 +02:00
in
2014-11-12 21:58:13 +01:00
(*
2014-09-17 14:57:12 +02:00
let molecule =
let xyz_file = "F2.xyz" in
Molecule.of_xyz_file xyz_file
in
2014-11-12 21:58:13 +01:00
*)
2014-09-17 23:47:13 +02:00
2014-09-17 14:57:12 +02:00
let basis =
2014-10-23 14:42:14 +02:00
(Basis.read_element basis_channel (Nucl_number.of_int 1) Element.F) @
(Basis.read_element basis_channel (Nucl_number.of_int 2) Element.F)
2014-09-17 14:57:12 +02:00
in
2014-10-26 12:46:17 +01:00
print_string "Long basis\n==========\n";
let long_basis =
Long_basis.of_basis basis
in
print_endline (Long_basis.to_string long_basis);
let short_basis =
Long_basis.to_basis long_basis
in
if (short_basis <> basis) then
print_endline "(short_basis <> basis)"
;
print_string "Short basis\n===========\n";
print_endline (Basis.to_string basis);
print_endline ("MD5: "^(Basis.to_md5 basis |> MD5.to_string));
2014-09-17 14:57:12 +02:00
;;
test_module ();