10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-21 12:42:13 +02:00
quantum_package/ocaml/test_basis.ml

30 lines
627 B
OCaml

open Core.Std;;
open Qputils;;
open Qptypes;;
let test_module () =
let basis_channel =
let b = "cc-pvdz" in
In_channel.create (Qpackage.root^"/data/basis/"^(String.lowercase b))
in
let molecule =
let xyz_file = "F2.xyz" in
Molecule.of_xyz_file xyz_file
in
let nuclei = molecule.Molecule.nuclei in
let basis =
(Basis.read_element basis_channel (Nucl_number.of_int 1) Element.F) @
(Basis.read_element basis_channel (Nucl_number.of_int 2) Element.F)
in
Long_basis.of_basis basis
|> Long_basis.to_string
|> print_endline
;;
test_module ();