10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 03:15:29 +02:00
quantum_package/ocaml/Basis.ml

76 lines
1.7 KiB
OCaml
Raw Normal View History

2016-01-14 17:03:55 +01:00
open Core.Std
open Qptypes
2014-08-27 16:38:13 +02:00
2016-01-14 17:03:55 +01:00
type t = (Gto.t * Nucl_number.t) list with sexp
2014-08-27 16:38:13 +02:00
(** Read all the basis functions of an element *)
2014-09-17 23:47:13 +02:00
let read in_channel at_number =
2014-08-27 16:38:13 +02:00
let rec read result =
try
let gto = Gto.read_one in_channel in
2014-09-17 23:47:13 +02:00
read ( (gto,at_number)::result)
2014-08-27 16:38:13 +02:00
with
| Gto.End_Of_Basis -> List.rev result
in read []
2016-01-14 17:03:55 +01:00
2014-08-27 16:38:13 +02:00
(** Find an element in the basis set file *)
let find in_channel element =
2014-09-17 14:57:12 +02:00
In_channel.seek in_channel 0L;
2014-08-27 16:38:13 +02:00
let element_read = ref Element.X in
while !element_read <> element
do
let buffer = input_line in_channel in
try
element_read := Element.of_string buffer
with
| Element.ElementError _ -> ()
done ;
!element_read
2016-01-14 17:03:55 +01:00
2014-08-27 16:38:13 +02:00
2014-09-17 23:47:13 +02:00
(** Read an element from the file *)
let read_element in_channel at_number element =
2014-08-27 16:38:13 +02:00
ignore (find in_channel element) ;
2016-01-14 17:03:55 +01:00
read in_channel at_number
2014-08-27 16:38:13 +02:00
2017-04-20 08:48:06 +02:00
let to_string_general ~fmt ~atom_sep b =
2014-10-26 12:46:17 +01:00
let new_nucleus n =
2017-04-20 08:48:06 +02:00
Printf.sprintf "Atom %d" n
2014-10-26 12:46:17 +01:00
in
let rec do_work accu current_nucleus = function
| [] -> List.rev accu
| (g,n)::tail ->
let n = Nucl_number.to_int n
in
let accu =
if (n <> current_nucleus) then
(new_nucleus n)::atom_sep::accu
2014-10-26 12:46:17 +01:00
else
accu
in
do_work ((Gto.to_string ~fmt g)::accu) n tail
2014-10-26 12:46:17 +01:00
in
do_work [new_nucleus 1] 1 b
|> String.concat ~sep:"\n"
2017-04-20 08:48:06 +02:00
let to_string_gamess =
to_string_general ~fmt:Gto.Gamess ~atom_sep:""
2017-04-20 08:48:06 +02:00
let to_string_gaussian b =
2016-04-06 21:23:26 +02:00
String.concat ~sep:"\n"
2017-04-20 08:48:06 +02:00
[ to_string_general ~fmt:Gto.Gaussian ~atom_sep:"****" b ; "****" ]
let to_string ?(fmt=Gto.Gamess) =
match fmt with
| Gto.Gamess -> to_string_gamess
| Gto.Gaussian -> to_string_gaussian
2016-01-14 17:03:55 +01:00
include To_md5
let to_md5 = to_md5 sexp_of_t
2016-01-14 17:03:55 +01:00
2014-10-26 12:46:17 +01:00