• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisionf986812f72991d5297b179f6e0a1b8f386f7c79a (tree)
l'heure2011-07-16 18:39:39
AuteurMikiya Fujii <mikiya.fujii@gmai...>
CommiterMikiya Fujii

Message de Log

README for CIS is modified.

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/MolDS/trunk@116 1136aad2-a195-0410-b898-f5ea1d11b9d8

Change Summary

Modification

--- a/doc/README.txt
+++ b/doc/README.txt
@@ -60,25 +60,44 @@ How to Write Input-files:
6060 THEORY_END
6161
6262 -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.
6465
6566 "davidson" should be set as "yes" or "no".
66- Default value is "yes".
67+ Default value of "davidson" is "yes".
6768
6869 "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.
7072 Default value of "active_occ" is 10. Default value of "active_vir" is 10.
7173
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"
7376 in direct CIS algorithm (without the Davidson algorithem).
7477 Default value of "nstates" is 5 for the Davidson algorithem.
7578
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+
7692 E.g.
7793 CIS
7894 davidson no
7995 active_occ 2
8096 active_vir 2
8197 nstates 1000
98+ max_iter 100
99+ max_dim 100
100+ norm_tol 0.000001
82101 CIS_END
83102
84103