10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-21 20:52:18 +02:00

Print ao symmetries

This commit is contained in:
Anthony Scemama 2014-10-31 23:05:41 +01:00
parent 39a8d4101f
commit 90ccf82824
2 changed files with 22 additions and 2 deletions

View File

@ -142,6 +142,22 @@ end = struct
;;
let to_rst b =
let print_sym =
let l = List.init (Array.length b.ao_power) ~f:(
fun i -> ( (i+1),b.ao_nucl.(i),b.ao_power.(i) ) ) in
let rec do_work count = function
| [] -> []
| (i,n,x)::tail ->
if (count < 2) then
(Printf.sprintf " (%4d) %d:%-8s" i (Nucl_number.to_int n) (Symmetry.Xyz.to_string x))::
(do_work (count+1) tail)
else
(Printf.sprintf " (%4d) %d:%-8s\n" i (Nucl_number.to_int n) (Symmetry.Xyz.to_string x))::
(do_work 0 tail)
in do_work 0 l
|> String.concat
in
let short_basis = to_basis b in
Printf.sprintf "
Name of the AO basis ::
@ -152,12 +168,16 @@ Basis set ::
%s
Symmetries ::
%s
" b.ao_basis
(Basis.to_string short_basis
|> String.split ~on:'\n'
|> List.map ~f:(fun x-> " "^x)
|> String.concat ~sep:"\n"
)
) print_sym
|> Rst_string.of_string
;;

View File

@ -131,4 +131,4 @@ test_bielec_intergals ();;
test_electrons();
*)
test_fci();
test_ao();