Dice Python Frontend Documentation
dice_defaults.py
Go to the documentation of this file.
1 
8 
9 # Expected input values
10 systems = ['QHO','H2plus','H2','test'] # List of possible systems
11 boolean = [True,False] # List of possible values
12 
13 # Default CONTROL values
14 d_equi = '.FALSE.' # Default value for run_equil
15 d_rres = '.FALSE.' # Default value for run_restart
16 d_wres = '.FALSE.' # Default value for write_restart
17 d_rnum = [1, 1, 1] # Default value for restart_step
18 d_chn = '.FALSE' # Default value for write_chains
19 d_log = '.FALSE.' # Default value for write_log
20 
21 # Default PARAMETER values
22 d_equi_steps = [100000,100000,100000] # Default number of steps for the three systems, for equilibration runs
23 d_vqmc_steps = [100000,100000,100000] # Default number of steps for the three systems, for non-equilibration runs
24 d_bstep = [3000,5000,4000] # Default burn_step for the three systems
25 d_tstep = [10,20,40] # Default thin_step for the three systems
26 d_sigma = [5.5,1.8,0.8] # Default sigma for the three systems
27 d_rcut = [3.0,3.0,3.0] # Default rcut for the three systems
28 
29 # Parameters for QHO
30 d_alpha = [0.1,1.0,10.0]
31 
32 # Parameters for H2plus
33 d_auto_h2plus = '.FALSE.'
34 d_c_fdstep = 1E-3
35 d_ham_fdstep = 1E-3
36 d_c = 0.7
37 d_c_grid = [0,1,10]
38 d_bond_h2plus = [1,3,10]
39 
40 # Parameters for H2
41 d_auto_h2 = '.FALSE.'
42 d_beta = 0.4
43 d_beta_grid = [0,1,10]
44 d_bond_h2 = [1,3,10]
45 
46 # Order of namelist definitions
47 
48 corder = ['p_system','run_equil','run_restart','write_restart','restart_step','write_chains','write_log']
49 
50 porder_qho = ['steps','burn_step','thin_step','rcut','sigma','alpha']
51 
52 porder_h2plus = ['steps','burn_step','thin_step','rcut','sigma','auto_params','ham_fdstep','c_fdstep','c','c_grid','bond']
53 
54 porder_h2 = ['steps','burn_step','thin_step','rcut','sigma','auto_params','beta','beta_grid','bond']