10
0
mirror of https://github.com/LCPQ/quantum_package synced 2025-01-03 10:05:57 +01:00

Remove ezfio_config

This commit is contained in:
Thomas Applencourt 2015-06-23 13:46:41 +02:00
parent a0407bf89f
commit 45054db18e
4 changed files with 34 additions and 18 deletions

View File

@ -255,7 +255,7 @@ def get_dict_config_file(module_obj):
sys.exit(1) sys.exit(1)
try: try:
interface = map(str.lower, config_file.get(section, "interface").split(",")) interface = [i.lower().strip() for i in config_file.get(section, "interface").split(",")]
except ConfigParser.NoOptionError: except ConfigParser.NoOptionError:
error("doc", pvd, module_obj.path) error("doc", pvd, module_obj.path)
sys.exit(1) sys.exit(1)

View File

@ -55,58 +55,58 @@ default: 0.999
[n_states_diag] [n_states_diag]
type: integer type: integer
doc: n_states_diag doc: n_states_diag
interface: ezfio, provider interface: ezfio,provider
[n_int] [n_int]
interface: ezfio, provider interface: ezfio
doc: n_int doc: n_int
type: N_int_number type: N_int_number
[bit_kind] [bit_kind]
interface: ezfio, provider interface: ezfio
doc: bit_kind doc: bit_kind
type: Bit_kind type: Bit_kind
[mo_label] [mo_label]
interface: ezfio, provider interface: ezfio,provider
doc: o_label doc: o_label
type: character*(64) type: character*(64)
[n_det] [n_det]
interface: ezfio, provider interface: ezfio
doc: n_det doc: n_det
type: integer type: integer
[psi_coef] [psi_coef]
interface: ezfio, provider interface: ezfio
doc: psi_coef doc: psi_coef
type: double precision type: double precision
size: (determinants.n_det,determinants.n_states) size: (determinants.n_det,determinants.n_states)
[psi_det] [psi_det]
interface: ezfio, provider interface: ezfio
doc: psi_det doc: psi_det
type: integer*8 type: integer*8
size: (determinants.n_int*determinants.bit_kind/8,2,determinants.n_det) size: (determinants.n_int*determinants.bit_kind/8,2,determinants.n_det)
[det_num] [det_num]
interface: ezfio, provider interface: ezfio,provider
doc: det_num doc: det_num
type: integer type: integer
[det_occ] [det_occ]
interface: ezfio, provider interface: ezfio,provider
doc: det_occ doc: det_occ
type: integer type: integer
size: (electrons.elec_alpha_num,determinants.det_num,2) size: (electrons.elec_alpha_num,determinants.det_num,2)
[det_coef] [det_coef]
interface: ezfio, provider interface: ezfio,provider
doc: det_coef doc: det_coef
type: double precision type: double precision
size: (determinants.det_num) size: (determinants.det_num)
[expected_s2] [expected_s2]
interface: ezfio, provider interface: ezfio,provider
doc: expcted_s2 doc: expcted_s2
type: double precision type: double precision

22
src/Nuclei/EZFIO.cfg Normal file
View File

@ -0,0 +1,22 @@
[nucl_num]
doc: Number of nuclei
type: integer
interface: ezfio
[nucl_label]
doc: Nuclear labels
type: character*(32)
size: (nuclei_nucl_num)
interface: ezfio
[nucl_charge]
doc: Nuclear charges
type:double precision
size: (nuclei_nucl_num)
interface: ezfio, provider
[nucl_coord]
doc: Nuclear coordinates in the format (:, {x,y,z})
type: double precision
size: (nuclei_nucl_num,3)
interface: ezfio

View File

@ -1,6 +0,0 @@
nuclei
nucl_num integer
nucl_label character*(32) (nuclei_nucl_num)
nucl_charge double precision (nuclei_nucl_num)
nucl_coord double precision (nuclei_nucl_num,3)