File: INPUT_pw2gw.def

package info (click to toggle)
espresso 6.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 311,040 kB
  • sloc: f90: 447,429; ansic: 52,566; sh: 40,631; xml: 37,561; tcl: 20,077; lisp: 5,923; makefile: 4,502; python: 4,379; perl: 1,219; cpp: 761; fortran: 618; java: 568; awk: 128
file content (100 lines) | stat: -rw-r--r-- 3,009 bytes parent folder | download | duplicates (4)
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
input_description -distribution {Quantum Espresso} -package PWscf -program pw2gw.x {

    toc {}

    intro {

        @b {Purpose of pw2gw.x:}
           Optical properties in single-particle approach (Fermi Golden Rule).
           Interface with GW and excitonic codes.

           The code computes and writes ("matrixelements" file) the optical matrix elemenents in the 
           dipole approximation.

           The code computes the imaginary part of the dielectric tensor xx, yy and zz ("epsX.dat", "epsY.dat",
           "epsZ.dat") and the average ("epsTOT.dat")
          
        @b {Structure of the input data:}
        ============================

           @b &INPUTPP
             ...
           @b /
    }

    namelist INPUTPP {

        var prefix  -type        STRING {
            status { MANDATORY }
            info {
                the first part of the name of all the file written by the code
                should be equal to the value given in the main calculations.
            }
        }


        var outdir  -type        STRING {
            default { "./" }
            info {
                the scratch directory where the massive data-files are written
            }
        }


        var what  -type   STRING {
            default { "gw" }
            info {
                "gw" : Calculate dipole optical matrix elements (use for norm-conserving pseudopotentials)
                and imaginary part of the dielectric function.

                "gmaps": write g-maps for each processor in a file "fort.'100 + processor number'"
            }
        }

        var qplda  -type         LOGICAL {
            default { .FALSE. }
            info {
                if .TRUE. write the interface file "QPLDA" to GW and BSE codes (chisig, dpforexc).
            }
        }

        var vxcdiag  -type         LOGICAL {
            default { .FALSE. }
            info {
                if .TRUE. calculates the expectation value of the exchange and correlation potential
                on all the Kohn-Sham states and write it into the "vxcdiag.dat" file.
            }
        }

        var vkb  -type         LOGICAL {
            default { .FALSE. }
            info {
                if .TRUE. use Kleyman-Bylander projectors to write additional informatio into fort.15 file
            (Still in development)
            }
        }

        var Emin  -type         REAL {
            default { 0.0 }
            info {
                Starting photon energy for which the dielectric function is calculated (in eV)
            }
        }

        var Emax  -type         REAL {
            default { 30.0 }
            info {
                 Highest photon energy for which the dielectric function is calculated (in eV)
            }
        }

        var DeltaE  -type         REAL {
            default { 0.05 }
            info {
                Energy step with which the dielectric function is calculated (in eV)
            }
        }


    }
}