Revisión | f986812f72991d5297b179f6e0a1b8f386f7c79a (tree) |
---|---|
Tiempo | 2011-07-16 18:39:39 |
Autor | Mikiya Fujii <mikiya.fujii@gmai...> |
Commiter | Mikiya Fujii |
README for CIS is modified.
git-svn-id: https://svn.sourceforge.jp/svnroot/molds/MolDS/trunk@116 1136aad2-a195-0410-b898-f5ea1d11b9d8
@@ -60,25 +60,44 @@ How to Write Input-files: | ||
60 | 60 | THEORY_END |
61 | 61 | |
62 | 62 | -options |
63 | - "davidson", "active_occ", "active_vir", and "nstates" are prepared as options. | |
63 | + "davidson", "active_occ", "active_vir", "max_iter", "max_dim", "norm_tol", | |
64 | + and "nstates" are prepared as options. | |
64 | 65 | |
65 | 66 | "davidson" should be set as "yes" or "no". |
66 | - Default value is "yes". | |
67 | + Default value of "davidson" is "yes". | |
67 | 68 | |
68 | 69 | "active_occ" ("active_vir") is set to the number of occupied (virtual) orbitals |
69 | - if user set "active_occ" ("active_vir") to be greater than the number of occupied (virtual) orbitals. | |
70 | + if user set "active_occ" ("active_vir") to be greater than | |
71 | + the number of occupied (virtual) orbitals. | |
70 | 72 | Default value of "active_occ" is 10. Default value of "active_vir" is 10. |
71 | 73 | |
72 | - "nstates" is valid for the Davidson algorithm only, hence "nstates" is set to "active_occ*active_vir" | |
74 | + "nstates" is valid for the Davidson algorithm only, | |
75 | + hence "nstates" is set to "active_occ*active_vir" | |
73 | 76 | in direct CIS algorithm (without the Davidson algorithem). |
74 | 77 | Default value of "nstates" is 5 for the Davidson algorithem. |
75 | 78 | |
79 | + "max_iter" is valid for the Davidson algorithm only. | |
80 | + This option means the number of times of Davidson roop. | |
81 | + Default value of "max_iter" is 100. | |
82 | + | |
83 | + "max_dim" is valid for the Davidson algorithm only. | |
84 | + This option means the number of slater determinans used by expansion of the excited states. | |
85 | + Note that Hartree-Fock state (groudn state) is not included in the "max_dim". | |
86 | + Default value of "max_dim" is 100. | |
87 | + | |
88 | + "norm_tol" is valid for the Davidson algorithm only. | |
89 | + This option means the max tolerance for the norm of the residual vectors. | |
90 | + Default value of "norm_tol" is 10**(-6.0). | |
91 | + | |
76 | 92 | E.g. |
77 | 93 | CIS |
78 | 94 | davidson no |
79 | 95 | active_occ 2 |
80 | 96 | active_vir 2 |
81 | 97 | nstates 1000 |
98 | + max_iter 100 | |
99 | + max_dim 100 | |
100 | + norm_tol 0.000001 | |
82 | 101 | CIS_END |
83 | 102 | |
84 | 103 |