crysna 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/CHANGES +24 -0
  4. data/Gemfile +26 -0
  5. data/Gemfile.lock +91 -0
  6. data/LICENSE.txt +20 -0
  7. data/README.rdoc +19 -0
  8. data/Rakefile +53 -0
  9. data/VERSION +1 -0
  10. data/bin/checkmodel +66 -0
  11. data/bin/collectcell +92 -0
  12. data/bin/fitframe +68 -0
  13. data/bin/occupiedpolyhedralsite +96 -0
  14. data/bin/occupiedscattersite +77 -0
  15. data/bin/site2poscar +66 -0
  16. data/bin/site2pov +30 -0
  17. data/bin/sitecombination +69 -0
  18. data/bin/sitemigration +80 -0
  19. data/bin/sitemigrationdistance +87 -0
  20. data/bin/siteoperation +109 -0
  21. data/bin/sitesingle +36 -0
  22. data/bin/siteuniq +32 -0
  23. data/bin/symidsite +65 -0
  24. data/bin/transitcell +46 -0
  25. data/crysna.gemspec +219 -0
  26. data/lib/crysna.rb +26 -0
  27. data/lib/crysna/atom.rb +97 -0
  28. data/lib/crysna/cell.rb +314 -0
  29. data/lib/crysna/frameatom.rb +13 -0
  30. data/lib/crysna/frameinterstitialcell.rb +309 -0
  31. data/lib/crysna/interstitialatom.rb +13 -0
  32. data/lib/crysna/modelstructure.rb +333 -0
  33. data/lib/crysna/optionmanager.rb +177 -0
  34. data/lib/crysna/site.rb +35 -0
  35. data/lib/crysna/siteconfiguration.rb +26 -0
  36. data/lib/crysna/sitenamelabeledcell.rb +220 -0
  37. data/lib/crysna/siteoperation.rb +56 -0
  38. data/lib/crysna/sitewithposition.rb +24 -0
  39. data/lib/crysna/transitionfinder.rb +448 -0
  40. data/lib/crysna/transitionfinder/cell.rb +144 -0
  41. data/lib/crysna/transitionfinder/cellmanager.rb +129 -0
  42. data/lib/crysna/transitionfinder/edge.rb +54 -0
  43. data/test/.gitignore +1 -0
  44. data/test/cell_orig/POSCAR +17 -0
  45. data/test/cell_orig/model.yaml +122 -0
  46. data/test/collectcells/.gitignore +2 -0
  47. data/test/collectcells/model.yaml +154 -0
  48. data/test/collectcells/nooutcar/minexpconfiguration.yaml +22 -0
  49. data/test/collectcells/normal-higher/OUTCAR +2406 -0
  50. data/test/collectcells/normal-higher/minexpconfiguration.yaml +22 -0
  51. data/test/collectcells/normal-lower/OUTCAR +2406 -0
  52. data/test/collectcells/normal-lower/minexpconfiguration.yaml +22 -0
  53. data/test/collectcells/normal/OUTCAR +2406 -0
  54. data/test/collectcells/normal/minexpconfiguration.yaml +22 -0
  55. data/test/collectcells/normalB/OUTCAR +2406 -0
  56. data/test/collectcells/normalB/minexpconfiguration.yaml +22 -0
  57. data/test/collectcells/unfinished/OUTCAR +40702 -0
  58. data/test/collectcells/unfinished/minexpconfiguration.yaml +22 -0
  59. data/test/collectcells/unidentified/OUTCAR +3541 -0
  60. data/test/collectcells/unidentified/minexpconfiguration.yaml +2 -0
  61. data/test/fitmodelstructure/.gitignore +1 -0
  62. data/test/fitmodelstructure/AgI/CONTCAR +17 -0
  63. data/test/fitmodelstructure/AgI/fitmodelstructure.log +1161 -0
  64. data/test/fitmodelstructure/AgI/model.yaml +45 -0
  65. data/test/fitmodelstructure/normal/CONTCAR +17 -0
  66. data/test/fitmodelstructure/normal/fitmodelstructure.log +5063 -0
  67. data/test/fitmodelstructure/normal/model.yaml +122 -0
  68. data/test/fitmodelstructure/unidentified/CONTCAR +44 -0
  69. data/test/fitmodelstructure/unidentified/fitmodelstructure.log +8833 -0
  70. data/test/fitmodelstructure/unidentified/model.yaml +154 -0
  71. data/test/helper.rb +17 -0
  72. data/test/identifypolyhedralsites/.gitignore +1 -0
  73. data/test/identifypolyhedralsites/identifyatomsites.log +333 -0
  74. data/test/identifypolyhedralsites/normal/fitmodelstructure.yaml +60 -0
  75. data/test/identifypolyhedralsites/normal/model.yaml +122 -0
  76. data/test/identifypolyhedralsites/unidentified/fitmodelstructure.yaml +2 -0
  77. data/test/identifypolyhedralsites/unidentified/model.yaml +154 -0
  78. data/test/identifypolyhedralsites/volumemismatch/fitmodelstructure.yaml +101 -0
  79. data/test/identifypolyhedralsites/volumemismatch/model.yaml +154 -0
  80. data/test/identifyscattersites/CONTCAR +17 -0
  81. data/test/identifyscattersites/POSCAR +12 -0
  82. data/test/identifyscattersites/fitmodelstructure.log +1 -0
  83. data/test/identifyscattersites/fitmodelstructure.yaml +0 -0
  84. data/test/identifyscattersites/identifyscattersites.yaml +5 -0
  85. data/test/identifyscattersites/model.yaml +45 -0
  86. data/test/minexpconfiguration/.gitignore +1 -0
  87. data/test/minexpconfiguration/collective/AgI/.gitignore +2 -0
  88. data/test/minexpconfiguration/collective/AgI/siteoperations.yaml +51265 -0
  89. data/test/minexpconfiguration/collective/AgI/sitesingle.yaml +15 -0
  90. data/test/minexpconfiguration/collective/AgI/test.sh +2 -0
  91. data/test/minexpconfiguration/normal/identifysites.yaml +22 -0
  92. data/test/minexpconfiguration/normal/minexpconfiguration.log +0 -0
  93. data/test/minexpconfiguration/normal/siteoperations.yaml +1793 -0
  94. data/test/minexpconfiguration/unidentified/identifysites.yaml +2 -0
  95. data/test/minexpconfiguration/unidentified/siteoperations.yaml +1793 -0
  96. data/test/sitecombination/initsites.yaml +7 -0
  97. data/test/sitecombination/initsites_test2.yaml +8 -0
  98. data/test/sitecombination/sitecombination.yaml +29 -0
  99. data/test/siteconfiguration/elements-sitenames.yaml +2 -0
  100. data/test/siteconfiguration/latticeaxes.yaml +3 -0
  101. data/test/siteconfiguration/sitenames-coordinates.yaml +4 -0
  102. data/test/sitemigrationsdistance/model.yaml +45 -0
  103. data/test/siteoperations/.gitignore +2 -0
  104. data/test/siteoperations/model.yaml +43 -0
  105. data/test/siteoperations/symmetryoperations.yaml +1441 -0
  106. data/test/sitesingle/.gitignore +1 -0
  107. data/test/sitesingle/sitecombination.yaml +29 -0
  108. data/test/siteuniq/minexpconfiguration.yaml +15 -0
  109. data/test/siteuniq/siteuniq.yaml +8 -0
  110. data/test/test_atom.rb +206 -0
  111. data/test/test_cell.rb +604 -0
  112. data/test/test_commands.rb +340 -0
  113. data/test/test_crystana.rb +7 -0
  114. data/test/test_frameatom.rb +22 -0
  115. data/test/test_frameinterstitialcell.rb +939 -0
  116. data/test/test_interstitialatom.rb +22 -0
  117. data/test/test_modelstructure.rb +807 -0
  118. data/test/test_optionmanager.rb +172 -0
  119. data/test/test_site.rb +40 -0
  120. data/test/test_siteconfiguration.rb +29 -0
  121. data/test/test_sitenamelabeledcell.rb +528 -0
  122. data/test/test_siteoperation.rb +79 -0
  123. data/test/test_sitewithposition.rb +20 -0
  124. data/test/test_transitionfinder.rb +432 -0
  125. data/test/transitcell/.gitignore +2 -0
  126. data/test/transitcell/collectcells.yaml +51 -0
  127. data/test/transitcell/sitemigrations.yaml +8 -0
  128. data/test/transitcell/siteoperations.yaml +17 -0
  129. data/test/transitcell/transitcell.log +1342 -0
  130. data/test/transitionfinder/collectcells.yaml +81 -0
  131. data/test/transitionfinder/sitemigrations.yaml +33 -0
  132. data/test/transitionfinder/siteoperations.yaml +16 -0
  133. data/test/transitionfinder/test_cell.rb +287 -0
  134. data/test/transitionfinder/test_cellmanager.rb +185 -0
  135. data/test/transitionfinder/test_edge.rb +49 -0
  136. data/test/uniquesitesgenerator/elements-sitenames.yaml +1 -0
  137. data/test/uniquesitesgenerator/siteoperations.yaml +9 -0
  138. metadata +406 -0
@@ -0,0 +1,2 @@
1
+ collectcells.log
2
+ collectcells.yaml
@@ -0,0 +1,154 @@
1
+ # Made from Li3PO4 structure.
2
+ frame_elements: [ 2 ]
3
+
4
+ frame_sites:
5
+ FS_00: [ 0.29230, 0.31330, 0.39610]
6
+ FS_01: [ 0.70770, 0.31330, 0.39610]
7
+ FS_02: [ 0.00000, 0.81860, 0.31720]
8
+ FS_03: [ 0.50000, 0.89480, 0.40040]
9
+ FS_04: [ 0.00000, 0.10520, 0.90040]
10
+ FS_05: [ 0.50000, 0.18140, 0.81720]
11
+ FS_06: [ 0.20770, 0.68670, 0.89610]
12
+ FS_07: [ 0.79230, 0.68670, 0.89610]
13
+
14
+ symmetry_operations:
15
+ -
16
+ rotation:
17
+ - [ 1, 0, 0]
18
+ - [ 0, 1, 0]
19
+ - [ 0, 0, 1]
20
+ translation: [0.000000, 0.000000, 0.000000]
21
+ -
22
+ rotation:
23
+ - [-1, 0, 0]
24
+ - [ 0, 1, 0]
25
+ - [ 0, 0, 1]
26
+ translation: [0.000000, 0.000000, 0.000000]
27
+ -
28
+ rotation:
29
+ - [ 1, 0, 0]
30
+ - [ 0, -1, 0]
31
+ - [ 0, 0, 1]
32
+ translation: [0.500000, 1.000000, 0.500000]
33
+ -
34
+ rotation:
35
+ - [-1, 0, 0]
36
+ - [ 0, -1, 0]
37
+ - [ 0, 0, 1]
38
+ translation: [0.500000, 1.000000, 0.500000]
39
+
40
+ octahedral_sites:
41
+ A:
42
+ - [["FS_00", [ 0, 0, 0]], ["FS_07", [ -1, 0, 0]]]
43
+ - [["FS_01", [ -1, 0, 0]], ["FS_06", [ 0, 0, 0]]]
44
+ - [["FS_02", [ 0, 0, 0]], ["FS_04", [ 0, 0, 0]]]
45
+ B:
46
+ - [["FS_00", [ 0, 0, 0]], ["FS_07", [ 0, 0, 0]]]
47
+ - [["FS_01", [ 0, 0, 0]], ["FS_06", [ 0, 0, 0]]]
48
+ - [["FS_03", [ 0, 0, 0]], ["FS_05", [ 0, 0, 0]]]
49
+ C:
50
+ - [["FS_00", [ 0, 0, 0]], ["FS_06", [ 0,-1, 0]]]
51
+ - [["FS_02", [ 0,-1, 0]], ["FS_05", [ 0, 0, 0]]]
52
+ - [["FS_03", [ 0,-1, 0]], ["FS_04", [ 0, 0, 0]]]
53
+ D:
54
+ - [["FS_01", [ 0, 0, 0]], ["FS_07", [ 0,-1, 0]]]
55
+ - [["FS_02", [ 1,-1, 0]], ["FS_05", [ 0, 0, 0]]]
56
+ - [["FS_03", [ 0,-1, 0]], ["FS_04", [ 1, 0, 0]]]
57
+ E:
58
+ - [["FS_00", [ 0, 0, 0]], ["FS_07", [ -1, 0, -1]]]
59
+ - [["FS_01", [ -1, 0, 0]], ["FS_06", [ 0, 0, -1]]]
60
+ - [["FS_02", [ 0, 0, 0]], ["FS_04", [ 0, 0, -1]]]
61
+ F:
62
+ - [["FS_00", [ 0, 0, 0]], ["FS_07", [ 0, 0, -1]]]
63
+ - [["FS_01", [ 0, 0, 0]], ["FS_06", [ 0, 0, -1]]]
64
+ - [["FS_03", [ 0, 0, 0]], ["FS_05", [ 0, 0, -1]]]
65
+ G:
66
+ - [["FS_00", [ 0, 0, 0]], ["FS_06", [ 0,-1, -1]]]
67
+ - [["FS_02", [ 0,-1, 0]], ["FS_05", [ 0, 0, -1]]]
68
+ - [["FS_03", [ 0,-1, 0]], ["FS_04", [ 0, 0, -1]]]
69
+ H:
70
+ - [["FS_01", [ 0, 0, 0]], ["FS_07", [ 0,-1, -1]]]
71
+ - [["FS_02", [ 1,-1, 0]], ["FS_05", [ 0, 0, -1]]]
72
+ - [["FS_03", [ 0,-1, 0]], ["FS_04", [ 1, 0, -1]]]
73
+
74
+ tetrahedral_sites:
75
+ I:
76
+ - ["FS_00", [ 0, 0, 0]]
77
+ - ["FS_01", [ -1, 0, 0]]
78
+ - ["FS_02", [ 0, -1, 0]]
79
+ - ["FS_04", [ 0, 0, 0]]
80
+ J:
81
+ - ["FS_00", [ 0, 0, 0]]
82
+ - ["FS_01", [ 0, 0, 0]]
83
+ - ["FS_03", [ 0, -1, 0]]
84
+ - ["FS_05", [ 0, 0, 0]]
85
+ K:
86
+ - ["FS_00", [ 0, 0, 0]]
87
+ - ["FS_02", [ 0, 0, 0]]
88
+ - ["FS_03", [ 0, 0, 0]]
89
+ - ["FS_06", [ 0, 0, 0]]
90
+ L:
91
+ - ["FS_01", [ 0, 0, 0]]
92
+ - ["FS_02", [ 1, 0, 0]]
93
+ - ["FS_03", [ 0, 0, 0]]
94
+ - ["FS_07", [ 0, 0, 0]]
95
+ M:
96
+ - ["FS_04", [ 0, 0, -1]]
97
+ - ["FS_06", [ 0, 0, -1]]
98
+ - ["FS_05", [ 0, 0, -1]]
99
+ - ["FS_00", [ 0, 0, 0]]
100
+ N:
101
+ - ["FS_04", [ 1, 0, -1]]
102
+ - ["FS_05", [ 0, 0, -1]]
103
+ - ["FS_07", [ 0, 0, -1]]
104
+ - ["FS_01", [ 0, 0, 0]]
105
+ O:
106
+ - ["FS_04", [ 0, 1, -1]]
107
+ - ["FS_06", [ 0, 0, -1]]
108
+ - ["FS_07", [ -1, 0, -1]]
109
+ - ["FS_02", [ 0, 0, 0]]
110
+ P:
111
+ - ["FS_05", [ 0, 1, -1]]
112
+ - ["FS_06", [ 0, 0, -1]]
113
+ - ["FS_07", [ 0, 0, -1]]
114
+ - ["FS_03", [ 0, 0, 0]]
115
+ Q:
116
+ - ["FS_00", [ 0, 0, 0]]
117
+ - ["FS_01", [ -1, 0, 0]]
118
+ - ["FS_02", [ 0, -1, 0]]
119
+ - ["FS_04", [ 0, 0, -1]]
120
+ R:
121
+ - ["FS_00", [ 0, 0, 0]]
122
+ - ["FS_01", [ 0, 0, 0]]
123
+ - ["FS_03", [ 0, -1, 0]]
124
+ - ["FS_05", [ 0, 0, -1]]
125
+ S:
126
+ - ["FS_00", [ 0, 0, 0]]
127
+ - ["FS_02", [ 0, 0, 0]]
128
+ - ["FS_03", [ 0, 0, 0]]
129
+ - ["FS_06", [ 0, 0, -1]]
130
+ T:
131
+ - ["FS_01", [ 0, 0, 0]]
132
+ - ["FS_02", [ 1, 0, 0]]
133
+ - ["FS_03", [ 0, 0, 0]]
134
+ - ["FS_07", [ 0, 0, -1]]
135
+ U:
136
+ - ["FS_04", [ 0, 0, 0]]
137
+ - ["FS_06", [ 0, 0, 0]]
138
+ - ["FS_05", [ 0, 0, 0]]
139
+ - ["FS_00", [ 0, 0, 0]]
140
+ V:
141
+ - ["FS_04", [ 1, 0, 0]]
142
+ - ["FS_05", [ 0, 0, 0]]
143
+ - ["FS_07", [ 0, 0, 0]]
144
+ - ["FS_01", [ 0, 0, 0]]
145
+ W:
146
+ - ["FS_04", [ 0, 1, 0]]
147
+ - ["FS_06", [ 0, 0, 0]]
148
+ - ["FS_07", [ -1, 0, 0]]
149
+ - ["FS_02", [ 0, 0, 0]]
150
+ X:
151
+ - ["FS_05", [ 0, 1, 0]]
152
+ - ["FS_06", [ 0, 0, 0]]
153
+ - ["FS_07", [ 0, 0, 0]]
154
+ - ["FS_03", [ 0, 0, 0]]
@@ -0,0 +1,22 @@
1
+ ---
2
+ 0:
3
+ - I
4
+ - K
5
+ - N
6
+ - O
7
+ - R
8
+ - T
9
+ - U
10
+ - X
11
+ 1:
12
+ - B
13
+ - F
14
+ 2:
15
+ - FS_00
16
+ - FS_01
17
+ - FS_02
18
+ - FS_03
19
+ - FS_04
20
+ - FS_05
21
+ - FS_06
22
+ - FS_07
@@ -0,0 +1,2406 @@
1
+ vasp.4.6.31 08Feb07 complex
2
+ executed on LinuxIFC date 2011.01.01 22:37:06
3
+ running on 1 nodes
4
+ distr: one band on 1 nodes, 1 groups
5
+
6
+
7
+ --------------------------------------------------------------------------------------------------------
8
+
9
+
10
+ INCAR:
11
+ POTCAR: PAW_PBE Li_sv 23Jan2001
12
+ POTCAR: PAW_PBE Ge_d 06Sep2000
13
+ POTCAR: PAW_PBE O_s 07Sep2000
14
+ POTCAR: PAW_PBE Li_sv 23Jan2001
15
+ VRHFIN =Li: 1s2s2p
16
+ LEXCH = PE
17
+ EATOM = 202.7858 eV, 14.9043 Ry
18
+
19
+ TITEL = PAW_PBE Li_sv 23Jan2001
20
+ LULTRA = F use ultrasoft PP ?
21
+ IUNSCR = 0 unscreen: 0-lin 1-nonlin 2-no
22
+ RPACOR = .000 partial core radius
23
+ POMASS = 7.010; ZVAL = 3.000 mass and valenz
24
+ RCORE = 2.050 outmost cutoff radius
25
+ RWIGS = 2.050; RWIGS = 1.085 wigner-seitz radius (au A)
26
+ ENMAX = 271.649; ENMIN = 203.737 eV
27
+ ICORE = 2 local potential
28
+ LCOR = T correct aug charges
29
+ LPAW = T paw PP
30
+ EAUG = 428.394
31
+ RMAX = 2.797 core radius for proj-oper
32
+ RAUG = 1.300 factor for augmentation sphere
33
+ RDEP = 2.094 radius for radial grids
34
+ RDEPT = 1.550 core radius for aug-charge
35
+ QCUT = -4.468; QGAM = 8.937 optimization parameters
36
+
37
+ Description
38
+ l E TYP RCUT TYP RCUT
39
+ 0 .000 23 1.550
40
+ 0 .000 23 2.050
41
+ 0 .000 23 1.550
42
+ 0 .000 23 2.050
43
+ 1 -.200 23 2.050
44
+ 1 1.500 23 2.050
45
+ 2 .000 7 1.550
46
+ local pseudopotential read in
47
+ atomic valenz-charges read in
48
+ non local Contribution for L= 0 read in
49
+ real space projection operators read in
50
+ non local Contribution for L= 0 read in
51
+ real space projection operators read in
52
+ non local Contribution for L= 1 read in
53
+ real space projection operators read in
54
+ non local Contribution for L= 1 read in
55
+ real space projection operators read in
56
+ PAW grid and wavefunctions read in
57
+
58
+ number of l-projection operators is LMAX = 4
59
+ number of lm-projection operators is LMMAX = 8
60
+
61
+ POTCAR: PAW_PBE Ge_d 06Sep2000
62
+ VRHFIN =Ge: 3d4s4p
63
+ LEXCH = PE
64
+ EATOM = 2596.4246 eV, 190.8318 Ry
65
+
66
+ TITEL = PAW_PBE Ge_d 06Sep2000
67
+ LULTRA = F use ultrasoft PP ?
68
+ IUNSCR = 1 unscreen: 0-lin 1-nonlin 2-no
69
+ RPACOR = 2.000 partial core radius
70
+ POMASS = 72.610; ZVAL = 14.000 mass and valenz
71
+ RCORE = 2.300 outmost cutoff radius
72
+ RWIGS = 2.300; RWIGS = 1.217 wigner-seitz radius (au A)
73
+ ENMAX = 287.568; ENMIN = 215.676 eV
74
+ ICORE = 3 local potential
75
+ LCOR = T correct aug charges
76
+ LPAW = T paw PP
77
+ EAUG = 531.356
78
+ DEXC = .000
79
+ RMAX = 2.719 core radius for proj-oper
80
+ RAUG = 1.300 factor for augmentation sphere
81
+ RDEP = 2.318 radius for radial grids
82
+ QCUT = -4.597; QGAM = 9.195 optimization parameters
83
+
84
+ Description
85
+ l E TYP RCUT TYP RCUT
86
+ 2 .000 23 2.300
87
+ 2 -.100 23 2.300
88
+ 0 .000 23 2.300
89
+ 0 .000 23 2.300
90
+ 1 .000 23 2.300
91
+ 1 .000 23 2.300
92
+ 3 -.100 7 2.300
93
+ local pseudopotential read in
94
+ partial core-charges read in
95
+ atomic valenz-charges read in
96
+ non local Contribution for L= 2 read in
97
+ real space projection operators read in
98
+ non local Contribution for L= 2 read in
99
+ real space projection operators read in
100
+ non local Contribution for L= 0 read in
101
+ real space projection operators read in
102
+ non local Contribution for L= 0 read in
103
+ real space projection operators read in
104
+ non local Contribution for L= 1 read in
105
+ real space projection operators read in
106
+ non local Contribution for L= 1 read in
107
+ real space projection operators read in
108
+ PAW grid and wavefunctions read in
109
+
110
+ number of l-projection operators is LMAX = 6
111
+ number of lm-projection operators is LMMAX = 18
112
+
113
+ POTCAR: PAW_PBE O_s 07Sep2000
114
+ VRHFIN =O: s2p4
115
+ LEXCH = PE
116
+ EATOM = 432.2909 eV, 31.7725 Ry
117
+
118
+ TITEL = PAW_PBE O_s 07Sep2000
119
+ LULTRA = F use ultrasoft PP ?
120
+ IUNSCR = 0 unscreen: 0-lin 1-nonlin 2-no
121
+ RPACOR = .000 partial core radius
122
+ POMASS = 16.000; ZVAL = 6.000 mass and valenz
123
+ RCORE = 1.850 outmost cutoff radius
124
+ RWIGS = 1.700; RWIGS = .900 wigner-seitz radius (au A)
125
+ ENMAX = 282.841; ENMIN = 212.131 eV
126
+ RCLOC = .804 cutoff for local pot
127
+ LCOR = T correct aug charges
128
+ LPAW = T paw PP
129
+ EAUG = 412.352
130
+ DEXC = .000
131
+ RMAX = 2.742 core radius for proj-oper
132
+ RAUG = 1.300 factor for augmentation sphere
133
+ RDEP = 1.878 radius for radial grids
134
+ QCUT = -4.559; QGAM = 9.119 optimization parameters
135
+
136
+ Description
137
+ l E TYP RCUT TYP RCUT
138
+ 0 .000 23 1.500
139
+ 0 .000 23 1.500
140
+ 1 .000 23 1.850
141
+ 1 .000 23 1.850
142
+ 2 .000 7 .000
143
+ local pseudopotential read in
144
+ atomic valenz-charges read in
145
+ non local Contribution for L= 0 read in
146
+ real space projection operators read in
147
+ non local Contribution for L= 0 read in
148
+ real space projection operators read in
149
+ non local Contribution for L= 1 read in
150
+ real space projection operators read in
151
+ non local Contribution for L= 1 read in
152
+ real space projection operators read in
153
+ PAW grid and wavefunctions read in
154
+
155
+ number of l-projection operators is LMAX = 4
156
+ number of lm-projection operators is LMMAX = 8
157
+
158
+ Optimization of the real space projectors (new method)
159
+
160
+ maximal supplied QI-value = 18.33
161
+ optimisation between [QCUT,QGAM] = [ 10.08, 20.35] = [ 28.46,115.93] Ry
162
+ Optimized for a Real-space Cutoff 1.46 Angstroem
163
+
164
+ l n(q) QCUT max X(q) W(low)/X(q) W(high)/X(q) e(spline)
165
+ 0 9 10.082 5.519 0.11E-04 0.58E-05 0.38E-07
166
+ 0 9 10.082 24.272 0.32E-04 0.14E-04 0.78E-07
167
+ 1 8 10.082 4.148 0.67E-04 0.93E-04 0.48E-06
168
+ 1 8 10.082 11.750 0.17E-03 0.18E-03 0.62E-06
169
+ Optimization of the real space projectors (new method)
170
+
171
+ maximal supplied QI-value = 16.25
172
+ optimisation between [QCUT,QGAM] = [ 10.24, 20.48] = [ 29.35,117.42] Ry
173
+ Optimized for a Real-space Cutoff 1.42 Angstroem
174
+
175
+ l n(q) QCUT max X(q) W(low)/X(q) W(high)/X(q) e(spline)
176
+ 2 8 10.239 7.571 0.73E-05 0.57E-04 0.37E-07
177
+ 2 8 10.239 11.902 0.39E-04 0.17E-03 0.13E-06
178
+ 0 9 10.239 8.658 0.23E-04 0.96E-05 0.17E-07
179
+ 0 9 10.239 33.057 0.47E-04 0.88E-04 0.66E-07
180
+ 1 8 10.239 5.901 0.28E-04 0.74E-05 0.49E-07
181
+ 1 8 10.239 27.336 0.20E-03 0.20E-03 0.76E-07
182
+ Optimization of the real space projectors (new method)
183
+
184
+ maximal supplied QI-value = 20.41
185
+ optimisation between [QCUT,QGAM] = [ 10.20, 20.41] = [ 29.16,116.64] Ry
186
+ Optimized for a Real-space Cutoff 1.51 Angstroem
187
+
188
+ l n(q) QCUT max X(q) W(low)/X(q) W(high)/X(q) e(spline)
189
+ 0 9 10.205 3.225 0.12E-04 0.14E-04 0.89E-07
190
+ 0 9 10.205 31.433 0.16E-03 0.17E-03 0.10E-06
191
+ 1 9 10.205 3.918 0.34E-05 0.24E-04 0.15E-06
192
+ 1 9 10.205 28.387 0.77E-05 0.81E-04 0.30E-06
193
+ PAW_PBE Li_sv 23Jan2001 :
194
+ energy of atom 1 EATOM= -202.7858
195
+ kinetic energy error for atom= 0.0051 (will be added to EATOM!!)
196
+ PAW_PBE Ge_d 06Sep2000 :
197
+ energy of atom 2 EATOM=-2596.4246
198
+ kinetic energy error for atom= 0.0087 (will be added to EATOM!!)
199
+ PAW_PBE O_s 07Sep2000 :
200
+ energy of atom 3 EATOM= -432.2909
201
+ kinetic energy error for atom= 0.0164 (will be added to EATOM!!)
202
+
203
+ EXHCAR: internal setup
204
+ exchange correlation table for LEXCH = 8
205
+ RHO(1)= 0.500 N(1) = 2000
206
+ RHO(2)= 100.500 N(2) = 4000
207
+
208
+ POSCAR: POSCAR of Li3Zn05GeO4
209
+ positions in direct lattice
210
+ velocities in cartesian coordinates
211
+
212
+
213
+
214
+ --------------------------------------------------------------------------------------------------------
215
+
216
+
217
+ ion position nearest neighbor table
218
+ 1 0.248 0.687 0.489- 15 1.94 18 1.94 16 2.03 12 2.15 7 2.45
219
+ 2 0.752 0.687 0.489- 15 1.94 18 1.94 17 2.03 13 2.15 8 2.45
220
+ 3 0.000 0.154 0.332- 18 1.93 17 1.98 16 1.98 11 2.12 4 2.57 5 2.57 9 2.58
221
+ 4 0.287 0.370 0.089- 16 1.86 12 2.01 7 2.02 14 2.17 11 2.31 3 2.57
222
+ 5 0.713 0.370 0.089- 17 1.86 13 2.01 8 2.02 14 2.17 11 2.31 3 2.57
223
+ 6 0.500 0.842 0.984- 14 2.02 13 2.09 12 2.09 15 2.19
224
+ 7 0.193 0.321 0.744- 16 1.86 11 1.92 12 1.95 4 2.02 14 2.16 1 2.45 8 2.48 10 2.52
225
+
226
+ 8 0.807 0.321 0.744- 17 1.86 11 1.92 13 1.95 5 2.02 14 2.16 2 2.45 7 2.48 10 2.52
227
+
228
+ 9 0.000 0.812 0.997- 18 1.78 13 1.79 12 1.79 11 1.83 3 2.58
229
+ 10 0.500 0.150 0.510- 15 1.75 16 1.80 17 1.80 14 1.83 8 2.52 7 2.52
230
+ 11 0.000 0.151 0.950- 9 1.83 7 1.92 8 1.92 3 2.12 5 2.31 4 2.31
231
+ 12 0.226 0.661 0.874- 9 1.79 7 1.95 4 2.01 6 2.09 1 2.15
232
+ 13 0.774 0.661 0.874- 9 1.79 8 1.95 5 2.01 6 2.09 2 2.15
233
+ 14 0.500 0.188 0.839- 10 1.83 6 2.02 8 2.16 7 2.16 4 2.17 5 2.17
234
+ 15 0.500 0.850 0.379- 10 1.75 2 1.94 1 1.94 6 2.19
235
+ 16 0.269 0.313 0.419- 10 1.80 4 1.86 7 1.86 3 1.98 1 2.03
236
+ 17 0.731 0.313 0.419- 10 1.80 5 1.86 8 1.86 3 1.98 2 2.03
237
+ 18 0.000 0.793 0.317- 9 1.78 3 1.93 1 1.94 2 1.94
238
+
239
+ LATTYP: Found a simple monoclinic cell.
240
+ ALAT = 7.6336318971
241
+ B/A-ratio = 0.8402591363
242
+ C/A-ratio = 1.5656543517
243
+ COS(beta) = -0.9460748230
244
+
245
+ Lattice vectors:
246
+
247
+ A1 = ( 0.0000000000, -5.2904125729, -5.5030782975)
248
+ A2 = ( -6.4142289445, 0.0000000000, 0.0000000000)
249
+ A3 = ( 0.0000000000, 10.6274087103, 5.4680544838)
250
+ Subroutine PRICEL returns:
251
+ Original cell was already a primitive cell.
252
+
253
+
254
+ Analysis of symmetry for initial positions (statically):
255
+
256
+ Routine SETGRP: Setting up the symmetry group for a
257
+ simple monoclinic supercell.
258
+
259
+
260
+ Subroutine GETGRP returns: Found 2 space group operations
261
+ (whereof 2 operations were pure point group operations)
262
+ out of a pool of 4 trial point group operations.
263
+
264
+
265
+ The static configuration has the point symmetry C_1h.
266
+
267
+ Analysis of symmetry for dynamics (positions and initial velocities):
268
+
269
+ Subroutine DYNSYM returns: Found 2 space group operations
270
+ (whereof 2 operations were pure point group operations)
271
+ out of a pool of 2 trial space group operations
272
+ (whereof 2 operations were pure point group operations)
273
+ and found also 1 'primitive' translations
274
+
275
+
276
+ The dynamic configuration has the point symmetry C_1h.
277
+
278
+
279
+ KPOINTS: Automatic mesh
280
+
281
+ Automatic generation of k-mesh.
282
+
283
+ Subroutine IBZKPT returns following result:
284
+ ===========================================
285
+
286
+ Found 16 irreducible k-points:
287
+
288
+ Following reciprocal coordinates:
289
+ Coordinates Weight
290
+ 0.125000 0.125000 0.125000 4.000000
291
+ 0.375000 0.125000 0.125000 4.000000
292
+ 0.125000 0.375000 0.125000 4.000000
293
+ 0.375000 0.375000 0.125000 4.000000
294
+ 0.125000 -0.375000 0.125000 4.000000
295
+ 0.375000 -0.375000 0.125000 4.000000
296
+ 0.125000 -0.125000 0.125000 4.000000
297
+ 0.375000 -0.125000 0.125000 4.000000
298
+ 0.125000 0.125000 0.375000 4.000000
299
+ 0.375000 0.125000 0.375000 4.000000
300
+ 0.125000 0.375000 0.375000 4.000000
301
+ 0.375000 0.375000 0.375000 4.000000
302
+ 0.125000 -0.375000 0.375000 4.000000
303
+ 0.375000 -0.375000 0.375000 4.000000
304
+ 0.125000 -0.125000 0.375000 4.000000
305
+ 0.375000 -0.125000 0.375000 4.000000
306
+
307
+ Following cartesian coordinates:
308
+ Coordinates Weight
309
+ 0.019488 0.023571 0.022769 4.000000
310
+ 0.058464 0.023571 0.022769 4.000000
311
+ 0.019488 0.070416 0.023163 4.000000
312
+ 0.058464 0.070416 0.023163 4.000000
313
+ 0.019488 -0.070120 0.021981 4.000000
314
+ 0.058464 -0.070120 0.021981 4.000000
315
+ 0.019488 -0.023275 0.022375 4.000000
316
+ 0.058464 -0.023275 0.022375 4.000000
317
+ 0.019488 0.023867 0.067913 4.000000
318
+ 0.058464 0.023867 0.067913 4.000000
319
+ 0.019488 0.070713 0.068308 4.000000
320
+ 0.058464 0.070713 0.068308 4.000000
321
+ 0.019488 -0.069824 0.067125 4.000000
322
+ 0.058464 -0.069824 0.067125 4.000000
323
+ 0.019488 -0.022978 0.067519 4.000000
324
+ 0.058464 -0.022978 0.067519 4.000000
325
+
326
+
327
+
328
+ --------------------------------------------------------------------------------------------------------
329
+
330
+
331
+
332
+
333
+ Dimension of arrays:
334
+ k-Points NKPTS = 16 number of bands NBANDS= 60
335
+ number of dos NEDOS = 301 number of ions NIONS = 18
336
+ non local maximal LDIM = 6 non local SUM 2l+1 LMDIM = 18
337
+ total plane-waves NPLWV = 54432
338
+ max r-space proj IRMAX = 4178 max aug-charges IRDMAX= 77442
339
+ dimension x,y,z NGX = 42 NGY = 36 NGZ = 36
340
+ dimension x,y,z NGXF= 84 NGYF= 72 NGZF= 72
341
+ support grid NGXF= 168 NGYF= 144 NGZF= 144
342
+ ions per type = 8 2 8
343
+ NGX,Y,Z is equivalent to a cutoff of 10.89, 11.21, 10.81 a.u.
344
+ NGXF,Y,Z is equivalent to a cutoff of 21.77, 22.43, 21.61 a.u.
345
+
346
+
347
+ I would recommend the setting:
348
+ dimension x,y,z NGX = 42 NGY = 35 NGZ = 36
349
+ SYSTEM = (Li4 Ge O4)2 (P1) ~ POSCAR (VASP)
350
+ POSCAR = POSCAR of Li3Zn05GeO4
351
+
352
+ Startparameter for this run:
353
+ NWRITE = 2 write-flag & timer
354
+ PREC = accura medium, high low
355
+ ISTART = 0 job : 0-new 1-cont 2-samecut
356
+ ICHARG = 2 charge: 1-file 2-atom 10-const
357
+ ISPIN = 1 spin polarized calculation?
358
+ LNONCOLLINEAR = F non collinear calculations
359
+ LSORBIT = F spin-orbit coupling
360
+ INIWAV = 1 electr: 0-lowe 1-rand 2-diag
361
+ LASPH = F aspherical Exc in radial PAW
362
+ METAGGA= F non-selfconsistent MetaGGA calc.
363
+
364
+ Electronic Relaxation 1
365
+ ENCUT = 400.0 eV 29.40 Ry 5.42 a.u. 10.46 8.70 9.03*2*pi/ulx,y,z
366
+ ENINI = 400.0 initial cutoff
367
+ ENAUG = 531.4 eV augmentation charge cutoff
368
+ NELM = 60; NELMIN= 4; NELMDL= -5 # of ELM steps
369
+ EDIFF = 0.1E-04 stopping-criterion for ELM
370
+ LREAL = T real-space projection
371
+ LCOMPAT= F compatible to vasp.4.4
372
+ LREAL_COMPAT= F compatible to vasp.4.5.1-3
373
+ GGA_COMPAT = T GGA compatible to vasp.4.4-vasp.4.6
374
+ LMAXPAW = -100 max onsite density
375
+ LMAXMIX = 2 max onsite mixed and CHGCAR
376
+ VOSKOWN= 1 Vosko Wilk Nusair interpolation
377
+ ROPT = -0.00025 -0.00025 -0.00025
378
+ Ionic relaxation
379
+ EDIFFG = -.2E-01 stopping-criterion for IOM
380
+ NSW = 100 number of steps for IOM
381
+ NBLOCK = 1; KBLOCK = 100 inner block; outer block
382
+ IBRION = 2 ionic relax: 0-MD 1-quasi-New 2-CG
383
+ NFREE = 1 steps in history (QN), initial steepest desc. (CG)
384
+ ISIF = 3 stress and relaxation
385
+ IWAVPR = 11 prediction: 0-non 1-charg 2-wave 3-comb
386
+ ISYM = 2 0-nonsym 1-usesym 2-fastsym
387
+ LCORR = T Harris-Foulkes like correction to forces
388
+
389
+ POTIM = 0.50 time-step for ionic-motion
390
+ TEIN = 0.0 initial temperature
391
+ TEBEG = 0.0; TEEND = 0.0 temperature during run
392
+ SMASS = -3.00 Nose mass-parameter (am)
393
+ estimated Nose-frequenzy (Omega) = 0.10E-29 period in steps =****** mass= -0.940E-27a.u.
394
+ NPACO = 256; APACO = 16.0 distance and # of slots for P.C.
395
+ PSTRESS= 0.0 pullay stress
396
+
397
+ Mass of Ions in am
398
+ POMASS = 7.01 72.61 16.00
399
+ Ionic Valenz
400
+ ZVAL = 3.00 14.00 6.00
401
+ Atomic Wigner-Seitz radii
402
+ RWIGS = -1.00 -1.00 -1.00
403
+ NELECT = 100.0000 total number of electrons
404
+ NUPDOWN= -1.0000 fix difference up-down
405
+
406
+ DOS related values:
407
+ EMIN = 10.00; EMAX =-10.00 energy-range for DOS
408
+ ISMEAR = 0; SIGMA = 0.01 broadening in eV -4-tet -1-fermi 0-gaus
409
+
410
+ Electronic relaxation 2 (details)
411
+ IALGO = 38 algorithm
412
+ LDIAG = T sub-space diagonalisation
413
+ IMIX = 4 mixing-type and parameters
414
+ AMIX = 0.40; BMIX = 1.00
415
+ AMIX_MAG = 1.60; BMIX_MAG = 1.00
416
+ AMIN = 0.10
417
+ WC = 100.; INIMIX= 1; MIXPRE= 1
418
+
419
+ Intra band minimization:
420
+ WEIMIN = 0.0010 energy-eigenvalue tresh-hold
421
+ EBREAK = 0.42E-07 absolut break condition
422
+ DEPER = 0.30 relativ break condition
423
+
424
+ TIME = 0.10 timestep for ELM
425
+
426
+ volume/ion in A,a.u. = 10.53 71.07
427
+ Fermi-wavevector in a.u.,eV,Ry = 1.322763 23.806142 1.749702
428
+
429
+ Second variation
430
+ LSECVAR= F do a second variation
431
+
432
+ Write flags
433
+ LWAVE = T write WAVECAR
434
+ LCHARG = T write CHGCAR
435
+ LVTOT = F write LOCPOT, local potential
436
+ LELF = F write electronic localiz. function (ELF)
437
+ LORBIT = 0 0 simple, 1 ext, 2 COOP (PROOUT)
438
+
439
+
440
+ Dipole corrections
441
+ IDIPOL = 0 1-x, 2-y, 3-z
442
+ LDIPOL = F correct potential
443
+
444
+
445
+
446
+ --------------------------------------------------------------------------------------------------------
447
+
448
+
449
+ conjugate gradient relaxation of ions
450
+ charge density will be updated during run
451
+ non-spin polarized calculation
452
+ Variant of blocked Davidson
453
+ Davidson routine will perform the subspace rotation
454
+ performe sub-space diagonalisation
455
+ after iterative eigenvector-optimisation
456
+ modified Broyden-mixing scheme, WC = 100.0
457
+ initial mixing is a Kerker type mixing with AMIX = 0.4000 and BMIX = 1.0000
458
+ Hartree-type preconditioning will be used
459
+ using additional bands 10
460
+ real space projection scheme for non local part
461
+ use partial core corrections
462
+ calculate Harris-corrections to forces (improved forces if not selfconsistent
463
+ )
464
+ use gradient corrections
465
+ use of overlap-Matrix (Vanderbilt PP)
466
+ Gauss-broadening in eV SIGMA = 0.01
467
+
468
+
469
+ --------------------------------------------------------------------------------------------------------
470
+
471
+
472
+ energy-cutoff : 400.00
473
+ volume of cell : 189.57
474
+ direct lattice vectors reciprocal lattice vectors
475
+ 6.414228945 0.000000000 0.000000000 0.155903384 0.000000000 0.000000000
476
+ 0.000000000 5.336996137 -0.035023814 0.000000000 0.187381661 0.001576155
477
+ 0.000000000 -0.046583564 5.538102111 0.000000000 0.001185031 0.180577242
478
+
479
+ length of vectors
480
+ 6.414228945 5.337111057 5.538298026 0.155903384 0.187388290 0.180581130
481
+
482
+
483
+
484
+ k-points in units of 2pi/SCALE and weight: Automatic mesh
485
+ 0.01948792 0.02357084 0.02276917 0.062
486
+ 0.05846377 0.02357084 0.02276917 0.062
487
+ 0.01948792 0.07041625 0.02316321 0.062
488
+ 0.05846377 0.07041625 0.02316321 0.062
489
+ 0.01948792 -0.07011999 0.02198110 0.062
490
+ 0.05846377 -0.07011999 0.02198110 0.062
491
+ 0.01948792 -0.02327458 0.02237514 0.062
492
+ 0.05846377 -0.02327458 0.02237514 0.062
493
+ 0.01948792 0.02386709 0.06791348 0.062
494
+ 0.05846377 0.02386709 0.06791348 0.062
495
+ 0.01948792 0.07071251 0.06830752 0.062
496
+ 0.05846377 0.07071251 0.06830752 0.062
497
+ 0.01948792 -0.06982374 0.06712541 0.062
498
+ 0.05846377 -0.06982374 0.06712541 0.062
499
+ 0.01948792 -0.02297832 0.06751945 0.062
500
+ 0.05846377 -0.02297832 0.06751945 0.062
501
+
502
+ k-points in reciprocal lattice and weights: Automatic mesh
503
+ 0.12500000 0.12500000 0.12500000 0.062
504
+ 0.37500000 0.12500000 0.12500000 0.062
505
+ 0.12500000 0.37500000 0.12500000 0.062
506
+ 0.37500000 0.37500000 0.12500000 0.062
507
+ 0.12500000 -0.37500000 0.12500000 0.062
508
+ 0.37500000 -0.37500000 0.12500000 0.062
509
+ 0.12500000 -0.12500000 0.12500000 0.062
510
+ 0.37500000 -0.12500000 0.12500000 0.062
511
+ 0.12500000 0.12500000 0.37500000 0.062
512
+ 0.37500000 0.12500000 0.37500000 0.062
513
+ 0.12500000 0.37500000 0.37500000 0.062
514
+ 0.37500000 0.37500000 0.37500000 0.062
515
+ 0.12500000 -0.37500000 0.37500000 0.062
516
+ 0.37500000 -0.37500000 0.37500000 0.062
517
+ 0.12500000 -0.12500000 0.37500000 0.062
518
+ 0.37500000 -0.12500000 0.37500000 0.062
519
+
520
+ position of ions in fractional coordinates (direct lattice)
521
+ 0.24778878 0.68659633 0.48872993
522
+ 0.75221122 0.68659633 0.48872993
523
+ 0.00000000 0.15417331 0.33238218
524
+ 0.28694493 0.37013031 0.08893053
525
+ 0.71305507 0.37013031 0.08893053
526
+ 0.50000000 0.84229642 0.98366462
527
+ 0.19333046 0.32140356 0.74407510
528
+ 0.80666954 0.32140356 0.74407510
529
+ 0.00000000 0.81230767 0.99748992
530
+ 0.50000000 0.14978584 0.51030152
531
+ 0.00000000 0.15053996 0.95001095
532
+ 0.22625416 0.66071302 0.87416502
533
+ 0.77374584 0.66071302 0.87416502
534
+ 0.50000000 0.18785117 0.83886904
535
+ 0.50000000 0.84956828 0.37923940
536
+ 0.26865156 0.31314523 0.41899355
537
+ 0.73134844 0.31314523 0.41899355
538
+ 0.00000000 0.79280045 0.31745412
539
+
540
+ position of ions in cartesian coordinates (Angst):
541
+ 1.58937393 3.64159519 2.68258901
542
+ 4.82485501 3.64159519 2.68258901
543
+ 0.00000000 0.80733879 1.83536674
544
+ 1.84053046 1.97124134 0.47954299
545
+ 4.57369848 1.97124134 0.47954299
546
+ 3.20711447 4.44951013 5.41813469
547
+ 1.24006582 1.68066789 4.10950708
548
+ 5.17416312 1.68066789 4.10950708
549
+ 0.00000000 4.28881626 5.49575091
550
+ 3.20711447 0.77563479 2.82085586
551
+ 0.00000000 0.75917629 5.25598514
552
+ 1.45124601 3.48550109 4.81807447
553
+ 4.96298293 3.48550109 4.81807447
554
+ 3.20711447 0.96348345 4.63916311
555
+ 3.20711447 4.51647630 2.07051141
556
+ 1.72319260 1.65173668 2.30946152
557
+ 4.69103634 1.65173668 2.30946152
558
+ 0.00000000 4.21638480 1.73032644
559
+
560
+
561
+
562
+ --------------------------------------------------------------------------------------------------------
563
+
564
+
565
+ k-point 1 : 0.12500.12500.1250 plane waves: 3447
566
+ k-point 2 : 0.37500.12500.1250 plane waves: 3438
567
+ k-point 3 : 0.12500.37500.1250 plane waves: 3433
568
+ k-point 4 : 0.37500.37500.1250 plane waves: 3445
569
+ k-point 5 : 0.1250-.37500.1250 plane waves: 3440
570
+ k-point 6 : 0.3750-.37500.1250 plane waves: 3444
571
+ k-point 7 : 0.1250-.12500.1250 plane waves: 3450
572
+ k-point 8 : 0.3750-.12500.1250 plane waves: 3439
573
+ k-point 9 : 0.12500.12500.3750 plane waves: 3447
574
+ k-point 10 : 0.37500.12500.3750 plane waves: 3439
575
+ k-point 11 : 0.12500.37500.3750 plane waves: 3453
576
+ k-point 12 : 0.37500.37500.3750 plane waves: 3441
577
+ k-point 13 : 0.1250-.37500.3750 plane waves: 3446
578
+ k-point 14 : 0.3750-.37500.3750 plane waves: 3450
579
+ k-point 15 : 0.1250-.12500.3750 plane waves: 3450
580
+ k-point 16 : 0.3750-.12500.3750 plane waves: 3454
581
+
582
+ maximum and minimum number of plane-waves per node : 3454 3433
583
+
584
+ maximum number of plane-waves: 3454
585
+ maximal index in each direction:
586
+ IXMAX= 10 IYMAX= 9 IZMAX= 8
587
+ IXMIN=-10 IYMIN= -9 IZMIN= -9
588
+
589
+ NGX is ok and might be reduce to 42
590
+ WARNING: wrap around error must be expected set NGY to 38
591
+ NGZ is ok and might be reduce to 36
592
+
593
+ real space projection operators:
594
+ total allocation : 4780.00 KBytes
595
+ max/ min on nodes : 4780.00 4780.00
596
+
597
+
598
+ parallel 3dFFT wavefunction:
599
+ minimum data exchange during FFTs selected (reduces bandwidth)
600
+ parallel 3dFFT charge:
601
+ minimum data exchange during FFTs selected (reduces bandwidth)
602
+
603
+ For storing wavefunctions 52.91 MBYTES are necessary
604
+ For predicting wavefunctions 14.47 MBYTES are necessary
605
+ Broyden mixing: mesh for mixing (old mesh)
606
+ NGX = 21 NGY = 17 NGZ = 19
607
+ (NGX = 84 NGY = 72 NGZ = 72)
608
+ gives a total of 6783 points
609
+ initial charge density was supplied:
610
+ charge density of overlapping atoms calculated
611
+ number of electron 100.0000000 magnetization
612
+ keeping initial charge density in first step
613
+
614
+
615
+ --------------------------------------------------------------------------------------------------------
616
+
617
+
618
+ Maximum index for non-local projection operator 4025
619
+ Maximum index for augmentation-charges 74976 (set IRDMAX)
620
+
621
+
622
+ --------------------------------------------------------------------------------------------------------
623
+
624
+
625
+ First call to EWALD: gamma= 0.309
626
+ Maximum number of real-space cells 3x 3x 3
627
+ Maximum number of reciprocal cells 3x 3x 3
628
+
629
+ FEWALD: VPU time 0.01: CPU time 0.01
630
+
631
+
632
+ ----------------------------------------- Iteration 1( 1) ---------------------------------------
633
+
634
+
635
+ POTLOK: VPU time 1.54: CPU time 1.54
636
+ SETDIJ: VPU time 1.45: CPU time 1.45
637
+ EDDAV : VPU time 88.63: CPU time 88.76
638
+ DOS : VPU time 0.00: CPU time 0.00
639
+ ------------------------------------------
640
+ LOOP: VPU time 91.64: CPU time 91.78
641
+
642
+ eigenvalue-minimisations : 2880
643
+ total energy-change (2. order) : 0.1165307E+04 (-0.4346321E+04)
644
+ number of electron 100.0000000 magnetization
645
+ augmentation part 100.0000000 magnetization
646
+
647
+ Free energy of the ion-electron system (eV)
648
+ ---------------------------------------------------
649
+ alpha Z PSCENC = 351.27272245
650
+ Ewald energy TEWEN = -5368.04213528
651
+ -1/2 Hartree DENC = -3140.13380635
652
+ -V(xc)+E(xc) XCENC = 458.87572682
653
+ PAW double counting = 6023.91347704 -7102.19378297
654
+ entropy T*S EENTRO = -0.00071282
655
+ eigenvalues EBANDS = -331.65778476
656
+ atomic energy EATOM = 10273.27345462
657
+ ---------------------------------------------------
658
+ free energy TOTEN = 1165.30715875 eV
659
+
660
+ energy without entropy = 1165.30787157 energy(sigma->0) = 1165.30751516
661
+
662
+
663
+ --------------------------------------------------------------------------------------------------------
664
+
665
+
666
+
667
+
668
+ ----------------------------------------- Iteration 1( 2) ---------------------------------------
669
+
670
+
671
+ EDDAV : VPU time 70.43: CPU time 70.60
672
+ DOS : VPU time 0.00: CPU time 0.00
673
+ ------------------------------------------
674
+ LOOP: VPU time 70.45: CPU time 70.64
675
+
676
+ eigenvalue-minimisations : 2136
677
+ total energy-change (2. order) :-0.1086804E+04 (-0.1041580E+04)
678
+ number of electron 100.0000000 magnetization
679
+ augmentation part 100.0000000 magnetization
680
+
681
+ Free energy of the ion-electron system (eV)
682
+ ---------------------------------------------------
683
+ alpha Z PSCENC = 351.27272245
684
+ Ewald energy TEWEN = -5368.04213528
685
+ -1/2 Hartree DENC = -3140.13380635
686
+ -V(xc)+E(xc) XCENC = 458.87572682
687
+ PAW double counting = 6023.91347704 -7102.19378297
688
+ entropy T*S EENTRO = 0.00000000
689
+ eigenvalues EBANDS = -1418.46226591
690
+ atomic energy EATOM = 10273.27345462
691
+ ---------------------------------------------------
692
+ free energy TOTEN = 78.50339042 eV
693
+
694
+ energy without entropy = 78.50339042 energy(sigma->0) = 78.50339042
695
+
696
+
697
+ --------------------------------------------------------------------------------------------------------
698
+
699
+
700
+
701
+
702
+ ----------------------------------------- Iteration 1( 3) ---------------------------------------
703
+
704
+
705
+ EDDAV : VPU time 66.68: CPU time 66.79
706
+ DOS : VPU time 0.00: CPU time 0.00
707
+ ------------------------------------------
708
+ LOOP: VPU time 66.71: CPU time 66.83
709
+
710
+ eigenvalue-minimisations : 1996
711
+ total energy-change (2. order) :-0.1791524E+03 (-0.1777158E+03)
712
+ number of electron 100.0000000 magnetization
713
+ augmentation part 100.0000000 magnetization
714
+
715
+ Free energy of the ion-electron system (eV)
716
+ ---------------------------------------------------
717
+ alpha Z PSCENC = 351.27272245
718
+ Ewald energy TEWEN = -5368.04213528
719
+ -1/2 Hartree DENC = -3140.13380635
720
+ -V(xc)+E(xc) XCENC = 458.87572682
721
+ PAW double counting = 6023.91347704 -7102.19378297
722
+ entropy T*S EENTRO = 0.00000000
723
+ eigenvalues EBANDS = -1597.61464614
724
+ atomic energy EATOM = 10273.27345462
725
+ ---------------------------------------------------
726
+ free energy TOTEN = -100.64898982 eV
727
+
728
+ energy without entropy = -100.64898982 energy(sigma->0) = -100.64898982
729
+
730
+
731
+ --------------------------------------------------------------------------------------------------------
732
+
733
+
734
+
735
+
736
+ ----------------------------------------- Iteration 1( 4) ---------------------------------------
737
+
738
+
739
+ EDDAV : VPU time 73.41: CPU time 73.57
740
+ DOS : VPU time 0.00: CPU time 0.00
741
+ ------------------------------------------
742
+ LOOP: VPU time 73.43: CPU time 74.05
743
+
744
+ eigenvalue-minimisations : 2264
745
+ total energy-change (2. order) :-0.1264792E+02 (-0.1258497E+02)
746
+ number of electron 100.0000000 magnetization
747
+ augmentation part 100.0000000 magnetization
748
+
749
+ Free energy of the ion-electron system (eV)
750
+ ---------------------------------------------------
751
+ alpha Z PSCENC = 351.27272245
752
+ Ewald energy TEWEN = -5368.04213528
753
+ -1/2 Hartree DENC = -3140.13380635
754
+ -V(xc)+E(xc) XCENC = 458.87572682
755
+ PAW double counting = 6023.91347704 -7102.19378297
756
+ entropy T*S EENTRO = 0.00000000
757
+ eigenvalues EBANDS = -1610.26256904
758
+ atomic energy EATOM = 10273.27345462
759
+ ---------------------------------------------------
760
+ free energy TOTEN = -113.29691271 eV
761
+
762
+ energy without entropy = -113.29691271 energy(sigma->0) = -113.29691271
763
+
764
+
765
+ --------------------------------------------------------------------------------------------------------
766
+
767
+
768
+
769
+
770
+ ----------------------------------------- Iteration 1( 5) ---------------------------------------
771
+
772
+
773
+ EDDAV : VPU time 70.51: CPU time 70.67
774
+ DOS : VPU time 0.00: CPU time 0.00
775
+ CHARGE: VPU time 5.27: CPU time 5.28
776
+ MIXING: VPU time 0.08: CPU time 0.08
777
+ ------------------------------------------
778
+ LOOP: VPU time 75.88: CPU time 76.08
779
+
780
+ eigenvalue-minimisations : 2160
781
+ total energy-change (2. order) :-0.4189796E+00 (-0.4185903E+00)
782
+ number of electron 100.0000002 magnetization
783
+ augmentation part 40.1887303 magnetization
784
+
785
+ Broyden mixing:
786
+ rms(total) = 0.20870E+01 rms(broyden)= 0.20866E+01
787
+ rms(prec ) = 0.37965E+01
788
+ weight for this iteration 100.00
789
+
790
+ Free energy of the ion-electron system (eV)
791
+ ---------------------------------------------------
792
+ alpha Z PSCENC = 351.27272245
793
+ Ewald energy TEWEN = -5368.04213528
794
+ -1/2 Hartree DENC = -3140.13380635
795
+ -V(xc)+E(xc) XCENC = 458.87572682
796
+ PAW double counting = 6023.91347704 -7102.19378297
797
+ entropy T*S EENTRO = 0.00000000
798
+ eigenvalues EBANDS = -1610.68154863
799
+ atomic energy EATOM = 10273.27345462
800
+ ---------------------------------------------------
801
+ free energy TOTEN = -113.71589230 eV
802
+
803
+ energy without entropy = -113.71589230 energy(sigma->0) = -113.71589230
804
+
805
+
806
+ --------------------------------------------------------------------------------------------------------
807
+
808
+
809
+
810
+
811
+ ----------------------------------------- Iteration 1( 6) ---------------------------------------
812
+
813
+
814
+ POTLOK: VPU time 1.54: CPU time 1.54
815
+ SETDIJ: VPU time 1.45: CPU time 1.45
816
+ EDDAV : VPU time 88.91: CPU time 89.14
817
+ DOS : VPU time 0.00: CPU time 0.00
818
+ CHARGE: VPU time 5.29: CPU time 5.30
819
+ MIXING: VPU time 0.08: CPU time 0.08
820
+ ------------------------------------------
821
+ LOOP: VPU time 97.30: CPU time 97.55
822
+
823
+ eigenvalue-minimisations : 2888
824
+ total energy-change (2. order) : 0.1524421E+02 (-0.6604800E+01)
825
+ number of electron 100.0000002 magnetization
826
+ augmentation part 37.6108541 magnetization
827
+
828
+ Broyden mixing:
829
+ rms(total) = 0.62976E+00 rms(broyden)= 0.62917E+00
830
+ rms(prec ) = 0.87157E+00
831
+ weight for this iteration 100.00
832
+
833
+ eigenvalues of (default mixing * dielectric matrix)
834
+ average eigenvalue GAMMA= 0.8779
835
+ 0.8779
836
+
837
+ Free energy of the ion-electron system (eV)
838
+ ---------------------------------------------------
839
+ alpha Z PSCENC = 351.27272245
840
+ Ewald energy TEWEN = -5368.04213528
841
+ -1/2 Hartree DENC = -3241.48119209
842
+ -V(xc)+E(xc) XCENC = 467.60244438
843
+ PAW double counting = 6494.99544475 -7577.69431664
844
+ entropy T*S EENTRO = 0.00000000
845
+ eigenvalues EBANDS = -1498.39810445
846
+ atomic energy EATOM = 10273.27345462
847
+ ---------------------------------------------------
848
+ free energy TOTEN = -98.47168226 eV
849
+
850
+ energy without entropy = -98.47168226 energy(sigma->0) = -98.47168226
851
+
852
+
853
+ --------------------------------------------------------------------------------------------------------
854
+
855
+
856
+
857
+
858
+ ----------------------------------------- Iteration 1( 7) ---------------------------------------
859
+
860
+
861
+ POTLOK: VPU time 1.54: CPU time 1.54
862
+ SETDIJ: VPU time 1.45: CPU time 1.45
863
+ EDDAV : VPU time 67.72: CPU time 67.87
864
+ DOS : VPU time 0.00: CPU time 0.00
865
+ CHARGE: VPU time 5.23: CPU time 5.24
866
+ MIXING: VPU time 0.08: CPU time 0.08
867
+ ------------------------------------------
868
+ LOOP: VPU time 76.05: CPU time 76.23
869
+
870
+ eigenvalue-minimisations : 2040
871
+ total energy-change (2. order) :-0.4091185E+00 (-0.6458629E+00)
872
+ number of electron 100.0000002 magnetization
873
+ augmentation part 37.6126288 magnetization
874
+
875
+ Broyden mixing:
876
+ rms(total) = 0.45521E+00 rms(broyden)= 0.45519E+00
877
+ rms(prec ) = 0.62423E+00
878
+ weight for this iteration 100.00
879
+
880
+ eigenvalues of (default mixing * dielectric matrix)
881
+ average eigenvalue GAMMA= 1.6998
882
+ 1.0642 2.3353
883
+
884
+ Free energy of the ion-electron system (eV)
885
+ ---------------------------------------------------
886
+ alpha Z PSCENC = 351.27272245
887
+ Ewald energy TEWEN = -5368.04213528
888
+ -1/2 Hartree DENC = -3232.81464908
889
+ -V(xc)+E(xc) XCENC = 467.13534544
890
+ PAW double counting = 6675.16599154 -7764.59023466
891
+ entropy T*S EENTRO = 0.00000000
892
+ eigenvalues EBANDS = -1500.28129577
893
+ atomic energy EATOM = 10273.27345462
894
+ ---------------------------------------------------
895
+ free energy TOTEN = -98.88080075 eV
896
+
897
+ energy without entropy = -98.88080075 energy(sigma->0) = -98.88080075
898
+
899
+
900
+ --------------------------------------------------------------------------------------------------------
901
+
902
+
903
+
904
+
905
+ ----------------------------------------- Iteration 1( 8) ---------------------------------------
906
+
907
+
908
+ POTLOK: VPU time 1.54: CPU time 1.54
909
+ SETDIJ: VPU time 1.44: CPU time 1.45
910
+ EDDAV : VPU time 83.31: CPU time 83.51
911
+ DOS : VPU time 0.00: CPU time 0.00
912
+ CHARGE: VPU time 5.26: CPU time 5.27
913
+ MIXING: VPU time 0.08: CPU time 0.08
914
+ ------------------------------------------
915
+ LOOP: VPU time 91.65: CPU time 91.88
916
+
917
+ eigenvalue-minimisations : 2660
918
+ total energy-change (2. order) :-0.8101607E-01 (-0.1599523E+00)
919
+ number of electron 100.0000002 magnetization
920
+ augmentation part 37.8731202 magnetization
921
+
922
+ Broyden mixing:
923
+ rms(total) = 0.20561E+00 rms(broyden)= 0.20557E+00
924
+ rms(prec ) = 0.33749E+00
925
+ weight for this iteration 100.00
926
+
927
+ eigenvalues of (default mixing * dielectric matrix)
928
+ average eigenvalue GAMMA= 1.4669
929
+ 2.5390 0.9308 0.9308
930
+
931
+ Free energy of the ion-electron system (eV)
932
+ ---------------------------------------------------
933
+ alpha Z PSCENC = 351.27272245
934
+ Ewald energy TEWEN = -5368.04213528
935
+ -1/2 Hartree DENC = -3220.78533281
936
+ -V(xc)+E(xc) XCENC = 466.27173059
937
+ PAW double counting = 6966.60968071 -8068.18346311
938
+ entropy T*S EENTRO = 0.00000000
939
+ eigenvalues EBANDS = -1499.37847398
940
+ atomic energy EATOM = 10273.27345462
941
+ ---------------------------------------------------
942
+ free energy TOTEN = -98.96181682 eV
943
+
944
+ energy without entropy = -98.96181682 energy(sigma->0) = -98.96181682
945
+
946
+
947
+ --------------------------------------------------------------------------------------------------------
948
+
949
+
950
+
951
+
952
+ ----------------------------------------- Iteration 1( 9) ---------------------------------------
953
+
954
+
955
+ POTLOK: VPU time 1.54: CPU time 1.54
956
+ SETDIJ: VPU time 1.44: CPU time 1.45
957
+ EDDAV : VPU time 86.95: CPU time 87.15
958
+ DOS : VPU time 0.00: CPU time 0.00
959
+ CHARGE: VPU time 5.29: CPU time 5.30
960
+ MIXING: VPU time 0.08: CPU time 0.08
961
+ ------------------------------------------
962
+ LOOP: VPU time 95.33: CPU time 95.57
963
+
964
+ eigenvalue-minimisations : 2816
965
+ total energy-change (2. order) : 0.9741770E-01 (-0.4834711E-01)
966
+ number of electron 100.0000002 magnetization
967
+ augmentation part 37.6858248 magnetization
968
+
969
+ Broyden mixing:
970
+ rms(total) = 0.35536E-01 rms(broyden)= 0.35484E-01
971
+ rms(prec ) = 0.55653E-01
972
+ weight for this iteration 100.00
973
+
974
+ eigenvalues of (default mixing * dielectric matrix)
975
+ average eigenvalue GAMMA= 1.4555
976
+ 2.3384 1.5951 0.9443 0.9443
977
+
978
+ Free energy of the ion-electron system (eV)
979
+ ---------------------------------------------------
980
+ alpha Z PSCENC = 351.27272245
981
+ Ewald energy TEWEN = -5368.04213528
982
+ -1/2 Hartree DENC = -3230.11919954
983
+ -V(xc)+E(xc) XCENC = 466.97288634
984
+ PAW double counting = 6991.61371697 -8092.10605925
985
+ entropy T*S EENTRO = 0.00000000
986
+ eigenvalues EBANDS = -1491.72978542
987
+ atomic energy EATOM = 10273.27345462
988
+ ---------------------------------------------------
989
+ free energy TOTEN = -98.86439912 eV
990
+
991
+ energy without entropy = -98.86439912 energy(sigma->0) = -98.86439912
992
+
993
+
994
+ --------------------------------------------------------------------------------------------------------
995
+
996
+
997
+
998
+
999
+ ----------------------------------------- Iteration 1( 10) ---------------------------------------
1000
+
1001
+
1002
+ POTLOK: VPU time 1.54: CPU time 1.54
1003
+ SETDIJ: VPU time 1.44: CPU time 1.45
1004
+ EDDAV : VPU time 83.18: CPU time 83.37
1005
+ DOS : VPU time 0.00: CPU time 0.00
1006
+ CHARGE: VPU time 5.38: CPU time 5.40
1007
+ MIXING: VPU time 0.08: CPU time 0.08
1008
+ ------------------------------------------
1009
+ LOOP: VPU time 91.65: CPU time 91.88
1010
+
1011
+ eigenvalue-minimisations : 2656
1012
+ total energy-change (2. order) :-0.4678466E-02 (-0.5868443E-02)
1013
+ number of electron 100.0000002 magnetization
1014
+ augmentation part 37.6500102 magnetization
1015
+
1016
+ Broyden mixing:
1017
+ rms(total) = 0.33357E-01 rms(broyden)= 0.33350E-01
1018
+ rms(prec ) = 0.50062E-01
1019
+ weight for this iteration 100.00
1020
+
1021
+ eigenvalues of (default mixing * dielectric matrix)
1022
+ average eigenvalue GAMMA= 1.5027
1023
+ 2.3681 2.3681 0.9271 0.9271 0.9232
1024
+
1025
+ Free energy of the ion-electron system (eV)
1026
+ ---------------------------------------------------
1027
+ alpha Z PSCENC = 351.27272245
1028
+ Ewald energy TEWEN = -5368.04213528
1029
+ -1/2 Hartree DENC = -3232.95881396
1030
+ -V(xc)+E(xc) XCENC = 467.10026130
1031
+ PAW double counting = 6980.54797159 -8079.88564107
1032
+ entropy T*S EENTRO = 0.00000000
1033
+ eigenvalues EBANDS = -1490.17689722
1034
+ atomic energy EATOM = 10273.27345462
1035
+ ---------------------------------------------------
1036
+ free energy TOTEN = -98.86907758 eV
1037
+
1038
+ energy without entropy = -98.86907758 energy(sigma->0) = -98.86907758
1039
+
1040
+
1041
+ --------------------------------------------------------------------------------------------------------
1042
+
1043
+
1044
+
1045
+
1046
+ ----------------------------------------- Iteration 1( 11) ---------------------------------------
1047
+
1048
+
1049
+ POTLOK: VPU time 1.53: CPU time 1.54
1050
+ SETDIJ: VPU time 1.44: CPU time 1.45
1051
+ EDDAV : VPU time 79.74: CPU time 79.94
1052
+ DOS : VPU time 0.00: CPU time 0.00
1053
+ CHARGE: VPU time 5.37: CPU time 5.37
1054
+ MIXING: VPU time 0.08: CPU time 0.08
1055
+ ------------------------------------------
1056
+ LOOP: VPU time 88.20: CPU time 88.42
1057
+
1058
+ eigenvalue-minimisations : 2520
1059
+ total energy-change (2. order) :-0.9455226E-03 (-0.7169080E-03)
1060
+ number of electron 100.0000002 magnetization
1061
+ augmentation part 37.6692586 magnetization
1062
+
1063
+ Broyden mixing:
1064
+ rms(total) = 0.80447E-02 rms(broyden)= 0.80421E-02
1065
+ rms(prec ) = 0.12720E-01
1066
+ weight for this iteration 100.00
1067
+
1068
+ eigenvalues of (default mixing * dielectric matrix)
1069
+ average eigenvalue GAMMA= 1.4982
1070
+ 2.7185 2.2480 1.0379 1.0379 0.9733 0.9733
1071
+
1072
+ Free energy of the ion-electron system (eV)
1073
+ ---------------------------------------------------
1074
+ alpha Z PSCENC = 351.27272245
1075
+ Ewald energy TEWEN = -5368.04213528
1076
+ -1/2 Hartree DENC = -3232.98328507
1077
+ -V(xc)+E(xc) XCENC = 467.06040908
1078
+ PAW double counting = 6983.94795658 -8083.42813512
1079
+ entropy T*S EENTRO = 0.00000000
1080
+ eigenvalues EBANDS = -1489.97101037
1081
+ atomic energy EATOM = 10273.27345462
1082
+ ---------------------------------------------------
1083
+ free energy TOTEN = -98.87002311 eV
1084
+
1085
+ energy without entropy = -98.87002311 energy(sigma->0) = -98.87002311
1086
+
1087
+
1088
+ --------------------------------------------------------------------------------------------------------
1089
+
1090
+
1091
+
1092
+
1093
+ ----------------------------------------- Iteration 1( 12) ---------------------------------------
1094
+
1095
+
1096
+ POTLOK: VPU time 1.53: CPU time 1.54
1097
+ SETDIJ: VPU time 1.45: CPU time 1.45
1098
+ EDDAV : VPU time 83.77: CPU time 83.99
1099
+ DOS : VPU time 0.00: CPU time 0.00
1100
+ CHARGE: VPU time 5.43: CPU time 5.44
1101
+ MIXING: VPU time 0.08: CPU time 0.09
1102
+ ------------------------------------------
1103
+ LOOP: VPU time 92.29: CPU time 92.55
1104
+
1105
+ eigenvalue-minimisations : 2680
1106
+ total energy-change (2. order) :-0.3164268E-03 (-0.7988630E-04)
1107
+ number of electron 100.0000002 magnetization
1108
+ augmentation part 37.6736491 magnetization
1109
+
1110
+ Broyden mixing:
1111
+ rms(total) = 0.24280E-02 rms(broyden)= 0.24271E-02
1112
+ rms(prec ) = 0.39893E-02
1113
+ weight for this iteration 100.00
1114
+
1115
+ eigenvalues of (default mixing * dielectric matrix)
1116
+ average eigenvalue GAMMA= 1.5812
1117
+ 3.0484 2.1080 2.1080 0.9547 0.9547 0.9474 0.9474
1118
+
1119
+ Free energy of the ion-electron system (eV)
1120
+ ---------------------------------------------------
1121
+ alpha Z PSCENC = 351.27272245
1122
+ Ewald energy TEWEN = -5368.04213528
1123
+ -1/2 Hartree DENC = -3233.15371782
1124
+ -V(xc)+E(xc) XCENC = 467.06194083
1125
+ PAW double counting = 6983.48023051 -8082.99535215
1126
+ entropy T*S EENTRO = 0.00000000
1127
+ eigenvalues EBANDS = -1489.76748269
1128
+ atomic energy EATOM = 10273.27345462
1129
+ ---------------------------------------------------
1130
+ free energy TOTEN = -98.87033953 eV
1131
+
1132
+ energy without entropy = -98.87033953 energy(sigma->0) = -98.87033953
1133
+
1134
+
1135
+ --------------------------------------------------------------------------------------------------------
1136
+
1137
+
1138
+
1139
+
1140
+ ----------------------------------------- Iteration 1( 13) ---------------------------------------
1141
+
1142
+
1143
+ POTLOK: VPU time 1.54: CPU time 1.54
1144
+ SETDIJ: VPU time 1.45: CPU time 1.45
1145
+ EDDAV : VPU time 67.52: CPU time 67.61
1146
+ DOS : VPU time 0.00: CPU time 0.00
1147
+ CHARGE: VPU time 5.43: CPU time 5.44
1148
+ MIXING: VPU time 0.09: CPU time 0.09
1149
+ ------------------------------------------
1150
+ LOOP: VPU time 76.05: CPU time 76.17
1151
+
1152
+ eigenvalue-minimisations : 2048
1153
+ total energy-change (2. order) :-0.6517227E-04 (-0.1234359E-04)
1154
+ number of electron 100.0000002 magnetization
1155
+ augmentation part 37.6741141 magnetization
1156
+
1157
+ Broyden mixing:
1158
+ rms(total) = 0.76117E-03 rms(broyden)= 0.76079E-03
1159
+ rms(prec ) = 0.11002E-02
1160
+ weight for this iteration 100.00
1161
+
1162
+ eigenvalues of (default mixing * dielectric matrix)
1163
+ average eigenvalue GAMMA= 1.5427
1164
+ 3.1309 2.4169 1.9288 0.9800 0.9828 0.9828 0.9597 0.9597
1165
+
1166
+ Free energy of the ion-electron system (eV)
1167
+ ---------------------------------------------------
1168
+ alpha Z PSCENC = 351.27272245
1169
+ Ewald energy TEWEN = -5368.04213528
1170
+ -1/2 Hartree DENC = -3233.31712080
1171
+ -V(xc)+E(xc) XCENC = 467.06946188
1172
+ PAW double counting = 6982.27134510 -8081.79227124
1173
+ entropy T*S EENTRO = 0.00000000
1174
+ eigenvalues EBANDS = -1489.60586143
1175
+ atomic energy EATOM = 10273.27345462
1176
+ ---------------------------------------------------
1177
+ free energy TOTEN = -98.87040471 eV
1178
+
1179
+ energy without entropy = -98.87040471 energy(sigma->0) = -98.87040471
1180
+
1181
+
1182
+ --------------------------------------------------------------------------------------------------------
1183
+
1184
+
1185
+
1186
+
1187
+ ----------------------------------------- Iteration 1( 14) ---------------------------------------
1188
+
1189
+
1190
+ POTLOK: VPU time 1.53: CPU time 1.54
1191
+ SETDIJ: VPU time 1.46: CPU time 1.45
1192
+ EDDAV : VPU time 53.80: CPU time 53.94
1193
+ DOS : VPU time 0.00: CPU time 0.00
1194
+ ------------------------------------------
1195
+ LOOP: VPU time 56.81: CPU time 56.98
1196
+
1197
+ eigenvalue-minimisations : 1480
1198
+ total energy-change (2. order) :-0.2432550E-05 (-0.1222324E-05)
1199
+ number of electron 100.0000002 magnetization
1200
+ augmentation part 37.6741141 magnetization
1201
+
1202
+ Free energy of the ion-electron system (eV)
1203
+ ---------------------------------------------------
1204
+ alpha Z PSCENC = 351.27272245
1205
+ Ewald energy TEWEN = -5368.04213528
1206
+ -1/2 Hartree DENC = -3233.34907540
1207
+ -V(xc)+E(xc) XCENC = 467.07019417
1208
+ PAW double counting = 6981.79995958 -8081.30235308
1209
+ entropy T*S EENTRO = 0.00000000
1210
+ eigenvalues EBANDS = -1489.59317419
1211
+ atomic energy EATOM = 10273.27345462
1212
+ ---------------------------------------------------
1213
+ free energy TOTEN = -98.87040714 eV
1214
+
1215
+ energy without entropy = -98.87040714 energy(sigma->0) = -98.87040714
1216
+
1217
+
1218
+ --------------------------------------------------------------------------------------------------------
1219
+
1220
+
1221
+
1222
+
1223
+ average (electrostatic) potential at core
1224
+ the test charge radii are 0.8577 0.9911 0.8742
1225
+ (the norm of the test charge is 1.0000)
1226
+ 1 -16.5975 2 -16.5975 3 -17.0397 4 -17.8542 5 -17.8542
1227
+ 6 -17.0666 7 -17.4498 8 -17.4498 9 -32.7267 10 -32.9957
1228
+ 11 -83.0794 12 -82.8675 13 -82.8675 14 -82.9918 15 -82.7345
1229
+ 16 -83.2066 17 -83.2066 18 -82.4446
1230
+
1231
+
1232
+
1233
+ E-fermi : 0.0482 XC(G=0): -9.5748 alpha+bet :-11.0646
1234
+ add alpha+bet to get absolut eigen values
1235
+
1236
+ k-point 1 : 0.1250 0.1250 0.1250
1237
+ band No. band energies occupation
1238
+ 1 -43.3747 2.00000
1239
+ 2 -43.3629 2.00000
1240
+ 3 -42.9335 2.00000
1241
+ 4 -42.9047 2.00000
1242
+ 5 -42.5894 2.00000
1243
+ 6 -42.5342 2.00000
1244
+ 7 -42.0993 2.00000
1245
+ 8 -42.0939 2.00000
1246
+ 9 -22.9763 2.00000
1247
+ 10 -22.9612 2.00000
1248
+ 11 -22.9247 2.00000
1249
+ 12 -22.7687 2.00000
1250
+ 13 -22.7246 2.00000
1251
+ 14 -22.6948 2.00000
1252
+ 15 -22.6820 2.00000
1253
+ 16 -22.6653 2.00000
1254
+ 17 -22.4804 2.00000
1255
+ 18 -22.4706 2.00000
1256
+ 19 -17.3688 2.00000
1257
+ 20 -17.0322 2.00000
1258
+ 21 -16.1662 2.00000
1259
+ 22 -15.8629 2.00000
1260
+ 23 -15.8398 2.00000
1261
+ 24 -15.6978 2.00000
1262
+ 25 -15.6634 2.00000
1263
+ 26 -15.3811 2.00000
1264
+ 27 -6.0649 2.00000
1265
+ 28 -5.7709 2.00000
1266
+ 29 -3.6294 2.00000
1267
+ 30 -3.5749 2.00000
1268
+ 31 -3.3510 2.00000
1269
+ 32 -3.2258 2.00000
1270
+ 33 -2.9571 2.00000
1271
+ 34 -2.8943 2.00000
1272
+ 35 -1.9063 2.00000
1273
+ 36 -1.7698 2.00000
1274
+ 37 -1.5499 2.00000
1275
+ 38 -1.5096 2.00000
1276
+ 39 -1.3504 2.00000
1277
+ 40 -1.2353 2.00000
1278
+ 41 -1.1011 2.00000
1279
+ 42 -0.9786 2.00000
1280
+ 43 -0.8027 2.00000
1281
+ 44 -0.7374 2.00000
1282
+ 45 -0.5777 2.00000
1283
+ 46 -0.5201 2.00000
1284
+ 47 -0.3502 2.00000
1285
+ 48 -0.3248 2.00000
1286
+ 49 -0.1919 2.00000
1287
+ 50 -0.0181 2.00000
1288
+ 51 4.1554 0.00000
1289
+ 52 5.7994 0.00000
1290
+ 53 7.0287 0.00000
1291
+ 54 7.4780 0.00000
1292
+ 55 7.8091 0.00000
1293
+ 56 8.1544 0.00000
1294
+ 57 8.3318 0.00000
1295
+ 58 8.5324 0.00000
1296
+ 59 9.0518 0.00000
1297
+ 60 9.3637 0.00000
1298
+
1299
+ k-point 2 : 0.3750 0.1250 0.1250
1300
+ band No. band energies occupation
1301
+ 1 -43.3734 2.00000
1302
+ 2 -43.3642 2.00000
1303
+ 3 -42.9331 2.00000
1304
+ 4 -42.9051 2.00000
1305
+ 5 -42.5894 2.00000
1306
+ 6 -42.5342 2.00000
1307
+ 7 -42.0977 2.00000
1308
+ 8 -42.0954 2.00000
1309
+ 9 -22.9762 2.00000
1310
+ 10 -22.9611 2.00000
1311
+ 11 -22.9247 2.00000
1312
+ 12 -22.7687 2.00000
1313
+ 13 -22.7246 2.00000
1314
+ 14 -22.6948 2.00000
1315
+ 15 -22.6820 2.00000
1316
+ 16 -22.6653 2.00000
1317
+ 17 -22.4804 2.00000
1318
+ 18 -22.4705 2.00000
1319
+ 19 -17.3548 2.00000
1320
+ 20 -17.0424 2.00000
1321
+ 21 -16.1762 2.00000
1322
+ 22 -15.8642 2.00000
1323
+ 23 -15.8445 2.00000
1324
+ 24 -15.7125 2.00000
1325
+ 25 -15.6387 2.00000
1326
+ 26 -15.3838 2.00000
1327
+ 27 -5.9969 2.00000
1328
+ 28 -5.7216 2.00000
1329
+ 29 -3.7415 2.00000
1330
+ 30 -3.6029 2.00000
1331
+ 31 -3.3389 2.00000
1332
+ 32 -3.1038 2.00000
1333
+ 33 -2.9929 2.00000
1334
+ 34 -2.8613 2.00000
1335
+ 35 -1.8995 2.00000
1336
+ 36 -1.6518 2.00000
1337
+ 37 -1.5799 2.00000
1338
+ 38 -1.4688 2.00000
1339
+ 39 -1.4062 2.00000
1340
+ 40 -1.2555 2.00000
1341
+ 41 -1.1192 2.00000
1342
+ 42 -0.9957 2.00000
1343
+ 43 -0.8551 2.00000
1344
+ 44 -0.7366 2.00000
1345
+ 45 -0.6743 2.00000
1346
+ 46 -0.5522 2.00000
1347
+ 47 -0.4014 2.00000
1348
+ 48 -0.3655 2.00000
1349
+ 49 -0.2642 2.00000
1350
+ 50 -0.1361 2.00000
1351
+ 51 4.7206 0.00000
1352
+ 52 5.4408 0.00000
1353
+ 53 7.3686 0.00000
1354
+ 54 7.6273 0.00000
1355
+ 55 7.8740 0.00000
1356
+ 56 8.1626 0.00000
1357
+ 57 8.4333 0.00000
1358
+ 58 8.5816 0.00000
1359
+ 59 8.9048 0.00000
1360
+ 60 9.5263 0.00000
1361
+
1362
+ k-point 3 : 0.1250 0.3750 0.1250
1363
+ band No. band energies occupation
1364
+ 1 -43.3746 2.00000
1365
+ 2 -43.3629 2.00000
1366
+ 3 -42.9335 2.00000
1367
+ 4 -42.9047 2.00000
1368
+ 5 -42.5894 2.00000
1369
+ 6 -42.5342 2.00000
1370
+ 7 -42.0993 2.00000
1371
+ 8 -42.0939 2.00000
1372
+ 9 -22.9761 2.00000
1373
+ 10 -22.9612 2.00000
1374
+ 11 -22.9244 2.00000
1375
+ 12 -22.7686 2.00000
1376
+ 13 -22.7246 2.00000
1377
+ 14 -22.6943 2.00000
1378
+ 15 -22.6820 2.00000
1379
+ 16 -22.6649 2.00000
1380
+ 17 -22.4804 2.00000
1381
+ 18 -22.4705 2.00000
1382
+ 19 -17.3351 2.00000
1383
+ 20 -16.9943 2.00000
1384
+ 21 -16.1673 2.00000
1385
+ 22 -15.9487 2.00000
1386
+ 23 -15.8294 2.00000
1387
+ 24 -15.7350 2.00000
1388
+ 25 -15.6683 2.00000
1389
+ 26 -15.3787 2.00000
1390
+ 27 -6.0444 2.00000
1391
+ 28 -5.8337 2.00000
1392
+ 29 -3.5866 2.00000
1393
+ 30 -3.4772 2.00000
1394
+ 31 -3.2072 2.00000
1395
+ 32 -3.0394 2.00000
1396
+ 33 -2.8896 2.00000
1397
+ 34 -2.6791 2.00000
1398
+ 35 -1.9859 2.00000
1399
+ 36 -1.7820 2.00000
1400
+ 37 -1.6649 2.00000
1401
+ 38 -1.5758 2.00000
1402
+ 39 -1.4828 2.00000
1403
+ 40 -1.2493 2.00000
1404
+ 41 -1.1783 2.00000
1405
+ 42 -0.9963 2.00000
1406
+ 43 -0.8385 2.00000
1407
+ 44 -0.7043 2.00000
1408
+ 45 -0.6197 2.00000
1409
+ 46 -0.5017 2.00000
1410
+ 47 -0.4203 2.00000
1411
+ 48 -0.3017 2.00000
1412
+ 49 -0.2466 2.00000
1413
+ 50 -0.0635 2.00000
1414
+ 51 4.8864 0.00000
1415
+ 52 5.5955 0.00000
1416
+ 53 6.8504 0.00000
1417
+ 54 7.2861 0.00000
1418
+ 55 7.5615 0.00000
1419
+ 56 7.7478 0.00000
1420
+ 57 8.2374 0.00000
1421
+ 58 8.4337 0.00000
1422
+ 59 8.7307 0.00000
1423
+ 60 9.0818 0.00000
1424
+
1425
+ k-point 4 : 0.3750 0.3750 0.1250
1426
+ band No. band energies occupation
1427
+ 1 -43.3734 2.00000
1428
+ 2 -43.3642 2.00000
1429
+ 3 -42.9331 2.00000
1430
+ 4 -42.9052 2.00000
1431
+ 5 -42.5894 2.00000
1432
+ 6 -42.5342 2.00000
1433
+ 7 -42.0977 2.00000
1434
+ 8 -42.0955 2.00000
1435
+ 9 -22.9762 2.00000
1436
+ 10 -22.9612 2.00000
1437
+ 11 -22.9244 2.00000
1438
+ 12 -22.7686 2.00000
1439
+ 13 -22.7246 2.00000
1440
+ 14 -22.6943 2.00000
1441
+ 15 -22.6820 2.00000
1442
+ 16 -22.6649 2.00000
1443
+ 17 -22.4804 2.00000
1444
+ 18 -22.4705 2.00000
1445
+ 19 -17.3296 2.00000
1446
+ 20 -16.9915 2.00000
1447
+ 21 -16.1801 2.00000
1448
+ 22 -15.9312 2.00000
1449
+ 23 -15.8388 2.00000
1450
+ 24 -15.7646 2.00000
1451
+ 25 -15.6479 2.00000
1452
+ 26 -15.3797 2.00000
1453
+ 27 -5.9790 2.00000
1454
+ 28 -5.7693 2.00000
1455
+ 29 -3.5677 2.00000
1456
+ 30 -3.5369 2.00000
1457
+ 31 -3.1782 2.00000
1458
+ 32 -2.9705 2.00000
1459
+ 33 -2.8780 2.00000
1460
+ 34 -2.7166 2.00000
1461
+ 35 -1.9845 2.00000
1462
+ 36 -1.8843 2.00000
1463
+ 37 -1.6873 2.00000
1464
+ 38 -1.5406 2.00000
1465
+ 39 -1.4440 2.00000
1466
+ 40 -1.3639 2.00000
1467
+ 41 -1.2219 2.00000
1468
+ 42 -1.0095 2.00000
1469
+ 43 -0.8802 2.00000
1470
+ 44 -0.7688 2.00000
1471
+ 45 -0.6715 2.00000
1472
+ 46 -0.4831 2.00000
1473
+ 47 -0.3983 2.00000
1474
+ 48 -0.3702 2.00000
1475
+ 49 -0.2258 2.00000
1476
+ 50 -0.1257 2.00000
1477
+ 51 5.2354 0.00000
1478
+ 52 5.6052 0.00000
1479
+ 53 7.0064 0.00000
1480
+ 54 7.3417 0.00000
1481
+ 55 7.6058 0.00000
1482
+ 56 7.9772 0.00000
1483
+ 57 8.2340 0.00000
1484
+ 58 8.4354 0.00000
1485
+ 59 8.8578 0.00000
1486
+ 60 9.1697 0.00000
1487
+
1488
+ k-point 5 : 0.1250 -0.3750 0.1250
1489
+ band No. band energies occupation
1490
+ 1 -43.3746 2.00000
1491
+ 2 -43.3629 2.00000
1492
+ 3 -42.9335 2.00000
1493
+ 4 -42.9047 2.00000
1494
+ 5 -42.5894 2.00000
1495
+ 6 -42.5342 2.00000
1496
+ 7 -42.0993 2.00000
1497
+ 8 -42.0939 2.00000
1498
+ 9 -22.9762 2.00000
1499
+ 10 -22.9613 2.00000
1500
+ 11 -22.9244 2.00000
1501
+ 12 -22.7686 2.00000
1502
+ 13 -22.7246 2.00000
1503
+ 14 -22.6943 2.00000
1504
+ 15 -22.6820 2.00000
1505
+ 16 -22.6649 2.00000
1506
+ 17 -22.4804 2.00000
1507
+ 18 -22.4705 2.00000
1508
+ 19 -17.3376 2.00000
1509
+ 20 -16.9908 2.00000
1510
+ 21 -16.1670 2.00000
1511
+ 22 -15.9526 2.00000
1512
+ 23 -15.8262 2.00000
1513
+ 24 -15.7323 2.00000
1514
+ 25 -15.6704 2.00000
1515
+ 26 -15.3801 2.00000
1516
+ 27 -6.0494 2.00000
1517
+ 28 -5.8261 2.00000
1518
+ 29 -3.6008 2.00000
1519
+ 30 -3.5009 2.00000
1520
+ 31 -3.2182 2.00000
1521
+ 32 -3.0271 2.00000
1522
+ 33 -2.8863 2.00000
1523
+ 34 -2.6681 2.00000
1524
+ 35 -1.9470 2.00000
1525
+ 36 -1.8116 2.00000
1526
+ 37 -1.6771 2.00000
1527
+ 38 -1.5537 2.00000
1528
+ 39 -1.4391 2.00000
1529
+ 40 -1.3085 2.00000
1530
+ 41 -1.1233 2.00000
1531
+ 42 -0.9787 2.00000
1532
+ 43 -0.8117 2.00000
1533
+ 44 -0.6960 2.00000
1534
+ 45 -0.6108 2.00000
1535
+ 46 -0.5181 2.00000
1536
+ 47 -0.4721 2.00000
1537
+ 48 -0.3572 2.00000
1538
+ 49 -0.2280 2.00000
1539
+ 50 -0.0504 2.00000
1540
+ 51 4.8085 0.00000
1541
+ 52 5.6251 0.00000
1542
+ 53 6.7557 0.00000
1543
+ 54 7.5000 0.00000
1544
+ 55 7.6269 0.00000
1545
+ 56 7.7363 0.00000
1546
+ 57 8.1603 0.00000
1547
+ 58 8.4774 0.00000
1548
+ 59 8.5951 0.00000
1549
+ 60 9.2244 0.00000
1550
+
1551
+ k-point 6 : 0.3750 -0.3750 0.1250
1552
+ band No. band energies occupation
1553
+ 1 -43.3734 2.00000
1554
+ 2 -43.3642 2.00000
1555
+ 3 -42.9331 2.00000
1556
+ 4 -42.9051 2.00000
1557
+ 5 -42.5894 2.00000
1558
+ 6 -42.5342 2.00000
1559
+ 7 -42.0977 2.00000
1560
+ 8 -42.0955 2.00000
1561
+ 9 -22.9762 2.00000
1562
+ 10 -22.9613 2.00000
1563
+ 11 -22.9244 2.00000
1564
+ 12 -22.7686 2.00000
1565
+ 13 -22.7246 2.00000
1566
+ 14 -22.6943 2.00000
1567
+ 15 -22.6820 2.00000
1568
+ 16 -22.6649 2.00000
1569
+ 17 -22.4804 2.00000
1570
+ 18 -22.4705 2.00000
1571
+ 19 -17.3306 2.00000
1572
+ 20 -16.9914 2.00000
1573
+ 21 -16.1764 2.00000
1574
+ 22 -15.9348 2.00000
1575
+ 23 -15.8343 2.00000
1576
+ 24 -15.7598 2.00000
1577
+ 25 -15.6560 2.00000
1578
+ 26 -15.3802 2.00000
1579
+ 27 -5.9818 2.00000
1580
+ 28 -5.7663 2.00000
1581
+ 29 -3.5594 2.00000
1582
+ 30 -3.5398 2.00000
1583
+ 31 -3.1951 2.00000
1584
+ 32 -2.9537 2.00000
1585
+ 33 -2.8961 2.00000
1586
+ 34 -2.7390 2.00000
1587
+ 35 -2.0019 2.00000
1588
+ 36 -1.8574 2.00000
1589
+ 37 -1.7092 2.00000
1590
+ 38 -1.5490 2.00000
1591
+ 39 -1.4254 2.00000
1592
+ 40 -1.3238 2.00000
1593
+ 41 -1.1461 2.00000
1594
+ 42 -1.0405 2.00000
1595
+ 43 -0.8267 2.00000
1596
+ 44 -0.7425 2.00000
1597
+ 45 -0.6599 2.00000
1598
+ 46 -0.5457 2.00000
1599
+ 47 -0.4715 2.00000
1600
+ 48 -0.3420 2.00000
1601
+ 49 -0.2315 2.00000
1602
+ 50 -0.1449 2.00000
1603
+ 51 5.1696 0.00000
1604
+ 52 5.5937 0.00000
1605
+ 53 6.9301 0.00000
1606
+ 54 7.4759 0.00000
1607
+ 55 7.8138 0.00000
1608
+ 56 7.9606 0.00000
1609
+ 57 8.1275 0.00000
1610
+ 58 8.6464 0.00000
1611
+ 59 8.7139 0.00000
1612
+ 60 9.0590 0.00000
1613
+
1614
+ k-point 7 : 0.1250 -0.1250 0.1250
1615
+ band No. band energies occupation
1616
+ 1 -43.3747 2.00000
1617
+ 2 -43.3629 2.00000
1618
+ 3 -42.9335 2.00000
1619
+ 4 -42.9048 2.00000
1620
+ 5 -42.5894 2.00000
1621
+ 6 -42.5342 2.00000
1622
+ 7 -42.0993 2.00000
1623
+ 8 -42.0939 2.00000
1624
+ 9 -22.9762 2.00000
1625
+ 10 -22.9612 2.00000
1626
+ 11 -22.9247 2.00000
1627
+ 12 -22.7687 2.00000
1628
+ 13 -22.7246 2.00000
1629
+ 14 -22.6948 2.00000
1630
+ 15 -22.6820 2.00000
1631
+ 16 -22.6653 2.00000
1632
+ 17 -22.4804 2.00000
1633
+ 18 -22.4706 2.00000
1634
+ 19 -17.3710 2.00000
1635
+ 20 -17.0292 2.00000
1636
+ 21 -16.1661 2.00000
1637
+ 22 -15.8746 2.00000
1638
+ 23 -15.8267 2.00000
1639
+ 24 -15.6947 2.00000
1640
+ 25 -15.6674 2.00000
1641
+ 26 -15.3824 2.00000
1642
+ 27 -6.0682 2.00000
1643
+ 28 -5.7651 2.00000
1644
+ 29 -3.6888 2.00000
1645
+ 30 -3.5039 2.00000
1646
+ 31 -3.3655 2.00000
1647
+ 32 -3.2793 2.00000
1648
+ 33 -2.9552 2.00000
1649
+ 34 -2.8690 2.00000
1650
+ 35 -1.8150 2.00000
1651
+ 36 -1.7615 2.00000
1652
+ 37 -1.6390 2.00000
1653
+ 38 -1.5034 2.00000
1654
+ 39 -1.3396 2.00000
1655
+ 40 -1.2267 2.00000
1656
+ 41 -1.0748 2.00000
1657
+ 42 -0.9906 2.00000
1658
+ 43 -0.7732 2.00000
1659
+ 44 -0.6715 2.00000
1660
+ 45 -0.5845 2.00000
1661
+ 46 -0.5208 2.00000
1662
+ 47 -0.4688 2.00000
1663
+ 48 -0.3405 2.00000
1664
+ 49 -0.1589 2.00000
1665
+ 50 -0.0180 2.00000
1666
+ 51 4.1232 0.00000
1667
+ 52 5.7421 0.00000
1668
+ 53 7.0883 0.00000
1669
+ 54 7.5353 0.00000
1670
+ 55 7.8413 0.00000
1671
+ 56 8.1905 0.00000
1672
+ 57 8.2728 0.00000
1673
+ 58 8.4993 0.00000
1674
+ 59 9.0457 0.00000
1675
+ 60 9.5128 0.00000
1676
+
1677
+ k-point 8 : 0.3750 -0.1250 0.1250
1678
+ band No. band energies occupation
1679
+ 1 -43.3734 2.00000
1680
+ 2 -43.3642 2.00000
1681
+ 3 -42.9331 2.00000
1682
+ 4 -42.9051 2.00000
1683
+ 5 -42.5894 2.00000
1684
+ 6 -42.5342 2.00000
1685
+ 7 -42.0977 2.00000
1686
+ 8 -42.0954 2.00000
1687
+ 9 -22.9762 2.00000
1688
+ 10 -22.9612 2.00000
1689
+ 11 -22.9247 2.00000
1690
+ 12 -22.7687 2.00000
1691
+ 13 -22.7246 2.00000
1692
+ 14 -22.6948 2.00000
1693
+ 15 -22.6820 2.00000
1694
+ 16 -22.6653 2.00000
1695
+ 17 -22.4804 2.00000
1696
+ 18 -22.4706 2.00000
1697
+ 19 -17.3557 2.00000
1698
+ 20 -17.0423 2.00000
1699
+ 21 -16.1737 2.00000
1700
+ 22 -15.8649 2.00000
1701
+ 23 -15.8425 2.00000
1702
+ 24 -15.7036 2.00000
1703
+ 25 -15.6502 2.00000
1704
+ 26 -15.3843 2.00000
1705
+ 27 -5.9995 2.00000
1706
+ 28 -5.7191 2.00000
1707
+ 29 -3.7259 2.00000
1708
+ 30 -3.5925 2.00000
1709
+ 31 -3.3741 2.00000
1710
+ 32 -3.1234 2.00000
1711
+ 33 -3.0108 2.00000
1712
+ 34 -2.8361 2.00000
1713
+ 35 -1.9079 2.00000
1714
+ 36 -1.6541 2.00000
1715
+ 37 -1.5988 2.00000
1716
+ 38 -1.4869 2.00000
1717
+ 39 -1.3575 2.00000
1718
+ 40 -1.2632 2.00000
1719
+ 41 -1.0287 2.00000
1720
+ 42 -0.9757 2.00000
1721
+ 43 -0.8461 2.00000
1722
+ 44 -0.7272 2.00000
1723
+ 45 -0.6188 2.00000
1724
+ 46 -0.5560 2.00000
1725
+ 47 -0.5152 2.00000
1726
+ 48 -0.3755 2.00000
1727
+ 49 -0.2536 2.00000
1728
+ 50 -0.1680 2.00000
1729
+ 51 4.6884 0.00000
1730
+ 52 5.4104 0.00000
1731
+ 53 7.2762 0.00000
1732
+ 54 7.7017 0.00000
1733
+ 55 7.9769 0.00000
1734
+ 56 8.1371 0.00000
1735
+ 57 8.5883 0.00000
1736
+ 58 8.6956 0.00000
1737
+ 59 9.0085 0.00000
1738
+ 60 9.2725 0.00000
1739
+
1740
+ k-point 9 : 0.1250 0.1250 0.3750
1741
+ band No. band energies occupation
1742
+ 1 -43.3743 2.00000
1743
+ 2 -43.3626 2.00000
1744
+ 3 -42.9340 2.00000
1745
+ 4 -42.9051 2.00000
1746
+ 5 -42.5894 2.00000
1747
+ 6 -42.5342 2.00000
1748
+ 7 -42.0993 2.00000
1749
+ 8 -42.0938 2.00000
1750
+ 9 -22.9762 2.00000
1751
+ 10 -22.9609 2.00000
1752
+ 11 -22.9243 2.00000
1753
+ 12 -22.7687 2.00000
1754
+ 13 -22.7246 2.00000
1755
+ 14 -22.6944 2.00000
1756
+ 15 -22.6820 2.00000
1757
+ 16 -22.6653 2.00000
1758
+ 17 -22.4804 2.00000
1759
+ 18 -22.4705 2.00000
1760
+ 19 -17.3454 2.00000
1761
+ 20 -17.0357 2.00000
1762
+ 21 -16.1672 2.00000
1763
+ 22 -15.8686 2.00000
1764
+ 23 -15.8454 2.00000
1765
+ 24 -15.6962 2.00000
1766
+ 25 -15.6676 2.00000
1767
+ 26 -15.4078 2.00000
1768
+ 27 -6.1360 2.00000
1769
+ 28 -5.8357 2.00000
1770
+ 29 -3.5055 2.00000
1771
+ 30 -3.3651 2.00000
1772
+ 31 -3.2457 2.00000
1773
+ 32 -3.0894 2.00000
1774
+ 33 -2.9139 2.00000
1775
+ 34 -2.6846 2.00000
1776
+ 35 -2.0323 2.00000
1777
+ 36 -1.7721 2.00000
1778
+ 37 -1.5863 2.00000
1779
+ 38 -1.5457 2.00000
1780
+ 39 -1.3928 2.00000
1781
+ 40 -1.3552 2.00000
1782
+ 41 -1.1539 2.00000
1783
+ 42 -1.0464 2.00000
1784
+ 43 -0.9558 2.00000
1785
+ 44 -0.7508 2.00000
1786
+ 45 -0.5972 2.00000
1787
+ 46 -0.5189 2.00000
1788
+ 47 -0.3431 2.00000
1789
+ 48 -0.3169 2.00000
1790
+ 49 -0.1860 2.00000
1791
+ 50 -0.0719 2.00000
1792
+ 51 4.9301 0.00000
1793
+ 52 5.7122 0.00000
1794
+ 53 6.4458 0.00000
1795
+ 54 7.1107 0.00000
1796
+ 55 7.3438 0.00000
1797
+ 56 7.8355 0.00000
1798
+ 57 8.0208 0.00000
1799
+ 58 8.5484 0.00000
1800
+ 59 9.0108 0.00000
1801
+ 60 9.3806 0.00000
1802
+
1803
+ k-point 10 : 0.3750 0.1250 0.3750
1804
+ band No. band energies occupation
1805
+ 1 -43.3731 2.00000
1806
+ 2 -43.3638 2.00000
1807
+ 3 -42.9336 2.00000
1808
+ 4 -42.9055 2.00000
1809
+ 5 -42.5894 2.00000
1810
+ 6 -42.5341 2.00000
1811
+ 7 -42.0977 2.00000
1812
+ 8 -42.0954 2.00000
1813
+ 9 -22.9762 2.00000
1814
+ 10 -22.9609 2.00000
1815
+ 11 -22.9244 2.00000
1816
+ 12 -22.7686 2.00000
1817
+ 13 -22.7246 2.00000
1818
+ 14 -22.6944 2.00000
1819
+ 15 -22.6820 2.00000
1820
+ 16 -22.6653 2.00000
1821
+ 17 -22.4804 2.00000
1822
+ 18 -22.4705 2.00000
1823
+ 19 -17.3400 2.00000
1824
+ 20 -17.0306 2.00000
1825
+ 21 -16.1832 2.00000
1826
+ 22 -15.8844 2.00000
1827
+ 23 -15.8419 2.00000
1828
+ 24 -15.7038 2.00000
1829
+ 25 -15.6478 2.00000
1830
+ 26 -15.4078 2.00000
1831
+ 27 -6.0713 2.00000
1832
+ 28 -5.7778 2.00000
1833
+ 29 -3.5901 2.00000
1834
+ 30 -3.3747 2.00000
1835
+ 31 -3.1981 2.00000
1836
+ 32 -3.0295 2.00000
1837
+ 33 -2.9257 2.00000
1838
+ 34 -2.6812 2.00000
1839
+ 35 -1.9746 2.00000
1840
+ 36 -1.8383 2.00000
1841
+ 37 -1.6652 2.00000
1842
+ 38 -1.5467 2.00000
1843
+ 39 -1.4447 2.00000
1844
+ 40 -1.3213 2.00000
1845
+ 41 -1.1720 2.00000
1846
+ 42 -1.0080 2.00000
1847
+ 43 -0.9062 2.00000
1848
+ 44 -0.8286 2.00000
1849
+ 45 -0.7035 2.00000
1850
+ 46 -0.5121 2.00000
1851
+ 47 -0.4023 2.00000
1852
+ 48 -0.3389 2.00000
1853
+ 49 -0.2199 2.00000
1854
+ 50 -0.1656 2.00000
1855
+ 51 5.3061 0.00000
1856
+ 52 5.6846 0.00000
1857
+ 53 6.7004 0.00000
1858
+ 54 6.9894 0.00000
1859
+ 55 7.6511 0.00000
1860
+ 56 8.2288 0.00000
1861
+ 57 8.2973 0.00000
1862
+ 58 8.4923 0.00000
1863
+ 59 8.7933 0.00000
1864
+ 60 9.1922 0.00000
1865
+
1866
+ k-point 11 : 0.1250 0.3750 0.3750
1867
+ band No. band energies occupation
1868
+ 1 -43.3743 2.00000
1869
+ 2 -43.3626 2.00000
1870
+ 3 -42.9340 2.00000
1871
+ 4 -42.9051 2.00000
1872
+ 5 -42.5894 2.00000
1873
+ 6 -42.5341 2.00000
1874
+ 7 -42.0993 2.00000
1875
+ 8 -42.0939 2.00000
1876
+ 9 -22.9762 2.00000
1877
+ 10 -22.9611 2.00000
1878
+ 11 -22.9241 2.00000
1879
+ 12 -22.7686 2.00000
1880
+ 13 -22.7246 2.00000
1881
+ 14 -22.6939 2.00000
1882
+ 15 -22.6820 2.00000
1883
+ 16 -22.6649 2.00000
1884
+ 17 -22.4804 2.00000
1885
+ 18 -22.4705 2.00000
1886
+ 19 -17.3208 2.00000
1887
+ 20 -16.9826 2.00000
1888
+ 21 -16.1678 2.00000
1889
+ 22 -15.9577 2.00000
1890
+ 23 -15.8329 2.00000
1891
+ 24 -15.7433 2.00000
1892
+ 25 -15.6746 2.00000
1893
+ 26 -15.3992 2.00000
1894
+ 27 -6.1336 2.00000
1895
+ 28 -5.8842 2.00000
1896
+ 29 -3.3826 2.00000
1897
+ 30 -3.2703 2.00000
1898
+ 31 -3.0925 2.00000
1899
+ 32 -3.0070 2.00000
1900
+ 33 -2.9022 2.00000
1901
+ 34 -2.5750 2.00000
1902
+ 35 -1.8693 2.00000
1903
+ 36 -1.7736 2.00000
1904
+ 37 -1.6693 2.00000
1905
+ 38 -1.5745 2.00000
1906
+ 39 -1.4759 2.00000
1907
+ 40 -1.3981 2.00000
1908
+ 41 -1.2179 2.00000
1909
+ 42 -1.0366 2.00000
1910
+ 43 -0.8636 2.00000
1911
+ 44 -0.7355 2.00000
1912
+ 45 -0.6738 2.00000
1913
+ 46 -0.5547 2.00000
1914
+ 47 -0.4455 2.00000
1915
+ 48 -0.3836 2.00000
1916
+ 49 -0.2627 2.00000
1917
+ 50 -0.1033 2.00000
1918
+ 51 5.3693 0.00000
1919
+ 52 5.6073 0.00000
1920
+ 53 6.4173 0.00000
1921
+ 54 6.8471 0.00000
1922
+ 55 7.1654 0.00000
1923
+ 56 7.4107 0.00000
1924
+ 57 7.6984 0.00000
1925
+ 58 8.2785 0.00000
1926
+ 59 8.8871 0.00000
1927
+ 60 9.0734 0.00000
1928
+
1929
+ k-point 12 : 0.3750 0.3750 0.3750
1930
+ band No. band energies occupation
1931
+ 1 -43.3731 2.00000
1932
+ 2 -43.3638 2.00000
1933
+ 3 -42.9336 2.00000
1934
+ 4 -42.9055 2.00000
1935
+ 5 -42.5894 2.00000
1936
+ 6 -42.5341 2.00000
1937
+ 7 -42.0977 2.00000
1938
+ 8 -42.0954 2.00000
1939
+ 9 -22.9761 2.00000
1940
+ 10 -22.9610 2.00000
1941
+ 11 -22.9241 2.00000
1942
+ 12 -22.7686 2.00000
1943
+ 13 -22.7246 2.00000
1944
+ 14 -22.6939 2.00000
1945
+ 15 -22.6820 2.00000
1946
+ 16 -22.6649 2.00000
1947
+ 17 -22.4804 2.00000
1948
+ 18 -22.4705 2.00000
1949
+ 19 -17.3172 2.00000
1950
+ 20 -16.9775 2.00000
1951
+ 21 -16.1812 2.00000
1952
+ 22 -15.9333 2.00000
1953
+ 23 -15.8541 2.00000
1954
+ 24 -15.7481 2.00000
1955
+ 25 -15.6709 2.00000
1956
+ 26 -15.4039 2.00000
1957
+ 27 -6.0666 2.00000
1958
+ 28 -5.8210 2.00000
1959
+ 29 -3.4834 2.00000
1960
+ 30 -3.2482 2.00000
1961
+ 31 -3.0534 2.00000
1962
+ 32 -2.8740 2.00000
1963
+ 33 -2.7980 2.00000
1964
+ 34 -2.5410 2.00000
1965
+ 35 -2.0058 2.00000
1966
+ 36 -1.9383 2.00000
1967
+ 37 -1.7178 2.00000
1968
+ 38 -1.6704 2.00000
1969
+ 39 -1.5109 2.00000
1970
+ 40 -1.4246 2.00000
1971
+ 41 -1.2057 2.00000
1972
+ 42 -1.0021 2.00000
1973
+ 43 -0.9242 2.00000
1974
+ 44 -0.8176 2.00000
1975
+ 45 -0.7760 2.00000
1976
+ 46 -0.5119 2.00000
1977
+ 47 -0.4438 2.00000
1978
+ 48 -0.3957 2.00000
1979
+ 49 -0.2254 2.00000
1980
+ 50 -0.1151 2.00000
1981
+ 51 5.5770 0.00000
1982
+ 52 5.7381 0.00000
1983
+ 53 6.7453 0.00000
1984
+ 54 6.9707 0.00000
1985
+ 55 7.2397 0.00000
1986
+ 56 7.5331 0.00000
1987
+ 57 7.8238 0.00000
1988
+ 58 8.1373 0.00000
1989
+ 59 8.8442 0.00000
1990
+ 60 9.2324 0.00000
1991
+
1992
+ k-point 13 : 0.1250 -0.3750 0.3750
1993
+ band No. band energies occupation
1994
+ 1 -43.3743 2.00000
1995
+ 2 -43.3626 2.00000
1996
+ 3 -42.9340 2.00000
1997
+ 4 -42.9051 2.00000
1998
+ 5 -42.5894 2.00000
1999
+ 6 -42.5341 2.00000
2000
+ 7 -42.0993 2.00000
2001
+ 8 -42.0938 2.00000
2002
+ 9 -22.9761 2.00000
2003
+ 10 -22.9611 2.00000
2004
+ 11 -22.9241 2.00000
2005
+ 12 -22.7686 2.00000
2006
+ 13 -22.7246 2.00000
2007
+ 14 -22.6939 2.00000
2008
+ 15 -22.6820 2.00000
2009
+ 16 -22.6649 2.00000
2010
+ 17 -22.4804 2.00000
2011
+ 18 -22.4705 2.00000
2012
+ 19 -17.3234 2.00000
2013
+ 20 -16.9790 2.00000
2014
+ 21 -16.1674 2.00000
2015
+ 22 -15.9619 2.00000
2016
+ 23 -15.8293 2.00000
2017
+ 24 -15.7407 2.00000
2018
+ 25 -15.6765 2.00000
2019
+ 26 -15.4006 2.00000
2020
+ 27 -6.1384 2.00000
2021
+ 28 -5.8766 2.00000
2022
+ 29 -3.4207 2.00000
2023
+ 30 -3.3135 2.00000
2024
+ 31 -3.0702 2.00000
2025
+ 32 -2.9841 2.00000
2026
+ 33 -2.8889 2.00000
2027
+ 34 -2.5704 2.00000
2028
+ 35 -1.8909 2.00000
2029
+ 36 -1.7514 2.00000
2030
+ 37 -1.6676 2.00000
2031
+ 38 -1.5675 2.00000
2032
+ 39 -1.4749 2.00000
2033
+ 40 -1.3384 2.00000
2034
+ 41 -1.2359 2.00000
2035
+ 42 -0.9977 2.00000
2036
+ 43 -0.8370 2.00000
2037
+ 44 -0.7308 2.00000
2038
+ 45 -0.6691 2.00000
2039
+ 46 -0.5442 2.00000
2040
+ 47 -0.4920 2.00000
2041
+ 48 -0.4648 2.00000
2042
+ 49 -0.2617 2.00000
2043
+ 50 -0.0927 2.00000
2044
+ 51 5.2323 0.00000
2045
+ 52 5.6847 0.00000
2046
+ 53 6.3702 0.00000
2047
+ 54 6.9061 0.00000
2048
+ 55 7.2788 0.00000
2049
+ 56 7.4113 0.00000
2050
+ 57 7.7722 0.00000
2051
+ 58 8.1844 0.00000
2052
+ 59 8.7315 0.00000
2053
+ 60 9.2340 0.00000
2054
+
2055
+ k-point 14 : 0.3750 -0.3750 0.3750
2056
+ band No. band energies occupation
2057
+ 1 -43.3731 2.00000
2058
+ 2 -43.3638 2.00000
2059
+ 3 -42.9336 2.00000
2060
+ 4 -42.9055 2.00000
2061
+ 5 -42.5894 2.00000
2062
+ 6 -42.5341 2.00000
2063
+ 7 -42.0977 2.00000
2064
+ 8 -42.0954 2.00000
2065
+ 9 -22.9761 2.00000
2066
+ 10 -22.9611 2.00000
2067
+ 11 -22.9241 2.00000
2068
+ 12 -22.7686 2.00000
2069
+ 13 -22.7246 2.00000
2070
+ 14 -22.6939 2.00000
2071
+ 15 -22.6820 2.00000
2072
+ 16 -22.6649 2.00000
2073
+ 17 -22.4804 2.00000
2074
+ 18 -22.4705 2.00000
2075
+ 19 -17.3182 2.00000
2076
+ 20 -16.9775 2.00000
2077
+ 21 -16.1774 2.00000
2078
+ 22 -15.9372 2.00000
2079
+ 23 -15.8500 2.00000
2080
+ 24 -15.7381 2.00000
2081
+ 25 -15.6836 2.00000
2082
+ 26 -15.4044 2.00000
2083
+ 27 -6.0691 2.00000
2084
+ 28 -5.8179 2.00000
2085
+ 29 -3.4688 2.00000
2086
+ 30 -3.2844 2.00000
2087
+ 31 -3.0389 2.00000
2088
+ 32 -2.8680 2.00000
2089
+ 33 -2.8246 2.00000
2090
+ 34 -2.5641 2.00000
2091
+ 35 -2.0298 2.00000
2092
+ 36 -1.8499 2.00000
2093
+ 37 -1.7821 2.00000
2094
+ 38 -1.6541 2.00000
2095
+ 39 -1.4692 2.00000
2096
+ 40 -1.4124 2.00000
2097
+ 41 -1.1757 2.00000
2098
+ 42 -1.0000 2.00000
2099
+ 43 -0.8951 2.00000
2100
+ 44 -0.8145 2.00000
2101
+ 45 -0.7516 2.00000
2102
+ 46 -0.5234 2.00000
2103
+ 47 -0.4723 2.00000
2104
+ 48 -0.4218 2.00000
2105
+ 49 -0.2390 2.00000
2106
+ 50 -0.1406 2.00000
2107
+ 51 5.4483 0.00000
2108
+ 52 5.7738 0.00000
2109
+ 53 6.7088 0.00000
2110
+ 54 7.0548 0.00000
2111
+ 55 7.4379 0.00000
2112
+ 56 7.5133 0.00000
2113
+ 57 7.8225 0.00000
2114
+ 58 8.0804 0.00000
2115
+ 59 8.8486 0.00000
2116
+ 60 9.1590 0.00000
2117
+
2118
+ k-point 15 : 0.1250 -0.1250 0.3750
2119
+ band No. band energies occupation
2120
+ 1 -43.3743 2.00000
2121
+ 2 -43.3626 2.00000
2122
+ 3 -42.9340 2.00000
2123
+ 4 -42.9051 2.00000
2124
+ 5 -42.5894 2.00000
2125
+ 6 -42.5342 2.00000
2126
+ 7 -42.0993 2.00000
2127
+ 8 -42.0938 2.00000
2128
+ 9 -22.9762 2.00000
2129
+ 10 -22.9610 2.00000
2130
+ 11 -22.9244 2.00000
2131
+ 12 -22.7686 2.00000
2132
+ 13 -22.7246 2.00000
2133
+ 14 -22.6944 2.00000
2134
+ 15 -22.6820 2.00000
2135
+ 16 -22.6653 2.00000
2136
+ 17 -22.4804 2.00000
2137
+ 18 -22.4706 2.00000
2138
+ 19 -17.3480 2.00000
2139
+ 20 -17.0324 2.00000
2140
+ 21 -16.1672 2.00000
2141
+ 22 -15.8810 2.00000
2142
+ 23 -15.8315 2.00000
2143
+ 24 -15.6926 2.00000
2144
+ 25 -15.6722 2.00000
2145
+ 26 -15.4092 2.00000
2146
+ 27 -6.1397 2.00000
2147
+ 28 -5.8293 2.00000
2148
+ 29 -3.5382 2.00000
2149
+ 30 -3.3599 2.00000
2150
+ 31 -3.2447 2.00000
2151
+ 32 -3.1138 2.00000
2152
+ 33 -2.9117 2.00000
2153
+ 34 -2.6836 2.00000
2154
+ 35 -1.9078 2.00000
2155
+ 36 -1.7981 2.00000
2156
+ 37 -1.6089 2.00000
2157
+ 38 -1.5480 2.00000
2158
+ 39 -1.4313 2.00000
2159
+ 40 -1.3600 2.00000
2160
+ 41 -1.1475 2.00000
2161
+ 42 -1.0313 2.00000
2162
+ 43 -0.8894 2.00000
2163
+ 44 -0.7273 2.00000
2164
+ 45 -0.5840 2.00000
2165
+ 46 -0.5286 2.00000
2166
+ 47 -0.4085 2.00000
2167
+ 48 -0.3470 2.00000
2168
+ 49 -0.1916 2.00000
2169
+ 50 -0.0657 2.00000
2170
+ 51 4.8989 0.00000
2171
+ 52 5.6385 0.00000
2172
+ 53 6.4684 0.00000
2173
+ 54 7.1469 0.00000
2174
+ 55 7.4972 0.00000
2175
+ 56 7.7986 0.00000
2176
+ 57 8.0850 0.00000
2177
+ 58 8.4250 0.00000
2178
+ 59 8.9704 0.00000
2179
+ 60 9.4670 0.00000
2180
+
2181
+ k-point 16 : 0.3750 -0.1250 0.3750
2182
+ band No. band energies occupation
2183
+ 1 -43.3731 2.00000
2184
+ 2 -43.3638 2.00000
2185
+ 3 -42.9336 2.00000
2186
+ 4 -42.9055 2.00000
2187
+ 5 -42.5894 2.00000
2188
+ 6 -42.5342 2.00000
2189
+ 7 -42.0977 2.00000
2190
+ 8 -42.0954 2.00000
2191
+ 9 -22.9762 2.00000
2192
+ 10 -22.9610 2.00000
2193
+ 11 -22.9244 2.00000
2194
+ 12 -22.7686 2.00000
2195
+ 13 -22.7246 2.00000
2196
+ 14 -22.6944 2.00000
2197
+ 15 -22.6820 2.00000
2198
+ 16 -22.6653 2.00000
2199
+ 17 -22.4804 2.00000
2200
+ 18 -22.4706 2.00000
2201
+ 19 -17.3410 2.00000
2202
+ 20 -17.0305 2.00000
2203
+ 21 -16.1807 2.00000
2204
+ 22 -15.8833 2.00000
2205
+ 23 -15.8418 2.00000
2206
+ 24 -15.6894 2.00000
2207
+ 25 -15.6646 2.00000
2208
+ 26 -15.4083 2.00000
2209
+ 27 -6.0738 2.00000
2210
+ 28 -5.7750 2.00000
2211
+ 29 -3.5503 2.00000
2212
+ 30 -3.3835 2.00000
2213
+ 31 -3.2583 2.00000
2214
+ 32 -3.0804 2.00000
2215
+ 33 -2.8727 2.00000
2216
+ 34 -2.6874 2.00000
2217
+ 35 -1.9669 2.00000
2218
+ 36 -1.8166 2.00000
2219
+ 37 -1.6820 2.00000
2220
+ 38 -1.5807 2.00000
2221
+ 39 -1.3923 2.00000
2222
+ 40 -1.3139 2.00000
2223
+ 41 -1.1339 2.00000
2224
+ 42 -0.9875 2.00000
2225
+ 43 -0.9188 2.00000
2226
+ 44 -0.7709 2.00000
2227
+ 45 -0.7205 2.00000
2228
+ 46 -0.4841 2.00000
2229
+ 47 -0.4411 2.00000
2230
+ 48 -0.3511 2.00000
2231
+ 49 -0.2483 2.00000
2232
+ 50 -0.2019 2.00000
2233
+ 51 5.2573 0.00000
2234
+ 52 5.6432 0.00000
2235
+ 53 6.7044 0.00000
2236
+ 54 7.0315 0.00000
2237
+ 55 7.7862 0.00000
2238
+ 56 8.1649 0.00000
2239
+ 57 8.3204 0.00000
2240
+ 58 8.5517 0.00000
2241
+ 59 8.9743 0.00000
2242
+ 60 9.1505 0.00000
2243
+
2244
+
2245
+ --------------------------------------------------------------------------------------------------------
2246
+
2247
+
2248
+ soft charge-density along one line, spin component 1
2249
+ 0 1 2 3 4 5 6 7 8 9
2250
+ total charge-density along one line
2251
+
2252
+ pseudopotential strength for first ion, spin component: 1
2253
+ -49.882 0.000 9.675 0.000 0.002 0.000 -0.006 0.000 0.001 0.000 0.003 0.000 -0.009 0.000 0.001 0.000
2254
+ 9.675 0.000 -0.648 0.000 -0.001 0.000 0.005 0.000 -0.001 0.000 -0.001 0.000 0.004 0.000 -0.001 0.000
2255
+ 0.002 0.000 -0.001 0.000 -0.554 0.000 0.002 0.000 -0.001 0.000 0.261 0.000 0.000 0.000 0.000 0.000
2256
+ -0.006 0.000 0.005 0.000 0.002 0.000 -0.551 0.000 -0.001 0.000 0.000 0.000 0.263 0.000 0.000 0.000
2257
+ 0.001 0.000 -0.001 0.000 -0.001 0.000 -0.001 0.000 -0.555 0.000 0.000 0.000 0.000 0.000 0.262 0.000
2258
+ 0.003 0.000 -0.001 0.000 0.261 0.000 0.000 0.000 0.000 0.000 1.918 0.000 0.000 0.000 0.000 0.000
2259
+ -0.009 0.000 0.004 0.000 0.000 0.000 0.263 0.000 0.000 0.000 0.000 0.000 1.919 0.000 0.000 0.000
2260
+ 0.001 0.000 -0.001 0.000 0.000 0.000 0.000 0.000 0.262 0.000 0.000 0.000 0.000 0.000 1.919 0.000
2261
+ total augmentation occupancy for first ion, spin component: 1
2262
+ 2.019 0.128 0.001 -0.004 0.001 -0.001 0.004 -0.001
2263
+ 0.128 0.879 0.009 -0.054 0.008 0.000 0.010 -0.001
2264
+ 0.001 0.009 0.098 -0.015 0.009 -0.018 0.003 -0.001
2265
+ -0.004 -0.054 -0.015 0.085 0.007 0.003 -0.015 -0.001
2266
+ 0.001 0.008 0.009 0.007 0.120 -0.001 -0.001 -0.022
2267
+ -0.001 0.000 -0.018 0.003 -0.001 0.004 -0.001 0.000
2268
+ 0.004 0.010 0.003 -0.015 -0.001 -0.001 0.003 0.000
2269
+ -0.001 -0.001 -0.001 -0.001 -0.022 0.000 0.000 0.004
2270
+
2271
+
2272
+ ------------------------ aborting loop because EDIFF is reached ----------------------------------------
2273
+
2274
+
2275
+
2276
+
2277
+ --------------------------------------------------------------------------------------------------------
2278
+
2279
+
2280
+ CHARGE: VPU time 5.37: CPU time 5.37
2281
+ FORLOC: VPU time 0.47: CPU time 0.47
2282
+ FORNL : VPU time 31.31: CPU time 31.35
2283
+ STRESS: VPU time 83.00: CPU time 83.11
2284
+ FORCOR: VPU time 1.48: CPU time 1.48
2285
+ FORHAR: VPU time 0.79: CPU time 0.79
2286
+ MIXING: VPU time 0.09: CPU time 0.09
2287
+
2288
+
2289
+ --------------------------------------------------------------------------------------------------------
2290
+
2291
+
2292
+
2293
+ FREE ENERGIE OF THE ION-ELECTRON SYSTEM (eV)
2294
+ ---------------------------------------------------
2295
+ free energy TOTEN = -98.000000 eV
2296
+
2297
+ energy without entropy= -98.000000 energy(sigma->0) = -98.000000
2298
+
2299
+
2300
+ FORCE on cell =-STRESS in cart. coord. units (eV/reduce length):
2301
+ Direction X Y Z XY YZ ZX
2302
+ --------------------------------------------------------------------------------------
2303
+ Alpha Z 351.27 351.27 351.27
2304
+ Ewald -1820.10 -1770.42 -1777.53 0.00 173.75 0.00
2305
+ Hartree 1065.98 1111.17 1056.24 0.00 113.33 0.00
2306
+ E(xc) -505.81 -505.72 -505.55 0.00 0.15 0.00
2307
+ Local -370.21 -467.39 -396.76 0.00 -282.50 0.00
2308
+ n-local -4.39 -3.77 -4.24 0.00 1.61 0.00
2309
+ augment 178.69 179.16 177.47 0.00 -1.05 0.00
2310
+ Kinetic 1104.49 1105.64 1099.06 0.01 -5.32 -0.11
2311
+ -------------------------------------------------------------------------------------
2312
+ Total -0.08 -0.07 -0.04 0.00 -0.03 0.00
2313
+ in kB -0.65 -0.57 -0.36 0.00 -0.26 0.00
2314
+ external pressure = -0.53 kB Pullay stress = 0.00 kB
2315
+
2316
+
2317
+ VOLUME and BASIS-vectors are now :
2318
+ -----------------------------------------------------------------------------
2319
+ energy-cutoff : 400.00
2320
+ volume of cell : 189.57
2321
+ direct lattice vectors reciprocal lattice vectors
2322
+ 6.414228945 0.000000000 0.000000000 0.155903384 0.000000000 0.000000000
2323
+ 0.000000000 5.336996137 -0.035023814 0.000000000 0.187381661 0.001576155
2324
+ 0.000000000 -0.046583564 5.538102111 0.000000000 0.001185031 0.180577242
2325
+
2326
+ length of vectors
2327
+ 6.414228945 5.337111057 5.538298026 0.155903384 0.187388290 0.180581130
2328
+
2329
+
2330
+ FORCES acting on ions
2331
+ electron-ion (+dipol) ewald-force non-local-force convergence-correction
2332
+ -----------------------------------------------------------------------------------------------
2333
+ 0.565E+01 0.296E+01 -.115E+02 -.539E+01 -.253E+01 0.981E+01 -.257E+00 -.413E+00 0.169E+01 -.258E-03 -.477E-03 0.117E-03
2334
+ -.565E+01 0.296E+01 -.115E+02 0.539E+01 -.253E+01 0.981E+01 0.257E+00 -.413E+00 0.169E+01 0.258E-03 -.477E-03 0.117E-03
2335
+ -.418E-13 -.328E+02 -.394E+02 0.773E-13 0.312E+02 0.391E+02 0.249E-18 0.161E+01 0.335E+00 0.263E-13 0.108E-02 0.941E-03
2336
+ -.237E+02 -.818E+01 0.356E+00 0.229E+02 0.870E+01 0.152E+01 0.736E+00 -.518E+00 -.187E+01 0.349E-03 0.534E-03 -.204E-03
2337
+ 0.237E+02 -.818E+01 0.356E+00 -.229E+02 0.870E+01 0.152E+01 -.736E+00 -.518E+00 -.187E+01 -.349E-03 0.534E-03 -.204E-03
2338
+ 0.716E-13 0.213E+02 -.128E+02 -.247E-12 -.207E+02 0.119E+02 -.159E-18 -.657E+00 0.886E+00 -.124E-13 -.692E-03 0.120E-03
2339
+ 0.365E+02 -.266E+01 -.174E+01 -.363E+02 0.326E+01 0.103E+01 -.230E+00 -.602E+00 0.706E+00 -.900E-03 0.305E-03 0.235E-03
2340
+ -.365E+02 -.266E+01 -.174E+01 0.363E+02 0.326E+01 0.103E+01 0.230E+00 -.602E+00 0.706E+00 0.900E-03 0.305E-03 0.235E-03
2341
+ -.828E-13 -.267E+01 0.613E+02 0.579E-12 -.215E-01 -.582E+02 -.381E-19 0.269E+01 -.313E+01 -.559E-13 -.380E-02 -.609E-03
2342
+ 0.193E-11 0.411E+02 0.107E+02 -.429E-11 -.435E+02 -.132E+02 -.402E-19 0.246E+01 0.252E+01 -.120E-12 -.113E-02 0.134E-02
2343
+ 0.261E-12 -.180E+03 0.423E+02 -.125E-11 0.202E+03 -.440E+02 -.263E-18 -.219E+02 0.166E+01 0.308E-13 0.690E-02 -.155E-02
2344
+ -.201E+03 0.675E+02 0.836E+02 0.224E+03 -.755E+02 -.951E+02 -.236E+02 0.803E+01 0.115E+02 0.255E-02 -.435E-02 -.100E-02
2345
+ 0.201E+03 0.675E+02 0.836E+02 -.224E+03 -.755E+02 -.951E+02 0.236E+02 0.803E+01 0.115E+02 -.255E-02 -.435E-02 -.100E-02
2346
+ 0.124E-11 -.135E+02 -.232E+03 -.419E-11 0.153E+02 0.257E+03 -.779E-19 -.176E+01 -.248E+02 0.272E-13 0.163E-02 0.996E-03
2347
+ 0.503E-12 0.233E+03 0.117E+03 -.367E-12 -.263E+03 -.132E+03 -.722E-18 0.293E+02 0.153E+02 -.367E-13 -.288E-02 -.222E-03
2348
+ 0.183E+03 -.115E+03 0.767E+02 -.204E+03 0.128E+03 -.852E+02 0.205E+02 -.130E+02 0.856E+01 -.280E-02 0.223E-02 -.547E-03
2349
+ -.183E+03 -.115E+03 0.767E+02 0.204E+03 0.128E+03 -.852E+02 -.205E+02 -.130E+02 0.856E+01 0.280E-02 0.223E-02 -.547E-03
2350
+ -.775E-13 0.412E+02 -.247E+03 0.212E-12 -.458E+02 0.275E+03 0.961E-19 0.455E+01 -.284E+02 0.481E-13 -.180E-02 0.307E-02
2351
+ -----------------------------------------------------------------------------------------------
2352
+ 0.208E-11 -.333E+01 -.554E+01 -.720E-13 -.284E-13 -.568E-13 -.355E-14 0.335E+01 0.553E+01 0.461E-14 -.420E-02 0.129E-02
2353
+
2354
+
2355
+ POSITION TOTAL-FORCE (eV/Angst)
2356
+ -----------------------------------------------------------------------------------
2357
+ 1.58937 3.64160 2.68259 -0.001844 0.011674 -0.001231
2358
+ 4.82486 3.64160 2.68259 0.001844 0.011674 -0.001231
2359
+ 0.00000 0.80734 1.83537 0.000000 0.005267 -0.006500
2360
+ 1.84053 1.97124 0.47954 0.001563 0.003523 0.005557
2361
+ 4.57370 1.97124 0.47954 -0.001563 0.003523 0.005557
2362
+ 3.20711 4.44951 5.41813 0.000000 -0.007934 -0.005166
2363
+ 1.24007 1.68067 4.10951 0.002132 -0.002948 -0.002303
2364
+ 5.17416 1.68067 4.10951 -0.002132 -0.002948 -0.002303
2365
+ 0.00000 4.28882 5.49575 0.000000 -0.008120 -0.009293
2366
+ 3.20711 0.77563 2.82086 0.000000 -0.014903 -0.003027
2367
+ 0.00000 0.75918 5.25599 0.000000 -0.008579 0.008644
2368
+ 1.45125 3.48550 4.81807 -0.007177 -0.001740 0.003465
2369
+ 4.96298 3.48550 4.81807 0.007177 -0.001740 0.003465
2370
+ 3.20711 0.96348 4.63916 0.000000 0.008433 -0.009707
2371
+ 3.20711 4.51648 2.07051 0.000000 0.012018 -0.001617
2372
+ 1.72319 1.65174 2.30946 0.000975 -0.001482 0.007627
2373
+ 4.69104 1.65174 2.30946 -0.000975 -0.001482 0.007627
2374
+ 0.00000 4.21638 1.73033 0.000000 -0.004236 0.000436
2375
+ -----------------------------------------------------------------------------------
2376
+ total drift: 0.000000 0.017987 -0.004723
2377
+
2378
+
2379
+ --------------------------------------------------------------------------------------------------------
2380
+
2381
+
2382
+
2383
+
2384
+ --------------------------------------------------------------------------------------------------------
2385
+
2386
+
2387
+
2388
+ reached required accuracy - stopping structural energy minimisation
2389
+ writing wavefunctions
2390
+ LOOP+: VPU time 1266.84: CPU time 1272.23
2391
+
2392
+
2393
+ General timing and accounting informations for this job:
2394
+ ========================================================
2395
+
2396
+ Total CPU time used (sec): 1294.973
2397
+ User time (sec): 1251.798
2398
+ System time (sec): 43.175
2399
+ Elapsed time (sec): 1300.804
2400
+
2401
+ Maximum memory used (kb): 331044.
2402
+ Average memory used (kb): 0.
2403
+
2404
+ Minor page faults: 12346088
2405
+ Major page faults: 11
2406
+ Voluntary context switches: 349