1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
*** FILE AUTOMATICALLY CREATED: DO NOT EDIT, CHANGES WILL BE LOST ***
------------------------------------------------------------------------
INPUT FILE DESCRIPTION
Program: dos.x / PWscf / Quantum Espresso (version: 6.6)
------------------------------------------------------------------------
Purpose of dos.x:
calculates the Density of States (DOS)
(separated into up and down components for DSDA)
Structure of the input data:
============================
&DOS
...
/
IMPORTANT: since v.5 namelist name is &DOS and no longer &INPUTPP
========================================================================
NAMELIST: &DOS
+--------------------------------------------------------------------
Variable: prefix
Type: CHARACTER
Default: 'pwscf'
Description: prefix of input file produced by pw.x
(wavefunctions are not needed)
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variable: outdir
Type: CHARACTER
Description: directory containing the input data, i.e. the same as in pw.x
Default: value of the ESPRESSO_TMPDIR environment variable if set;
current directory ('./') otherwise
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variable: bz_sum
Type: CHARACTER
Description:
Keyword selecting the method for BZ summation. Available options are:
'smearing' :
integration using gaussian smearing. In fact currently
any string not related to tetrahedra defaults to smearing;
'tetrahedra' :
Tetrahedron method, Bloechl's version:
P.E. Bloechl, PRB 49, 16223 (1994)
Requires uniform grid of k-points, to be
automatically generated in pw.x.
'tetrahedra_lin' :
Original linear tetrahedron method.
To be used only as a reference;
the optimized tetrahedron method is more efficient.
'tetrahedra_opt' :
Optimized tetrahedron method:
see M. Kawamura, PRB 89, 094515 (2014).
Default: 'smearing' if degauss is given in input;
options read from the xml data file otherwise.
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variable: ngauss
Type: INTEGER
Default: 0
Status: optional
Description: Type of gaussian broadening:
= 0 Simple Gaussian (default)
= 1 Methfessel-Paxton of order 1
= -1 "cold smearing" (Marzari-Vanderbilt-DeVita-Payne)
=-99 Fermi-Dirac function
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variable: degauss
Type: REAL
Description: gaussian broadening, Ry (not eV!)
(see below)
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variables: Emin, Emax
Type: REAL
Default: band extrema
Description: min, max energy (eV) for DOS plot. If unspecified, the
lower and/or upper band value, plus/minus 3 times the
value of the gaussian smearing if present, will be used.
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variable: DeltaE
Type: REAL
Description: energy grid step (eV)
+--------------------------------------------------------------------
+--------------------------------------------------------------------
Variable: fildos
Type: CHARACTER
Default: '"prefix".dos'
Description: output file containing DOS(E)
+--------------------------------------------------------------------
===END OF NAMELIST======================================================
:::: Notes
::: Output
The total DOS (states/eV plotted vs E in eV) is written to file "fildos"
::: Important !
The tetrahedron method is used if
- the input data file has been produced by pw.x using the option
occupations='tetrahedra', AND
- a value for degauss is not given as input to namelist &dos
Gaussian broadening is used in all other cases:
- if "degauss" is set to some value in namelist &DOS, that value
(and the optional value for "ngauss") is used
- if "degauss" is NOT set to any value in namelist &DOS, the
value of "degauss" and of "ngauss" are read from the input data
file (they will be the same used in the pw.x calculations)
- if "degauss" is NOT set to any value in namelist &DOS, AND
there is no value of "degauss" and of "ngauss" in the input data
file, "degauss"="DeltaE" (in Ry) and "ngauss"=0 will be used
This file has been created by helpdoc utility on Wed Dec 02 08:04:45 CET 2020
|