├── LICENSE ├── README.md ├── Wannier90_Si ├── 01_PBE-Wavefunctions │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ └── vasp.stdout.ref ├── 02_HSE06-Wavefunctions │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ └── vasp.stdout.ref ├── 03_Wannier90 │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ ├── vasp.stdout.ref │ ├── wannier90.win │ ├── wannier90.wout.1.ref │ ├── wannier90.wout.2.ref │ ├── wannier90_band.agr.ref │ ├── wannier90_band.dat.ref │ ├── wannier90_band.gnu.ref │ └── wannier90_band.kpt.ref └── README.md └── Wannier90_SnS2 ├── 01_Optimisation ├── CONTCAR.ref ├── INCAR ├── KPOINTS ├── OSZICAR.ref ├── OUTCAR.ref ├── POSCAR └── vasp.stdout.ref ├── 02_PBE-ElectronicStructure ├── INCAR ├── KPOINTS ├── OSZICAR.ref ├── OUTCAR.ref ├── POSCAR ├── vasp.stdout.ref ├── wannier90-dos.dat.ref ├── wannier90-dos.win ├── wannier90-dos.wpout.ref ├── wannier90.win ├── wannier90_band.dat.ref ├── wannier90_band.gnu.ref ├── wannier90_band.kpt.ref ├── wannier90_band.win └── wannier90_band.wout.ref ├── 03_HSE06-ElectronicStructure ├── 01_PBE-Wavefunctions │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ └── vasp.stdout.ref ├── 02_HSE06-Wavefunctions │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ └── vasp.stdout.ref └── 03_Wannier90 │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ ├── vasp.stdout.ref │ ├── wannier90-dos.dat.ref │ ├── wannier90-dos.win │ ├── wannier90-dos.wpout.ref │ ├── wannier90.win │ ├── wannier90_band.dat.ref │ ├── wannier90_band.gnu.ref │ ├── wannier90_band.kpt.ref │ ├── wannier90_band.win │ └── wannier90_band.wout.ref ├── 04_GW-ElectronicStructure ├── 01_PBE-Wavefunctions │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ └── vasp.stdout.ref ├── 02_PBE-LOPTICS │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ └── vasp.stdout.ref ├── 03a_G0W0 │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ ├── vasp.stdout.ref │ ├── wannier90-dat.wpout.ref │ ├── wannier90-dos.dat.ref │ ├── wannier90-dos.win │ ├── wannier90.win │ ├── wannier90_band.dat.ref │ ├── wannier90_band.gnu.ref │ ├── wannier90_band.kpt.ref │ ├── wannier90_band.win │ └── wannier90_band.wout.ref ├── 03b_scGW0 │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ ├── vasp.stdout.ref │ ├── wannier90-dos.dat │ ├── wannier90-dos.win │ ├── wannier90-dos.wpout.ref │ ├── wannier90.win │ ├── wannier90_band.dat.ref │ ├── wannier90_band.gnu.ref │ ├── wannier90_band.kpt.ref │ ├── wannier90_band.win │ └── wannier90_band.wout.ref └── 03c_scGW │ ├── INCAR │ ├── KPOINTS │ ├── OSZICAR.ref │ ├── OUTCAR.ref │ ├── POSCAR │ ├── vasp.stdout.ref │ ├── wannier90-dos.dat.ref │ ├── wannier90-dos.win │ ├── wannier90-dos.wpout.ref │ ├── wannier90.win │ ├── wannier90_band.dat.ref │ ├── wannier90_band.gnu.ref │ ├── wannier90_band.kpt.ref │ ├── wannier90_band.win │ └── wannier90_band.wout.ref └── README.md /README.md: -------------------------------------------------------------------------------- 1 | VASP-Examples 2 | ============= 3 | 4 | A collection of examples for running different types of VASP calculations. 5 | 6 | Contents 7 | -------- 8 | 9 | - [Wannier90_Si](./Wannier90_Si): using the Wannier90 interface to calculate the electronic band structure of Si using the HSE06 hybrid functional. 10 | 11 | - [Wannier90_SnS2](./Wannier90_SnS2): using the Wannier90 interface to calculate the electronic band structures and DoSof SnS2 using PBE, HSE06, *G*0*W*0, sc*GW*0 and sc*GW* 12 | -------------------------------------------------------------------------------- /Wannier90_Si/01_PBE-Wavefunctions/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = Fast 2 | EDIFF = 1.0e-8 3 | ENCUT = 500 4 | ISIF = 2 5 | ISMEAR = -5 6 | KPAR = 2 7 | LCHARG = .FALSE. 8 | LREAL = .FALSE. 9 | NBANDS = 16 10 | NEDOS = 2000 11 | NPAR = 1 12 | PREC = Accurate 13 | SYSTEM = Si 14 | -------------------------------------------------------------------------------- /Wannier90_Si/01_PBE-Wavefunctions/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 8x8x8 2 | 0 3 | Gamma 4 | 8 8 8 5 | -------------------------------------------------------------------------------- /Wannier90_Si/01_PBE-Wavefunctions/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | DAV: 1 0.501373945990E+01 0.50137E+01 -0.29779E+03 928 0.375E+02 3 | DAV: 2 -0.105958897286E+02 -0.15610E+02 -0.15034E+02 1248 0.692E+01 4 | DAV: 3 -0.110194895923E+02 -0.42360E+00 -0.42308E+00 1176 0.877E+00 5 | DAV: 4 -0.110218072937E+02 -0.23177E-02 -0.23176E-02 1224 0.833E-01 6 | DAV: 5 -0.110218265792E+02 -0.19285E-04 -0.19285E-04 1224 0.711E-02 0.488E+00 7 | RMM: 6 -0.108967759967E+02 0.12505E+00 -0.28441E-02 935 0.581E-01 0.299E+00 8 | RMM: 7 -0.108398538327E+02 0.56922E-01 -0.61442E-02 952 0.905E-01 0.191E-01 9 | RMM: 8 -0.108408079341E+02 -0.95410E-03 -0.91689E-04 1027 0.133E-01 0.747E-02 10 | RMM: 9 -0.108410240170E+02 -0.21608E-03 -0.17332E-04 1035 0.582E-02 0.572E-02 11 | RMM: 10 -0.108410490228E+02 -0.25006E-04 -0.27208E-05 1049 0.226E-02 0.299E-03 12 | RMM: 11 -0.108410492223E+02 -0.19950E-06 -0.88879E-07 1108 0.428E-03 0.162E-03 13 | RMM: 12 -0.108410494436E+02 -0.22126E-06 -0.25758E-07 1057 0.222E-03 0.132E-03 14 | RMM: 13 -0.108410493880E+02 0.55524E-07 -0.57348E-09 889 0.379E-04 0.292E-04 15 | RMM: 14 -0.108410493877E+02 0.38051E-09 -0.66503E-10 641 0.137E-04 16 | 1 F= -.10841049E+02 E0= -.10841049E+02 d E =0.000000E+00 17 | -------------------------------------------------------------------------------- /Wannier90_Si/01_PBE-Wavefunctions/POSCAR: -------------------------------------------------------------------------------- 1 | Si 2 | 5.431 3 | 0.5 0.5 0.0 4 | 0.0 0.5 0.5 5 | 0.5 0.0 0.5 6 | Si 7 | 2 8 | Direct 9 | 0.00 0.00 0.00 10 | 0.25 0.25 0.25 11 | -------------------------------------------------------------------------------- /Wannier90_Si/01_PBE-Wavefunctions/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 16 total cores 2 | distrk: each k-point on 8 cores, 2 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Nov 12 2015 13:14:48) complex 6 | 7 | POSCAR found type information on POSCAR Si 8 | POSCAR found : 1 types and 2 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | LDA part: xc-table for Pade appr. of Perdew 31 | POSCAR, INCAR and KPOINTS ok, starting setup 32 | WARNING: small aliasing (wrap around) errors must be expected 33 | FFT: planning ... 34 | WAVECAR not read 35 | WARNING: random wavefunctions but no delay for mixing, default for NELMDL 36 | entering main loop 37 | N E dE d eps ncg rms rms(c) 38 | DAV: 1 0.501373945990E+01 0.50137E+01 -0.29779E+03 928 0.375E+02 39 | DAV: 2 -0.105958897286E+02 -0.15610E+02 -0.15034E+02 1248 0.692E+01 40 | DAV: 3 -0.110194895923E+02 -0.42360E+00 -0.42308E+00 1176 0.877E+00 41 | DAV: 4 -0.110218072937E+02 -0.23177E-02 -0.23176E-02 1224 0.833E-01 42 | DAV: 5 -0.110218265792E+02 -0.19285E-04 -0.19285E-04 1224 0.711E-02 0.488E+00 43 | RMM: 6 -0.108967759967E+02 0.12505E+00 -0.28441E-02 935 0.581E-01 0.299E+00 44 | RMM: 7 -0.108398538327E+02 0.56922E-01 -0.61442E-02 952 0.905E-01 0.191E-01 45 | RMM: 8 -0.108408079341E+02 -0.95410E-03 -0.91689E-04 1027 0.133E-01 0.747E-02 46 | RMM: 9 -0.108410240170E+02 -0.21608E-03 -0.17332E-04 1035 0.582E-02 0.572E-02 47 | RMM: 10 -0.108410490228E+02 -0.25006E-04 -0.27208E-05 1049 0.226E-02 0.299E-03 48 | RMM: 11 -0.108410492223E+02 -0.19950E-06 -0.88879E-07 1108 0.428E-03 0.162E-03 49 | RMM: 12 -0.108410494436E+02 -0.22126E-06 -0.25758E-07 1057 0.222E-03 0.132E-03 50 | RMM: 13 -0.108410493880E+02 0.55524E-07 -0.57348E-09 889 0.379E-04 0.292E-04 51 | RMM: 14 -0.108410493877E+02 0.38051E-09 -0.66503E-10 641 0.137E-04 52 | 1 F= -.10841049E+02 E0= -.10841049E+02 d E =0.000000E+00 53 | writing wavefunctions 54 | -------------------------------------------------------------------------------- /Wannier90_Si/02_HSE06-Wavefunctions/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = All 2 | EDIFF = 1.0e-8 3 | ENCUT = 500 4 | ISIF = 2 5 | ISMEAR = -5 6 | KPAR = 2 7 | LCHARG = .FALSE. 8 | LREAL = .FALSE. 9 | NBANDS = 16 10 | NEDOS = 2000 11 | NPAR = 1 12 | PREC = Accurate 13 | SYSTEM = Si 14 | 15 | LHFCALC = .TRUE. 16 | HFSCREEN = 0.2 17 | -------------------------------------------------------------------------------- /Wannier90_Si/02_HSE06-Wavefunctions/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 8x8x8 2 | 0 3 | Gamma 4 | 8 8 8 5 | -------------------------------------------------------------------------------- /Wannier90_Si/02_HSE06-Wavefunctions/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms ort 2 | SDA: 1 -0.125403835104E+02 -0.12540E+02 0.00000E+00 464 0.615E-01 0.000E+00 3 | CGA: 2 -0.125761934974E+02 -0.35810E-01 -0.35430E-01 464 0.107E-01 0.117E-02 4 | CGA: 3 -0.125826867912E+02 -0.64933E-02 -0.63866E-02 464 0.178E-02 0.318E-03 5 | CGA: 4 -0.125838339103E+02 -0.11471E-02 -0.11336E-02 464 0.374E-03 0.384E-04 6 | CGA: 5 -0.125840254694E+02 -0.19156E-03 -0.18891E-03 464 0.392E-04 0.112E-04 7 | CGA: 6 -0.125840475891E+02 -0.22120E-04 -0.21410E-04 464 0.537E-05 0.280E-05 8 | CGA: 7 -0.125840502204E+02 -0.26313E-05 -0.25385E-05 464 0.734E-06 0.588E-06 9 | CGA: 8 -0.125840506197E+02 -0.39931E-06 -0.38290E-06 464 0.112E-06 0.912E-07 10 | CGA: 9 -0.125840506867E+02 -0.67059E-07 -0.51777E-07 464 0.225E-07 0.354E-07 11 | CGA: 10 -0.125840506848E+02 0.18984E-08 -0.35518E-08 464 0.152E-07 0.237E-07 12 | 1 F= -.12584051E+02 E0= -.12584051E+02 d E =0.000000E+00 13 | -------------------------------------------------------------------------------- /Wannier90_Si/02_HSE06-Wavefunctions/POSCAR: -------------------------------------------------------------------------------- 1 | Si 2 | 5.431 3 | 0.5 0.5 0.0 4 | 0.0 0.5 0.5 5 | 0.5 0.0 0.5 6 | Si 7 | 2 8 | Direct 9 | 0.00 0.00 0.00 10 | 0.25 0.25 0.25 11 | -------------------------------------------------------------------------------- /Wannier90_Si/02_HSE06-Wavefunctions/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 16 total cores 2 | distrk: each k-point on 8 cores, 2 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Nov 12 2015 13:14:48) complex 6 | 7 | POSCAR found type information on POSCAR Si 8 | POSCAR found : 1 types and 2 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | LDA part: xc-table for Pade appr. of Perdew 31 | found WAVECAR, reading the header 32 | POSCAR, INCAR and KPOINTS ok, starting setup 33 | WARNING: small aliasing (wrap around) errors must be expected 34 | FFT: planning ... 35 | reading WAVECAR 36 | the WAVECAR file was read successfully 37 | initial charge from wavefunction 38 | entering main loop 39 | 40 | ----------------------------------------------------------------------------- 41 | | | 42 | | W W AA RRRRR N N II N N GGGG !!! | 43 | | W W A A R R NN N II NN N G G !!! | 44 | | W W A A R R N N N II N N N G !!! | 45 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 46 | | WW WW A A R R N NN II N NN G G | 47 | | W W A A R R N N II N N GGGG !!! | 48 | | | 49 | | ALGO=A and IALGO=5X tend to fail with the tetrahedron method | 50 | | (e.g. Bloechls method ISMEAR=-5 is not variational) | 51 | | please switch to IMSEAR=0-n, except for DOS calculations | 52 | | For DOS calculations use IALGO=53 after preconverging with ISMEAR>=0 | 53 | | I HOPE YOU KNOW, WHAT YOU ARE DOING | 54 | | | 55 | ----------------------------------------------------------------------------- 56 | 57 | N E dE d eps ncg rms ort 58 | gam= 0.000 g(H,U,f)= 0.485E-01 0.131E-01 0.369E-05 ort(H,U,f) = 0.000E+00 0.000E+00 0.000E+00 59 | SDA: 1 -0.125403835104E+02 -0.12540E+02 0.00000E+00 464 0.615E-01 0.000E+00 60 | gam= 0.000 trial= 0.400 step= 1.151 mean= 0.400 61 | gam= 0.173 g(H,U,f)= 0.628E-02 0.438E-02 0.513E-06 ort(H,U,f) =-0.550E-02 0.667E-02 0.111E-05 62 | CGA: 2 -0.125761934974E+02 -0.35810E-01 -0.35430E-01 464 0.107E-01 0.117E-02 63 | gam= 0.173 trial= 0.438 step= 1.176 mean= 0.438 64 | gam= 0.167 g(H,U,f)= 0.115E-02 0.630E-03 0.561E-07 ort(H,U,f) =-0.163E-02 0.195E-02 0.231E-06 65 | CGA: 3 -0.125826867912E+02 -0.64933E-02 -0.63866E-02 464 0.178E-02 0.318E-03 66 | gam= 0.167 trial= 0.475 step= 1.238 mean= 0.475 67 | gam= 0.210 g(H,U,f)= 0.315E-03 0.591E-04 0.107E-08 ort(H,U,f) =-0.239E-03 0.277E-03 0.840E-08 68 | CGA: 4 -0.125838339103E+02 -0.11471E-02 -0.11336E-02 464 0.374E-03 0.384E-04 69 | gam= 0.210 trial= 0.513 step= 0.989 mean= 0.513 70 | gam= 0.105 g(H,U,f)= 0.339E-04 0.530E-05 0.147E-08 ort(H,U,f) =-0.216E-04 0.328E-04-0.281E-08 71 | CGA: 5 -0.125840254694E+02 -0.19156E-03 -0.18891E-03 464 0.392E-04 0.112E-04 72 | gam= 0.105 trial= 0.536 step= 1.059 mean= 0.536 73 | gam= 0.137 g(H,U,f)= 0.463E-05 0.742E-06 0.740E-09 ort(H,U,f) =-0.147E-06 0.294E-05 0.792E-09 74 | CGA: 6 -0.125840475891E+02 -0.22120E-04 -0.21410E-04 464 0.537E-05 0.280E-05 75 | gam= 0.137 trial= 0.563 step= 0.883 mean= 0.563 76 | gam= 0.137 g(H,U,f)= 0.558E-06 0.176E-06 0.286E-09 ort(H,U,f) = 0.441E-07 0.543E-06 0.522E-09 77 | CGA: 7 -0.125840502204E+02 -0.26313E-05 -0.25385E-05 464 0.734E-06 0.588E-06 78 | gam= 0.137 trial= 0.579 step= 0.940 mean= 0.579 79 | gam= 0.153 g(H,U,f)= 0.697E-07 0.427E-07 0.859E-10 ort(H,U,f) =-0.317E-07 0.123E-06 0.195E-09 80 | CGA: 8 -0.125840506197E+02 -0.39931E-06 -0.38290E-06 464 0.112E-06 0.912E-07 81 | gam= 0.153 trial= 0.597 step= 0.819 mean= 0.597 82 | gam= 0.200 g(H,U,f)= 0.921E-08 0.133E-07 0.340E-10 ort(H,U,f) = 0.107E-08 0.342E-07 0.800E-10 83 | CGA: 9 -0.125840506867E+02 -0.67059E-07 -0.51777E-07 464 0.225E-07 0.354E-07 84 | gam= 0.200 trial= 0.608 step= 0.240 mean= 0.608 85 | gam= 0.000 g(H,U,f)= 0.531E-08 0.989E-08 0.254E-10 ort(H,U,f) = 0.627E-08 0.174E-07 0.432E-10 86 | CGA: 10 -0.125840506848E+02 0.18984E-08 -0.35518E-08 464 0.152E-07 0.237E-07 87 | gam= 0.000 trial= 0.589 step= 0.216 mean= 0.589 88 | 1 F= -.12584051E+02 E0= -.12584051E+02 d E =0.000000E+00 89 | writing wavefunctions 90 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = All 2 | EDIFF = 1.0e-8 3 | ENCUT = 500 4 | ISIF = 2 5 | ISMEAR = -5 6 | KPAR = 2 7 | LCHARG = .FALSE. 8 | LREAL = .FALSE. 9 | NBANDS = 16 10 | NEDOS = 2000 11 | !NPAR = 1 12 | PREC = Accurate 13 | SYSTEM = Si 14 | 15 | LHFCALC = .TRUE. 16 | HFSCREEN = 0.2 17 | 18 | LWANNIER90 = .TRUE. 19 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 8x8x8 2 | 0 3 | Gamma 4 | 8 8 8 5 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms ort 2 | SDA: 1 -0.125840506819E+02 -0.12584E+02 0.00000E+00 464 0.115E-07 0.000E+00 3 | CGA: 2 -0.125840506824E+02 -0.46612E-09 -0.13165E-08 464 0.885E-08 0.100E-07 4 | 1 F= -.12584051E+02 E0= -.12584051E+02 d E =0.000000E+00 5 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/POSCAR: -------------------------------------------------------------------------------- 1 | Si 2 | 5.431 3 | 0.5 0.5 0.0 4 | 0.0 0.5 0.5 5 | 0.5 0.0 0.5 6 | Si 7 | 2 8 | Direct 9 | 0.00 0.00 0.00 10 | 0.25 0.25 0.25 11 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 8 total cores 2 | distrk: each k-point on 4 cores, 2 groups 3 | distr: one band on 1 cores, 4 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Feb 06 2016 13:21:38) complex 6 | 7 | POSCAR found type information on POSCAR Si 8 | POSCAR found : 1 types and 2 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | For optimal performance we recommend to set | 21 | | NCORE= 4 - approx SQRT( number of cores) | 22 | | NCORE specifies how many cores store one orbital (NPAR=cpu/NCORE). | 23 | | This setting can greatly improve the performance of VASP for DFT. | 24 | | The default, NPAR=number of cores might be grossly inefficient | 25 | | on modern multi-core architectures or massively parallel machines. | 26 | | Do your own testing !!!! | 27 | | Unfortunately you need to use the default for GW and RPA calculations. | 28 | | (for HF NCORE is supported but not extensively tested yet) | 29 | | | 30 | ----------------------------------------------------------------------------- 31 | 32 | 33 | ----------------------------------------------------------------------------- 34 | | | 35 | | W W AA RRRRR N N II N N GGGG !!! | 36 | | W W A A R R NN N II NN N G G !!! | 37 | | W W A A R R N N N II N N N G !!! | 38 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 39 | | WW WW A A R R N NN II N NN G G | 40 | | W W A A R R N N II N N GGGG !!! | 41 | | | 42 | | You have enabled k-point parallelism (KPAR>1). | 43 | | This developmental code was originally written by Paul Kent at ORNL, | 44 | | and carefully double checked in Vienna. | 45 | | GW as well as linear response parallelism added by Martijn Marsman | 46 | | and Georg Kresse. | 47 | | Carefully verify results versus KPAR=1. | 48 | | Report problems to Paul Kent and Vienna. | 49 | | | 50 | ----------------------------------------------------------------------------- 51 | 52 | LDA part: xc-table for Pade appr. of Perdew 53 | found WAVECAR, reading the header 54 | POSCAR, INCAR and KPOINTS ok, starting setup 55 | WARNING: small aliasing (wrap around) errors must be expected 56 | FFT: planning ... 57 | reading WAVECAR 58 | the WAVECAR file was read successfully 59 | initial charge from wavefunction 60 | entering main loop 61 | 62 | ----------------------------------------------------------------------------- 63 | | | 64 | | W W AA RRRRR N N II N N GGGG !!! | 65 | | W W A A R R NN N II NN N G G !!! | 66 | | W W A A R R N N N II N N N G !!! | 67 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 68 | | WW WW A A R R N NN II N NN G G | 69 | | W W A A R R N N II N N GGGG !!! | 70 | | | 71 | | ALGO=A and IALGO=5X tend to fail with the tetrahedron method | 72 | | (e.g. Bloechls method ISMEAR=-5 is not variational) | 73 | | please switch to IMSEAR=0-n, except for DOS calculations | 74 | | For DOS calculations use IALGO=53 after preconverging with ISMEAR>=0 | 75 | | I HOPE YOU KNOW, WHAT YOU ARE DOING | 76 | | | 77 | ----------------------------------------------------------------------------- 78 | 79 | N E dE d eps ncg rms ort 80 | gam= 0.000 g(H,U,f)= 0.313E-08 0.834E-08 0.727E-15 ort(H,U,f) = 0.000E+00 0.000E+00 0.000E+00 81 | SDA: 1 -0.125840506819E+02 -0.12584E+02 0.00000E+00 464 0.115E-07 0.000E+00 82 | gam= 0.000 trial= 0.400 step= 0.230 mean= 0.400 83 | gam= 0.000 g(H,U,f)= 0.190E-08 0.695E-08 0.979E-16 ort(H,U,f) = 0.242E-08 0.761E-08 0.267E-15 84 | CGA: 2 -0.125840506824E+02 -0.46612E-09 -0.13165E-08 464 0.885E-08 0.100E-07 85 | gam= 0.000 trial= 0.391 step= 0.214 mean= 0.391 86 | Projection 1 done. 87 | Projection 2 done. 88 | Projection 3 done. 89 | Projection 4 done. 90 | Projection 5 done. 91 | Projection 6 done. 92 | Projection 7 done. 93 | Projection 8 done. 94 | Projection 9 done. 95 | Projection 10 done. 96 | Projection 11 done. 97 | Projection 12 done. 98 | Projection 13 done. 99 | Projection 14 done. 100 | Projection 15 done. 101 | Projection 16 done. 102 | 1 F= -.12584051E+02 E0= -.12584051E+02 d E =0.000000E+00 103 | writing wavefunctions 104 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/wannier90.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | 5 | guiding_centres=true 6 | 7 | !restart = plot 8 | 9 | !bands_plot = true 10 | 11 | !begin kpoint_path 12 | ! L 0.50000 0.50000 0.50000 G 0.00000 0.00000 0.00000 13 | ! G 0.00000 0.00000 0.00000 X 0.50000 0.00000 0.50000 14 | ! X 0.50000 0.00000 0.50000 W 0.50000 0.25000 0.75000 15 | ! W 0.50000 0.25000 0.75000 G 0.00000 0.00000 0.00000 16 | !end kpoint_path 17 | 18 | !bands_num_points 50 19 | 20 | !bands_plot_format gnuplot xmgrace 21 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/wannier90_band.gnu.ref: -------------------------------------------------------------------------------- 1 | set data style dots 2 | set nokey 3 | set xrange [0: 4.03075] 4 | set yrange [ -8.84559 : 31.32930] 5 | set arrow from 1.00191, -8.84559 to 1.00191, 31.32930 nohead 6 | set arrow from 2.15883, -8.84559 to 2.15883, 31.32930 nohead 7 | set arrow from 2.73728, -8.84559 to 2.73728, 31.32930 nohead 8 | set xtics (" L " 0.00000," G " 1.00191," X " 2.15883," W " 2.73728," G " 4.03075) 9 | plot "wannier90_band.dat" 10 | -------------------------------------------------------------------------------- /Wannier90_Si/03_Wannier90/wannier90_band.kpt.ref: -------------------------------------------------------------------------------- 1 | 203 2 | 0.500000 0.500000 0.500000 1.0 3 | 0.490000 0.490000 0.490000 1.0 4 | 0.480000 0.480000 0.480000 1.0 5 | 0.470000 0.470000 0.470000 1.0 6 | 0.460000 0.460000 0.460000 1.0 7 | 0.450000 0.450000 0.450000 1.0 8 | 0.440000 0.440000 0.440000 1.0 9 | 0.430000 0.430000 0.430000 1.0 10 | 0.420000 0.420000 0.420000 1.0 11 | 0.410000 0.410000 0.410000 1.0 12 | 0.400000 0.400000 0.400000 1.0 13 | 0.390000 0.390000 0.390000 1.0 14 | 0.380000 0.380000 0.380000 1.0 15 | 0.370000 0.370000 0.370000 1.0 16 | 0.360000 0.360000 0.360000 1.0 17 | 0.350000 0.350000 0.350000 1.0 18 | 0.340000 0.340000 0.340000 1.0 19 | 0.330000 0.330000 0.330000 1.0 20 | 0.320000 0.320000 0.320000 1.0 21 | 0.310000 0.310000 0.310000 1.0 22 | 0.300000 0.300000 0.300000 1.0 23 | 0.290000 0.290000 0.290000 1.0 24 | 0.280000 0.280000 0.280000 1.0 25 | 0.270000 0.270000 0.270000 1.0 26 | 0.260000 0.260000 0.260000 1.0 27 | 0.250000 0.250000 0.250000 1.0 28 | 0.240000 0.240000 0.240000 1.0 29 | 0.230000 0.230000 0.230000 1.0 30 | 0.220000 0.220000 0.220000 1.0 31 | 0.210000 0.210000 0.210000 1.0 32 | 0.200000 0.200000 0.200000 1.0 33 | 0.190000 0.190000 0.190000 1.0 34 | 0.180000 0.180000 0.180000 1.0 35 | 0.170000 0.170000 0.170000 1.0 36 | 0.160000 0.160000 0.160000 1.0 37 | 0.150000 0.150000 0.150000 1.0 38 | 0.140000 0.140000 0.140000 1.0 39 | 0.130000 0.130000 0.130000 1.0 40 | 0.120000 0.120000 0.120000 1.0 41 | 0.110000 0.110000 0.110000 1.0 42 | 0.100000 0.100000 0.100000 1.0 43 | 0.090000 0.090000 0.090000 1.0 44 | 0.080000 0.080000 0.080000 1.0 45 | 0.070000 0.070000 0.070000 1.0 46 | 0.060000 0.060000 0.060000 1.0 47 | 0.050000 0.050000 0.050000 1.0 48 | 0.040000 0.040000 0.040000 1.0 49 | 0.030000 0.030000 0.030000 1.0 50 | 0.020000 0.020000 0.020000 1.0 51 | 0.010000 0.010000 0.010000 1.0 52 | 0.000000 0.000000 0.000000 1.0 53 | 0.008621 0.000000 0.008621 1.0 54 | 0.017241 0.000000 0.017241 1.0 55 | 0.025862 0.000000 0.025862 1.0 56 | 0.034483 0.000000 0.034483 1.0 57 | 0.043103 0.000000 0.043103 1.0 58 | 0.051724 0.000000 0.051724 1.0 59 | 0.060345 0.000000 0.060345 1.0 60 | 0.068966 0.000000 0.068966 1.0 61 | 0.077586 0.000000 0.077586 1.0 62 | 0.086207 0.000000 0.086207 1.0 63 | 0.094828 0.000000 0.094828 1.0 64 | 0.103448 0.000000 0.103448 1.0 65 | 0.112069 0.000000 0.112069 1.0 66 | 0.120690 0.000000 0.120690 1.0 67 | 0.129310 0.000000 0.129310 1.0 68 | 0.137931 0.000000 0.137931 1.0 69 | 0.146552 0.000000 0.146552 1.0 70 | 0.155172 0.000000 0.155172 1.0 71 | 0.163793 0.000000 0.163793 1.0 72 | 0.172414 0.000000 0.172414 1.0 73 | 0.181034 0.000000 0.181034 1.0 74 | 0.189655 0.000000 0.189655 1.0 75 | 0.198276 0.000000 0.198276 1.0 76 | 0.206897 0.000000 0.206897 1.0 77 | 0.215517 0.000000 0.215517 1.0 78 | 0.224138 0.000000 0.224138 1.0 79 | 0.232759 0.000000 0.232759 1.0 80 | 0.241379 0.000000 0.241379 1.0 81 | 0.250000 0.000000 0.250000 1.0 82 | 0.258621 0.000000 0.258621 1.0 83 | 0.267241 0.000000 0.267241 1.0 84 | 0.275862 0.000000 0.275862 1.0 85 | 0.284483 0.000000 0.284483 1.0 86 | 0.293103 0.000000 0.293103 1.0 87 | 0.301724 0.000000 0.301724 1.0 88 | 0.310345 0.000000 0.310345 1.0 89 | 0.318966 0.000000 0.318966 1.0 90 | 0.327586 0.000000 0.327586 1.0 91 | 0.336207 0.000000 0.336207 1.0 92 | 0.344828 0.000000 0.344828 1.0 93 | 0.353448 0.000000 0.353448 1.0 94 | 0.362069 0.000000 0.362069 1.0 95 | 0.370690 0.000000 0.370690 1.0 96 | 0.379310 0.000000 0.379310 1.0 97 | 0.387931 0.000000 0.387931 1.0 98 | 0.396552 0.000000 0.396552 1.0 99 | 0.405172 0.000000 0.405172 1.0 100 | 0.413793 0.000000 0.413793 1.0 101 | 0.422414 0.000000 0.422414 1.0 102 | 0.431034 0.000000 0.431034 1.0 103 | 0.439655 0.000000 0.439655 1.0 104 | 0.448276 0.000000 0.448276 1.0 105 | 0.456897 0.000000 0.456897 1.0 106 | 0.465517 0.000000 0.465517 1.0 107 | 0.474138 0.000000 0.474138 1.0 108 | 0.482759 0.000000 0.482759 1.0 109 | 0.491379 0.000000 0.491379 1.0 110 | 0.500000 0.000000 0.500000 1.0 111 | 0.500000 0.008621 0.508621 1.0 112 | 0.500000 0.017241 0.517241 1.0 113 | 0.500000 0.025862 0.525862 1.0 114 | 0.500000 0.034483 0.534483 1.0 115 | 0.500000 0.043103 0.543103 1.0 116 | 0.500000 0.051724 0.551724 1.0 117 | 0.500000 0.060345 0.560345 1.0 118 | 0.500000 0.068966 0.568966 1.0 119 | 0.500000 0.077586 0.577586 1.0 120 | 0.500000 0.086207 0.586207 1.0 121 | 0.500000 0.094828 0.594828 1.0 122 | 0.500000 0.103448 0.603448 1.0 123 | 0.500000 0.112069 0.612069 1.0 124 | 0.500000 0.120690 0.620690 1.0 125 | 0.500000 0.129310 0.629310 1.0 126 | 0.500000 0.137931 0.637931 1.0 127 | 0.500000 0.146552 0.646552 1.0 128 | 0.500000 0.155172 0.655172 1.0 129 | 0.500000 0.163793 0.663793 1.0 130 | 0.500000 0.172414 0.672414 1.0 131 | 0.500000 0.181034 0.681034 1.0 132 | 0.500000 0.189655 0.689655 1.0 133 | 0.500000 0.198276 0.698276 1.0 134 | 0.500000 0.206897 0.706897 1.0 135 | 0.500000 0.215517 0.715517 1.0 136 | 0.500000 0.224138 0.724138 1.0 137 | 0.500000 0.232759 0.732759 1.0 138 | 0.500000 0.241379 0.741379 1.0 139 | 0.500000 0.250000 0.750000 1.0 140 | 0.492308 0.246154 0.738462 1.0 141 | 0.484615 0.242308 0.726923 1.0 142 | 0.476923 0.238462 0.715385 1.0 143 | 0.469231 0.234615 0.703846 1.0 144 | 0.461538 0.230769 0.692308 1.0 145 | 0.453846 0.226923 0.680769 1.0 146 | 0.446154 0.223077 0.669231 1.0 147 | 0.438462 0.219231 0.657692 1.0 148 | 0.430769 0.215385 0.646154 1.0 149 | 0.423077 0.211538 0.634615 1.0 150 | 0.415385 0.207692 0.623077 1.0 151 | 0.407692 0.203846 0.611538 1.0 152 | 0.400000 0.200000 0.600000 1.0 153 | 0.392308 0.196154 0.588462 1.0 154 | 0.384615 0.192308 0.576923 1.0 155 | 0.376923 0.188462 0.565385 1.0 156 | 0.369231 0.184615 0.553846 1.0 157 | 0.361538 0.180769 0.542308 1.0 158 | 0.353846 0.176923 0.530769 1.0 159 | 0.346154 0.173077 0.519231 1.0 160 | 0.338462 0.169231 0.507692 1.0 161 | 0.330769 0.165385 0.496154 1.0 162 | 0.323077 0.161538 0.484615 1.0 163 | 0.315385 0.157692 0.473077 1.0 164 | 0.307692 0.153846 0.461538 1.0 165 | 0.300000 0.150000 0.450000 1.0 166 | 0.292308 0.146154 0.438462 1.0 167 | 0.284615 0.142308 0.426923 1.0 168 | 0.276923 0.138462 0.415385 1.0 169 | 0.269231 0.134615 0.403846 1.0 170 | 0.261538 0.130769 0.392308 1.0 171 | 0.253846 0.126923 0.380769 1.0 172 | 0.246154 0.123077 0.369231 1.0 173 | 0.238462 0.119231 0.357692 1.0 174 | 0.230769 0.115385 0.346154 1.0 175 | 0.223077 0.111538 0.334615 1.0 176 | 0.215385 0.107692 0.323077 1.0 177 | 0.207692 0.103846 0.311538 1.0 178 | 0.200000 0.100000 0.300000 1.0 179 | 0.192308 0.096154 0.288462 1.0 180 | 0.184615 0.092308 0.276923 1.0 181 | 0.176923 0.088462 0.265385 1.0 182 | 0.169231 0.084615 0.253846 1.0 183 | 0.161538 0.080769 0.242308 1.0 184 | 0.153846 0.076923 0.230769 1.0 185 | 0.146154 0.073077 0.219231 1.0 186 | 0.138462 0.069231 0.207692 1.0 187 | 0.130769 0.065385 0.196154 1.0 188 | 0.123077 0.061538 0.184615 1.0 189 | 0.115385 0.057692 0.173077 1.0 190 | 0.107692 0.053846 0.161538 1.0 191 | 0.100000 0.050000 0.150000 1.0 192 | 0.092308 0.046154 0.138462 1.0 193 | 0.084615 0.042308 0.126923 1.0 194 | 0.076923 0.038462 0.115385 1.0 195 | 0.069231 0.034615 0.103846 1.0 196 | 0.061538 0.030769 0.092308 1.0 197 | 0.053846 0.026923 0.080769 1.0 198 | 0.046154 0.023077 0.069231 1.0 199 | 0.038462 0.019231 0.057692 1.0 200 | 0.030769 0.015385 0.046154 1.0 201 | 0.023077 0.011538 0.034615 1.0 202 | 0.015385 0.007692 0.023077 1.0 203 | 0.007692 0.003846 0.011538 1.0 204 | 0.000000 0.000000 0.000000 1.0 205 | -------------------------------------------------------------------------------- /Wannier90_Si/README.md: -------------------------------------------------------------------------------- 1 | Wannier90_Si 2 | ============ 3 | 4 | Input files to calculate an electronic band structure for Si using the VASP Wannier90 interface and the HSE06 hybrid functional. 5 | 6 | Running the example 7 | ------------------- 8 | 9 | **Note:** You will need to obtain a PBE PAW pseudopotential (`POTCAR` file) for Si from the VASP database to run these calculations. You can also use an LDA potential and set `GGA = PE` in the `INCAR` files. 10 | 11 | 1. Calculate the wavefunctions at the PBE (GGA) level. 12 | 13 | 2. Copy the `WAVECAR` file from the first step, and recalculate the wavefunctions using the HSE06. 14 | 15 | 3. This part involves three separate steps: 16 | 17 | * Copy the `WAVECAR` file from #2 and re-run VASP with `LWANNIER90 = .TRUE.`; VASP will generate several files needed by Wannier90, and will add missing information to the `wannier90.win` file. 18 | 19 | * Run Wannier90 with e.g. `wannier90.x wannier90` to calculate the maximally-localised Wannier functions and write the checkpoint file `wannier90.chk`. 20 | 21 | * Uncomment the band-structure tags in `wannier90.win` and re-run Wannier90; the band structure data will be written to `wannier90_band.dat` and `wannier90_band.kpt`, along with scripts for Gnuplot and Grace (`wannier90_band.gnu`, `wannier90_band.agr`). 22 | 23 | Links 24 | ----- 25 | 26 | - [http://www.slideshare.net/jmskelton/vasp-and-wannier90-a-quick-tutorial](http://www.slideshare.net/jmskelton/vasp-and-wannier90-a-quick-tutorial): A brief overview of using the Wannier90 interface with VASP. 27 | 28 | - [http://cms.mpi.univie.ac.at/wiki/index.php/Si_bandstructure](http://cms.mpi.univie.ac.at/wiki/index.php/Si_bandstructure): VASP Wiki page on calculating the Si band structure using various approaches, including via the Wannier90 interface. 29 | 30 | - [http://wannier.org/user_guide.html](http://wannier.org/user_guide.html): Wannier90 user-guide pages with links to a PDF manual and tutorial. 31 | -------------------------------------------------------------------------------- /Wannier90_SnS2/01_Optimisation/CONTCAR.ref: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/01_Optimisation/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = Normal 2 | EDIFF = 1E-8 3 | EDIFFG = -1E-2 4 | ENCUT = 550 5 | GGA = PS 6 | IBRION = 2 7 | ISIF = 2 8 | ISMEAR = 0 9 | IVDW = 11 10 | KPAR = 4 11 | LASPH = .TRUE. 12 | LCHARG = .FALSE. 13 | LREAL = .FALSE. 14 | LWAVE = .FALSE. 15 | NELMIN = 5 16 | NPAR = 1 17 | NSW = 500 18 | PREC = Accurate 19 | SIGMA = 0.01 20 | SYSTEM = SnS2 21 | -------------------------------------------------------------------------------- /Wannier90_SnS2/01_Optimisation/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 8x8x6 2 | 0 3 | Gamma 4 | 8 8 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/01_Optimisation/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | DAV: 1 0.214266339004E+03 0.21427E+03 -0.13173E+04 1709 0.188E+03 3 | DAV: 2 0.103043188225E+02 -0.20396E+03 -0.20024E+03 1888 0.424E+02 4 | DAV: 3 -0.121874368798E+02 -0.22492E+02 -0.21882E+02 2174 0.129E+02 5 | DAV: 4 -0.129095193910E+02 -0.72208E+00 -0.72080E+00 2202 0.242E+01 6 | DAV: 5 -0.129287686569E+02 -0.19249E-01 -0.19245E-01 2728 0.379E+00 0.362E+00 7 | DAV: 6 -0.124148125457E+02 0.51396E+00 -0.10528E+00 2493 0.133E+01 0.170E+00 8 | DAV: 7 -0.123565070551E+02 0.58305E-01 -0.28572E-01 2374 0.428E+00 0.659E-01 9 | DAV: 8 -0.123529835189E+02 0.35235E-02 -0.23337E-02 2220 0.178E+00 0.164E-01 10 | DAV: 9 -0.123529881635E+02 -0.46447E-05 -0.20710E-03 2691 0.572E-01 0.444E-02 11 | DAV: 10 -0.123530295657E+02 -0.41402E-04 -0.30934E-04 2129 0.138E-01 0.135E-02 12 | DAV: 11 -0.123530413483E+02 -0.11783E-04 -0.44015E-05 2267 0.519E-02 0.373E-03 13 | DAV: 12 -0.123530421586E+02 -0.81024E-06 -0.46125E-06 2296 0.183E-02 0.226E-03 14 | DAV: 13 -0.123530422071E+02 -0.48535E-07 -0.26287E-06 2521 0.194E-02 0.111E-03 15 | DAV: 14 -0.123530422032E+02 0.38895E-08 -0.24196E-07 2224 0.483E-03 0.432E-04 16 | DAV: 15 -0.123530421716E+02 0.31635E-07 -0.79870E-08 2099 0.264E-03 0.177E-04 17 | DAV: 16 -0.123530421728E+02 -0.11919E-08 -0.62635E-09 1607 0.593E-04 18 | 1 F= -.12800302E+02 E0= -.12800302E+02 d E =-.128003E+02 19 | N E dE d eps ncg rms rms(c) 20 | DAV: 1 -0.125568907196E+02 -0.20385E+00 -0.25767E+01 1704 0.243E+01 0.903E-01 21 | DAV: 2 -0.126849591326E+02 -0.12807E+00 -0.14867E+00 2270 0.726E+00 0.465E-01 22 | DAV: 3 -0.126800676435E+02 0.48915E-02 -0.21855E-02 2133 0.114E+00 0.298E-01 23 | DAV: 4 -0.126777553428E+02 0.23123E-02 -0.12235E-02 2172 0.638E-01 0.813E-02 24 | DAV: 5 -0.126777902336E+02 -0.34891E-04 -0.19147E-03 1965 0.314E-01 0.308E-02 25 | DAV: 6 -0.126777902556E+02 -0.22050E-07 -0.70281E-05 2395 0.666E-02 0.166E-02 26 | DAV: 7 -0.126777834790E+02 0.67767E-05 -0.42401E-05 1955 0.459E-02 0.289E-03 27 | DAV: 8 -0.126777839325E+02 -0.45353E-06 -0.52820E-06 2279 0.171E-02 0.255E-03 28 | DAV: 9 -0.126777839056E+02 0.26912E-07 -0.47851E-07 2160 0.462E-03 0.101E-03 29 | DAV: 10 -0.126777839957E+02 -0.90125E-07 -0.25040E-07 2237 0.314E-03 0.144E-04 30 | DAV: 11 -0.126777840069E+02 -0.11221E-07 -0.10673E-08 1343 0.734E-04 0.214E-04 31 | DAV: 12 -0.126777839956E+02 0.11360E-07 -0.23254E-09 1142 0.442E-04 0.867E-05 32 | DAV: 13 -0.126777839861E+02 0.95024E-08 -0.21982E-09 1037 0.285E-04 33 | 2 F= -.13134512E+02 E0= -.13134512E+02 d E =-.334210E+00 34 | N E dE d eps ncg rms rms(c) 35 | DAV: 1 -0.126895855484E+02 -0.11802E-01 -0.11921E+01 1703 0.162E+01 0.616E-01 36 | DAV: 2 -0.127452516123E+02 -0.55666E-01 -0.65555E-01 2258 0.478E+00 0.294E-01 37 | DAV: 3 -0.127431647368E+02 0.20869E-02 -0.91737E-03 2059 0.732E-01 0.185E-01 38 | DAV: 4 -0.127423208409E+02 0.84390E-03 -0.46891E-03 2226 0.386E-01 0.513E-02 39 | DAV: 5 -0.127423243853E+02 -0.35444E-05 -0.67132E-04 1959 0.180E-01 0.197E-02 40 | DAV: 6 -0.127423235996E+02 0.78571E-06 -0.29004E-05 2411 0.398E-02 0.999E-03 41 | DAV: 7 -0.127423215658E+02 0.20338E-05 -0.17595E-05 1965 0.296E-02 0.204E-03 42 | DAV: 8 -0.127423216503E+02 -0.84543E-07 -0.18271E-06 2246 0.100E-02 0.175E-03 43 | DAV: 9 -0.127423216278E+02 0.22522E-07 -0.24493E-07 2068 0.311E-03 0.661E-04 44 | DAV: 10 -0.127423216946E+02 -0.66845E-07 -0.14869E-07 2204 0.235E-03 0.159E-04 45 | DAV: 11 -0.127423216968E+02 -0.21787E-08 -0.40269E-09 1131 0.499E-04 46 | 3 F= -.13203199E+02 E0= -.13203199E+02 d E =-.402898E+00 47 | N E dE d eps ncg rms rms(c) 48 | DAV: 1 -0.127422299836E+02 0.91711E-04 -0.31322E-02 1706 0.814E-01 0.310E-02 49 | DAV: 2 -0.127423629220E+02 -0.13294E-03 -0.15843E-03 2243 0.235E-01 0.139E-02 50 | DAV: 3 -0.127423577642E+02 0.51578E-05 -0.20037E-05 2099 0.343E-02 0.864E-03 51 | DAV: 4 -0.127423555059E+02 0.22583E-05 -0.11079E-05 2194 0.186E-02 0.221E-03 52 | DAV: 5 -0.127423553930E+02 0.11289E-06 -0.16415E-06 1952 0.847E-03 0.103E-03 53 | DAV: 6 -0.127423552690E+02 0.12402E-06 -0.71941E-08 2480 0.193E-03 0.479E-04 54 | DAV: 7 -0.127423552505E+02 0.18451E-07 -0.37865E-08 1730 0.131E-03 0.102E-04 55 | DAV: 8 -0.127423552476E+02 0.29459E-08 -0.37310E-09 1082 0.485E-04 56 | 4 F= -.13203369E+02 E0= -.13203369E+02 d E =-.403067E+00 57 | -------------------------------------------------------------------------------- /Wannier90_SnS2/01_Optimisation/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.0 3 | 3.651000 0.000000 0.000000 4 | -1.825500 3.161859 0.000000 5 | 0.000000 0.000000 6.015000 6 | Sn S 7 | 1 2 8 | Direct 9 | 0.000000 0.000000 0.0000000 10 | 0.333333 0.666666 0.2145598 11 | 0.666666 0.333333 0.7854409 12 | -------------------------------------------------------------------------------- /Wannier90_SnS2/01_Optimisation/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 8 cores, 4 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Nov 12 2015 13:14:48) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | 31 | ----------------------------------------------------------------------------- 32 | | | 33 | | ADVICE TO THIS USER RUNNING 'VASP/VAMP' (HEAR YOUR MASTER'S VOICE ...): | 34 | | | 35 | | You enforced a specific xc-type in the INCAR file, | 36 | | a different type was found on the POTCAR file | 37 | | I HOPE YOU KNOW, WHAT YOU ARE DOING | 38 | | | 39 | ----------------------------------------------------------------------------- 40 | 41 | LDA part: xc-table for Pade appr. of Perdew 42 | POSCAR, INCAR and KPOINTS ok, starting setup 43 | WARNING: small aliasing (wrap around) errors must be expected 44 | FFT: planning ... 45 | WAVECAR not read 46 | WARNING: random wavefunctions but no delay for mixing, default for NELMDL 47 | entering main loop 48 | N E dE d eps ncg rms rms(c) 49 | DAV: 1 0.214266339004E+03 0.21427E+03 -0.13173E+04 1709 0.188E+03 50 | DAV: 2 0.103043188225E+02 -0.20396E+03 -0.20024E+03 1888 0.424E+02 51 | DAV: 3 -0.121874368798E+02 -0.22492E+02 -0.21882E+02 2174 0.129E+02 52 | DAV: 4 -0.129095193910E+02 -0.72208E+00 -0.72080E+00 2202 0.242E+01 53 | DAV: 5 -0.129287686569E+02 -0.19249E-01 -0.19245E-01 2728 0.379E+00 0.362E+00 54 | DAV: 6 -0.124148125457E+02 0.51396E+00 -0.10528E+00 2493 0.133E+01 0.170E+00 55 | DAV: 7 -0.123565070551E+02 0.58305E-01 -0.28572E-01 2374 0.428E+00 0.659E-01 56 | DAV: 8 -0.123529835189E+02 0.35235E-02 -0.23337E-02 2220 0.178E+00 0.164E-01 57 | DAV: 9 -0.123529881635E+02 -0.46447E-05 -0.20710E-03 2691 0.572E-01 0.444E-02 58 | DAV: 10 -0.123530295657E+02 -0.41402E-04 -0.30934E-04 2129 0.138E-01 0.135E-02 59 | DAV: 11 -0.123530413483E+02 -0.11783E-04 -0.44015E-05 2267 0.519E-02 0.373E-03 60 | DAV: 12 -0.123530421586E+02 -0.81024E-06 -0.46125E-06 2296 0.183E-02 0.226E-03 61 | DAV: 13 -0.123530422071E+02 -0.48535E-07 -0.26287E-06 2521 0.194E-02 0.111E-03 62 | DAV: 14 -0.123530422032E+02 0.38895E-08 -0.24196E-07 2224 0.483E-03 0.432E-04 63 | DAV: 15 -0.123530421716E+02 0.31635E-07 -0.79870E-08 2099 0.264E-03 0.177E-04 64 | DAV: 16 -0.123530421728E+02 -0.11919E-08 -0.62635E-09 1607 0.593E-04 65 | 1 F= -.12800302E+02 E0= -.12800302E+02 d E =-.128003E+02 66 | curvature: 0.00 expect dE= 0.000E+00 dE for cont linesearch 0.000E+00 67 | trial: gam= 0.00000 g(F)= 0.476E+00 g(S)= 0.000E+00 ort = 0.000E+00 (trialstep = 0.100E+01) 68 | search vector abs. value= 0.476E+00 69 | bond charge predicted 70 | N E dE d eps ncg rms rms(c) 71 | DAV: 1 -0.125568907196E+02 -0.20385E+00 -0.25767E+01 1704 0.243E+01 0.903E-01 72 | DAV: 2 -0.126849591326E+02 -0.12807E+00 -0.14867E+00 2270 0.726E+00 0.465E-01 73 | DAV: 3 -0.126800676435E+02 0.48915E-02 -0.21855E-02 2133 0.114E+00 0.298E-01 74 | DAV: 4 -0.126777553428E+02 0.23123E-02 -0.12235E-02 2172 0.638E-01 0.813E-02 75 | DAV: 5 -0.126777902336E+02 -0.34891E-04 -0.19147E-03 1965 0.314E-01 0.308E-02 76 | DAV: 6 -0.126777902556E+02 -0.22050E-07 -0.70281E-05 2395 0.666E-02 0.166E-02 77 | DAV: 7 -0.126777834790E+02 0.67767E-05 -0.42401E-05 1955 0.459E-02 0.289E-03 78 | DAV: 8 -0.126777839325E+02 -0.45353E-06 -0.52820E-06 2279 0.171E-02 0.255E-03 79 | DAV: 9 -0.126777839056E+02 0.26912E-07 -0.47851E-07 2160 0.462E-03 0.101E-03 80 | DAV: 10 -0.126777839957E+02 -0.90125E-07 -0.25040E-07 2237 0.314E-03 0.144E-04 81 | DAV: 11 -0.126777840069E+02 -0.11221E-07 -0.10673E-08 1343 0.734E-04 0.214E-04 82 | DAV: 12 -0.126777839956E+02 0.11360E-07 -0.23254E-09 1142 0.442E-04 0.867E-05 83 | DAV: 13 -0.126777839861E+02 0.95024E-08 -0.21982E-09 1037 0.285E-04 84 | 2 F= -.13134512E+02 E0= -.13134512E+02 d E =-.334210E+00 85 | trial-energy change: -0.334210 1 .order -0.334929 -0.476335 -0.193524 86 | step: 1.6843(harm= 1.6843) dis= 0.18054 next Energy= -13.201445 (dE=-0.401E+00) 87 | bond charge predicted 88 | N E dE d eps ncg rms rms(c) 89 | DAV: 1 -0.126895855484E+02 -0.11802E-01 -0.11921E+01 1703 0.162E+01 0.616E-01 90 | DAV: 2 -0.127452516123E+02 -0.55666E-01 -0.65555E-01 2258 0.478E+00 0.294E-01 91 | DAV: 3 -0.127431647368E+02 0.20869E-02 -0.91737E-03 2059 0.732E-01 0.185E-01 92 | DAV: 4 -0.127423208409E+02 0.84390E-03 -0.46891E-03 2226 0.386E-01 0.513E-02 93 | DAV: 5 -0.127423243853E+02 -0.35444E-05 -0.67132E-04 1959 0.180E-01 0.197E-02 94 | DAV: 6 -0.127423235996E+02 0.78571E-06 -0.29004E-05 2411 0.398E-02 0.999E-03 95 | DAV: 7 -0.127423215658E+02 0.20338E-05 -0.17595E-05 1965 0.296E-02 0.204E-03 96 | DAV: 8 -0.127423216503E+02 -0.84543E-07 -0.18271E-06 2246 0.100E-02 0.175E-03 97 | DAV: 9 -0.127423216278E+02 0.22522E-07 -0.24493E-07 2068 0.311E-03 0.661E-04 98 | DAV: 10 -0.127423216946E+02 -0.66845E-07 -0.14869E-07 2204 0.235E-03 0.159E-04 99 | DAV: 11 -0.127423216968E+02 -0.21787E-08 -0.40269E-09 1131 0.499E-04 100 | 3 F= -.13203199E+02 E0= -.13203199E+02 d E =-.402898E+00 101 | curvature: -0.84 expect dE=-0.158E-03 dE for cont linesearch -0.158E-03 102 | ZBRENT: extrapolating 103 | opt : 1.7194 next Energy= -13.203365 (dE=-0.403E+00) 104 | bond charge predicted 105 | N E dE d eps ncg rms rms(c) 106 | DAV: 1 -0.127422299836E+02 0.91711E-04 -0.31322E-02 1706 0.814E-01 0.310E-02 107 | DAV: 2 -0.127423629220E+02 -0.13294E-03 -0.15843E-03 2243 0.235E-01 0.139E-02 108 | DAV: 3 -0.127423577642E+02 0.51578E-05 -0.20037E-05 2099 0.343E-02 0.864E-03 109 | DAV: 4 -0.127423555059E+02 0.22583E-05 -0.11079E-05 2194 0.186E-02 0.221E-03 110 | DAV: 5 -0.127423553930E+02 0.11289E-06 -0.16415E-06 1952 0.847E-03 0.103E-03 111 | DAV: 6 -0.127423552690E+02 0.12402E-06 -0.71941E-08 2480 0.193E-03 0.479E-04 112 | DAV: 7 -0.127423552505E+02 0.18451E-07 -0.37865E-08 1730 0.131E-03 0.102E-04 113 | DAV: 8 -0.127423552476E+02 0.29459E-08 -0.37310E-09 1082 0.485E-04 114 | 4 F= -.13203369E+02 E0= -.13203369E+02 d E =-.403067E+00 115 | curvature: -0.89 expect dE=-0.243E-06 dE for cont linesearch -0.243E-06 116 | trial: gam=-0.00076 g(F)= 0.275E-06 g(S)= 0.000E+00 ort = 0.362E-03 (trialstep = 0.114E+01) 117 | search vector abs. value= 0.100E-09 118 | reached required accuracy - stopping structural energy minimisation 119 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = Normal 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 8 8 | LASPH = .TRUE. 9 | LCHARG = .FALSE. 10 | LREAL = .FALSE. 11 | LWAVE = .FALSE. 12 | NBANDS = 64 13 | NELMIN = 5 14 | !NPAR = 1 15 | NSW = 0 16 | PREC = Accurate 17 | SYSTEM = SnS2 18 | 19 | LWANNIER90 = .TRUE. 20 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | DAV: 1 0.213919533614E+03 0.21392E+03 -0.69866E+03 5736 0.414E+02 3 | DAV: 2 0.151360158465E+02 -0.19878E+03 -0.17738E+03 4808 0.195E+02 4 | DAV: 3 -0.130266365051E+02 -0.28163E+02 -0.27658E+02 5208 0.453E+01 5 | DAV: 4 -0.138472226349E+02 -0.82059E+00 -0.81978E+00 5120 0.791E+00 6 | DAV: 5 -0.138556746890E+02 -0.84521E-02 -0.84514E-02 5792 0.801E-01 0.350E+00 7 | DAV: 6 -0.133772672519E+02 0.47841E+00 -0.36180E-01 6552 0.325E+00 0.157E+00 8 | DAV: 7 -0.133466462304E+02 0.30621E-01 -0.82286E-02 5816 0.806E-01 0.724E-01 9 | DAV: 8 -0.133474605199E+02 -0.81429E-03 -0.12263E-02 5288 0.353E-01 0.210E-01 10 | DAV: 9 -0.133479504717E+02 -0.48995E-03 -0.89740E-04 5136 0.866E-02 0.376E-02 11 | DAV: 10 -0.133479984988E+02 -0.48027E-04 -0.11049E-04 5184 0.265E-02 0.139E-02 12 | DAV: 11 -0.133480087432E+02 -0.10244E-04 -0.74901E-06 5008 0.122E-02 0.359E-03 13 | DAV: 12 -0.133480107788E+02 -0.20357E-05 -0.24934E-06 5120 0.537E-03 0.108E-03 14 | DAV: 13 -0.133480109061E+02 -0.12727E-06 -0.14009E-07 5200 0.111E-03 0.532E-04 15 | DAV: 14 -0.133480108053E+02 0.10081E-06 -0.35106E-08 5024 0.611E-04 0.208E-04 16 | DAV: 15 -0.133480108112E+02 -0.58421E-08 -0.22844E-09 4984 0.124E-04 17 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 4 cores, 8 groups 3 | distr: one band on 1 cores, 4 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Feb 06 2016 13:21:38) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | For optimal performance we recommend to set | 21 | | NCORE= 4 - approx SQRT( number of cores) | 22 | | NCORE specifies how many cores store one orbital (NPAR=cpu/NCORE). | 23 | | This setting can greatly improve the performance of VASP for DFT. | 24 | | The default, NPAR=number of cores might be grossly inefficient | 25 | | on modern multi-core architectures or massively parallel machines. | 26 | | Do your own testing !!!! | 27 | | Unfortunately you need to use the default for GW and RPA calculations. | 28 | | (for HF NCORE is supported but not extensively tested yet) | 29 | | | 30 | ----------------------------------------------------------------------------- 31 | 32 | 33 | ----------------------------------------------------------------------------- 34 | | | 35 | | W W AA RRRRR N N II N N GGGG !!! | 36 | | W W A A R R NN N II NN N G G !!! | 37 | | W W A A R R N N N II N N N G !!! | 38 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 39 | | WW WW A A R R N NN II N NN G G | 40 | | W W A A R R N N II N N GGGG !!! | 41 | | | 42 | | You have enabled k-point parallelism (KPAR>1). | 43 | | This developmental code was originally written by Paul Kent at ORNL, | 44 | | and carefully double checked in Vienna. | 45 | | GW as well as linear response parallelism added by Martijn Marsman | 46 | | and Georg Kresse. | 47 | | Carefully verify results versus KPAR=1. | 48 | | Report problems to Paul Kent and Vienna. | 49 | | | 50 | ----------------------------------------------------------------------------- 51 | 52 | LDA part: xc-table for Pade appr. of Perdew 53 | POSCAR, INCAR and KPOINTS ok, starting setup 54 | WARNING: small aliasing (wrap around) errors must be expected 55 | FFT: planning ... 56 | WAVECAR not read 57 | entering main loop 58 | N E dE d eps ncg rms rms(c) 59 | DAV: 1 0.213919533614E+03 0.21392E+03 -0.69866E+03 5736 0.414E+02 60 | DAV: 2 0.151360158465E+02 -0.19878E+03 -0.17738E+03 4808 0.195E+02 61 | DAV: 3 -0.130266365051E+02 -0.28163E+02 -0.27658E+02 5208 0.453E+01 62 | DAV: 4 -0.138472226349E+02 -0.82059E+00 -0.81978E+00 5120 0.791E+00 63 | DAV: 5 -0.138556746890E+02 -0.84521E-02 -0.84514E-02 5792 0.801E-01 0.350E+00 64 | DAV: 6 -0.133772672519E+02 0.47841E+00 -0.36180E-01 6552 0.325E+00 0.157E+00 65 | DAV: 7 -0.133466462304E+02 0.30621E-01 -0.82286E-02 5816 0.806E-01 0.724E-01 66 | DAV: 8 -0.133474605199E+02 -0.81429E-03 -0.12263E-02 5288 0.353E-01 0.210E-01 67 | DAV: 9 -0.133479504717E+02 -0.48995E-03 -0.89740E-04 5136 0.866E-02 0.376E-02 68 | DAV: 10 -0.133479984988E+02 -0.48027E-04 -0.11049E-04 5184 0.265E-02 0.139E-02 69 | DAV: 11 -0.133480087432E+02 -0.10244E-04 -0.74901E-06 5008 0.122E-02 0.359E-03 70 | DAV: 12 -0.133480107788E+02 -0.20357E-05 -0.24934E-06 5120 0.537E-03 0.108E-03 71 | DAV: 13 -0.133480109061E+02 -0.12727E-06 -0.14009E-07 5200 0.111E-03 0.532E-04 72 | DAV: 14 -0.133480108053E+02 0.10081E-06 -0.35106E-08 5024 0.611E-04 0.208E-04 73 | DAV: 15 -0.133480108112E+02 -0.58421E-08 -0.22844E-09 4984 0.124E-04 74 | Projection 1 done. 75 | Projection 2 done. 76 | Projection 3 done. 77 | Projection 4 done. 78 | Projection 5 done. 79 | Projection 6 done. 80 | Projection 7 done. 81 | Projection 8 done. 82 | Projection 9 done. 83 | Projection 10 done. 84 | Projection 11 done. 85 | Projection 12 done. 86 | Projection 13 done. 87 | Projection 14 done. 88 | Projection 15 done. 89 | Projection 16 done. 90 | Projection 17 done. 91 | Projection 18 done. 92 | Projection 19 done. 93 | Projection 20 done. 94 | Projection 21 done. 95 | Projection 22 done. 96 | Projection 23 done. 97 | Projection 24 done. 98 | Projection 25 done. 99 | Projection 26 done. 100 | Projection 27 done. 101 | Projection 28 done. 102 | Projection 29 done. 103 | Projection 30 done. 104 | Projection 31 done. 105 | Projection 32 done. 106 | Projection 33 done. 107 | Projection 34 done. 108 | Projection 35 done. 109 | Projection 36 done. 110 | Projection 37 done. 111 | Projection 38 done. 112 | Projection 39 done. 113 | Projection 40 done. 114 | Projection 41 done. 115 | Projection 42 done. 116 | Projection 43 done. 117 | Projection 44 done. 118 | Projection 45 done. 119 | Projection 46 done. 120 | Projection 47 done. 121 | Projection 48 done. 122 | Projection 49 done. 123 | Projection 50 done. 124 | Projection 51 done. 125 | Projection 52 done. 126 | Projection 53 done. 127 | Projection 54 done. 128 | Projection 55 done. 129 | Projection 56 done. 130 | Projection 57 done. 131 | Projection 58 done. 132 | Projection 59 done. 133 | Projection 60 done. 134 | Projection 61 done. 135 | Projection 62 done. 136 | Projection 63 done. 137 | Projection 64 done. 138 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 139 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/wannier90-dos.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | 5 | num_wann = 64 ! set to NBANDS by VASP 6 | 7 | kmesh = 32 32 24 8 | 9 | adpt_smr = .true. 10 | smr_type = 'gauss' 11 | 12 | dos = .true. 13 | dos_task = 'dos_plot' 14 | 15 | begin unit_cell_cart 16 | 3.6510000 0.0000000 0.0000000 17 | -1.8255000 3.1618590 0.0000000 18 | 0.0000000 0.0000000 6.0150000 19 | end unit_cell_cart 20 | 21 | begin atoms_cart 22 | Sn 0.0000000 0.0000000 0.0000000 23 | S 0.0000000 2.1079039 1.4748826 24 | S 1.8254982 1.0539519 4.5401216 25 | end atoms_cart 26 | 27 | mp_grid = 6 6 6 28 | 29 | begin kpoints 30 | 0.000000000000 0.000000000000 0.000000000000 31 | 0.166666666667 -0.000000000000 0.000000000000 32 | 0.333333333333 0.000000000000 0.000000000000 33 | 0.500000000000 -0.000000000000 0.000000000000 34 | 0.166666666667 0.166666666667 0.000000000000 35 | 0.333333333333 0.166666666667 0.000000000000 36 | 0.333333333333 0.333333333333 0.000000000000 37 | 0.000000000000 0.000000000000 0.166666666667 38 | 0.166666666667 -0.000000000000 0.166666666667 39 | 0.333333333333 0.000000000000 0.166666666667 40 | 0.500000000000 -0.000000000000 0.166666666667 41 | -0.333333333333 -0.000000000000 0.166666666667 42 | -0.166666666667 0.000000000000 0.166666666667 43 | 0.166666666667 0.166666666667 0.166666666667 44 | 0.333333333333 0.166666666667 0.166666666667 45 | 0.500000000000 0.166666666667 0.166666666667 46 | 0.333333333333 0.333333333333 0.166666666667 47 | 0.000000000000 0.000000000000 0.333333333333 48 | 0.166666666667 -0.000000000000 0.333333333333 49 | 0.333333333333 0.000000000000 0.333333333333 50 | 0.500000000000 -0.000000000000 0.333333333333 51 | -0.333333333333 -0.000000000000 0.333333333333 52 | -0.166666666667 0.000000000000 0.333333333333 53 | 0.166666666667 0.166666666667 0.333333333333 54 | 0.333333333333 0.166666666667 0.333333333333 55 | 0.500000000000 0.166666666667 0.333333333333 56 | 0.333333333333 0.333333333333 0.333333333333 57 | 0.000000000000 0.000000000000 0.500000000000 58 | 0.166666666667 -0.000000000000 0.500000000000 59 | 0.333333333333 0.000000000000 0.500000000000 60 | 0.500000000000 -0.000000000000 0.500000000000 61 | 0.166666666667 0.166666666667 0.500000000000 62 | 0.333333333333 0.166666666667 0.500000000000 63 | 0.333333333333 0.333333333333 0.500000000000 64 | -0.166666666667 0.000000000000 0.000000000000 65 | -0.166666666667 0.166666666667 0.000000000000 66 | 0.166666666667 -0.166666666667 0.000000000000 67 | -0.000000000000 -0.166666666667 0.000000000000 68 | 0.000000000000 0.166666666667 0.000000000000 69 | -0.333333333333 -0.000000000000 0.000000000000 70 | -0.333333333333 0.333333333333 0.000000000000 71 | 0.333333333333 -0.333333333333 0.000000000000 72 | 0.000000000000 -0.333333333333 0.000000000000 73 | -0.000000000000 0.333333333333 0.000000000000 74 | -0.500000000000 0.500000000000 0.000000000000 75 | -0.000000000000 -0.500000000000 0.000000000000 76 | -0.166666666667 -0.166666666667 0.000000000000 77 | -0.333333333333 0.166666666667 0.000000000000 78 | 0.333333333333 -0.166666666667 0.000000000000 79 | 0.166666666667 -0.333333333333 0.000000000000 80 | -0.166666666667 0.333333333333 0.000000000000 81 | -0.333333333333 -0.166666666667 0.000000000000 82 | -0.500000000000 0.333333333333 0.000000000000 83 | 0.500000000000 -0.333333333333 0.000000000000 84 | 0.166666666667 -0.500000000000 0.000000000000 85 | -0.166666666667 0.500000000000 0.000000000000 86 | 0.333333333333 -0.500000000000 0.000000000000 87 | -0.333333333333 0.500000000000 0.000000000000 88 | -0.500000000000 0.166666666667 0.000000000000 89 | 0.500000000000 -0.166666666667 0.000000000000 90 | 0.166666666667 0.333333333333 0.000000000000 91 | -0.166666666667 -0.333333333333 0.000000000000 92 | -0.333333333333 -0.333333333333 0.000000000000 93 | 0.000000000000 0.000000000000 -0.166666666667 94 | -0.166666666667 0.000000000000 -0.166666666667 95 | -0.166666666667 0.166666666667 0.166666666667 96 | 0.166666666667 -0.166666666667 -0.166666666667 97 | -0.000000000000 -0.166666666667 0.166666666667 98 | 0.000000000000 0.166666666667 -0.166666666667 99 | -0.333333333333 -0.000000000000 -0.166666666667 100 | -0.333333333333 0.333333333333 0.166666666667 101 | 0.333333333333 -0.333333333333 -0.166666666667 102 | 0.000000000000 -0.333333333333 0.166666666667 103 | -0.000000000000 0.333333333333 -0.166666666667 104 | -0.500000000000 0.000000000000 -0.166666666667 105 | -0.500000000000 0.500000000000 0.166666666667 106 | 0.500000000000 -0.500000000000 -0.166666666667 107 | -0.000000000000 -0.500000000000 0.166666666667 108 | 0.000000000000 0.500000000000 -0.166666666667 109 | 0.333333333333 0.000000000000 -0.166666666667 110 | 0.333333333333 -0.333333333333 0.166666666667 111 | -0.333333333333 0.333333333333 -0.166666666667 112 | -0.000000000000 0.333333333333 0.166666666667 113 | 0.000000000000 -0.333333333333 -0.166666666667 114 | 0.166666666667 -0.000000000000 -0.166666666667 115 | 0.166666666667 -0.166666666667 0.166666666667 116 | -0.166666666667 0.166666666667 -0.166666666667 117 | 0.000000000000 0.166666666667 0.166666666667 118 | -0.000000000000 -0.166666666667 -0.166666666667 119 | -0.166666666667 -0.166666666667 -0.166666666667 120 | -0.333333333333 0.166666666667 0.166666666667 121 | 0.333333333333 -0.166666666667 -0.166666666667 122 | 0.166666666667 -0.333333333333 0.166666666667 123 | -0.166666666667 0.333333333333 -0.166666666667 124 | 0.166666666667 -0.333333333333 -0.166666666667 125 | -0.166666666667 0.333333333333 0.166666666667 126 | -0.333333333333 0.166666666667 -0.166666666667 127 | 0.333333333333 -0.166666666667 0.166666666667 128 | 0.166666666667 0.166666666667 -0.166666666667 129 | -0.166666666667 -0.166666666667 0.166666666667 130 | -0.333333333333 -0.166666666667 -0.166666666667 131 | -0.500000000000 0.333333333333 0.166666666667 132 | 0.500000000000 -0.333333333333 -0.166666666667 133 | 0.166666666667 -0.500000000000 0.166666666667 134 | -0.166666666667 0.500000000000 -0.166666666667 135 | 0.333333333333 -0.500000000000 -0.166666666667 136 | -0.333333333333 0.500000000000 0.166666666667 137 | -0.500000000000 0.166666666667 -0.166666666667 138 | 0.500000000000 -0.166666666667 0.166666666667 139 | 0.166666666667 0.333333333333 -0.166666666667 140 | -0.166666666667 -0.333333333333 0.166666666667 141 | -0.500000000000 -0.166666666667 -0.166666666667 142 | -0.666666666667 0.500000000000 0.166666666667 143 | 0.666666666667 -0.500000000000 -0.166666666667 144 | 0.166666666667 -0.666666666667 0.166666666667 145 | -0.166666666667 0.666666666667 -0.166666666667 146 | 0.500000000000 -0.666666666667 -0.166666666667 147 | -0.500000000000 0.666666666667 0.166666666667 148 | -0.666666666667 0.166666666667 -0.166666666667 149 | 0.666666666667 -0.166666666667 0.166666666667 150 | 0.166666666667 0.500000000000 -0.166666666667 151 | -0.166666666667 -0.500000000000 0.166666666667 152 | -0.333333333333 -0.333333333333 -0.166666666667 153 | 0.333333333333 -0.666666666667 -0.166666666667 154 | -0.333333333333 0.666666666667 0.166666666667 155 | 0.000000000000 0.000000000000 -0.333333333333 156 | -0.166666666667 0.000000000000 -0.333333333333 157 | -0.166666666667 0.166666666667 0.333333333333 158 | 0.166666666667 -0.166666666667 -0.333333333333 159 | -0.000000000000 -0.166666666667 0.333333333333 160 | 0.000000000000 0.166666666667 -0.333333333333 161 | -0.333333333333 -0.000000000000 -0.333333333333 162 | -0.333333333333 0.333333333333 0.333333333333 163 | 0.333333333333 -0.333333333333 -0.333333333333 164 | 0.000000000000 -0.333333333333 0.333333333333 165 | -0.000000000000 0.333333333333 -0.333333333333 166 | -0.500000000000 0.000000000000 -0.333333333333 167 | -0.500000000000 0.500000000000 0.333333333333 168 | 0.500000000000 -0.500000000000 -0.333333333333 169 | -0.000000000000 -0.500000000000 0.333333333333 170 | 0.000000000000 0.500000000000 -0.333333333333 171 | 0.333333333333 0.000000000000 -0.333333333333 172 | 0.333333333333 -0.333333333333 0.333333333333 173 | -0.333333333333 0.333333333333 -0.333333333333 174 | -0.000000000000 0.333333333333 0.333333333333 175 | 0.000000000000 -0.333333333333 -0.333333333333 176 | 0.166666666667 -0.000000000000 -0.333333333333 177 | 0.166666666667 -0.166666666667 0.333333333333 178 | -0.166666666667 0.166666666667 -0.333333333333 179 | 0.000000000000 0.166666666667 0.333333333333 180 | -0.000000000000 -0.166666666667 -0.333333333333 181 | -0.166666666667 -0.166666666667 -0.333333333333 182 | -0.333333333333 0.166666666667 0.333333333333 183 | 0.333333333333 -0.166666666667 -0.333333333333 184 | 0.166666666667 -0.333333333333 0.333333333333 185 | -0.166666666667 0.333333333333 -0.333333333333 186 | 0.166666666667 -0.333333333333 -0.333333333333 187 | -0.166666666667 0.333333333333 0.333333333333 188 | -0.333333333333 0.166666666667 -0.333333333333 189 | 0.333333333333 -0.166666666667 0.333333333333 190 | 0.166666666667 0.166666666667 -0.333333333333 191 | -0.166666666667 -0.166666666667 0.333333333333 192 | -0.333333333333 -0.166666666667 -0.333333333333 193 | -0.500000000000 0.333333333333 0.333333333333 194 | 0.500000000000 -0.333333333333 -0.333333333333 195 | 0.166666666667 -0.500000000000 0.333333333333 196 | -0.166666666667 0.500000000000 -0.333333333333 197 | 0.333333333333 -0.500000000000 -0.333333333333 198 | -0.333333333333 0.500000000000 0.333333333333 199 | -0.500000000000 0.166666666667 -0.333333333333 200 | 0.500000000000 -0.166666666667 0.333333333333 201 | 0.166666666667 0.333333333333 -0.333333333333 202 | -0.166666666667 -0.333333333333 0.333333333333 203 | -0.500000000000 -0.166666666667 -0.333333333333 204 | -0.666666666667 0.500000000000 0.333333333333 205 | 0.666666666667 -0.500000000000 -0.333333333333 206 | 0.166666666667 -0.666666666667 0.333333333333 207 | -0.166666666667 0.666666666667 -0.333333333333 208 | 0.500000000000 -0.666666666667 -0.333333333333 209 | -0.500000000000 0.666666666667 0.333333333333 210 | -0.666666666667 0.166666666667 -0.333333333333 211 | 0.666666666667 -0.166666666667 0.333333333333 212 | 0.166666666667 0.500000000000 -0.333333333333 213 | -0.166666666667 -0.500000000000 0.333333333333 214 | -0.333333333333 -0.333333333333 -0.333333333333 215 | 0.333333333333 -0.666666666667 -0.333333333333 216 | -0.333333333333 0.666666666667 0.333333333333 217 | -0.166666666667 0.000000000000 -0.500000000000 218 | -0.166666666667 0.166666666667 0.500000000000 219 | 0.166666666667 -0.166666666667 -0.500000000000 220 | -0.000000000000 -0.166666666667 0.500000000000 221 | 0.000000000000 0.166666666667 -0.500000000000 222 | -0.333333333333 -0.000000000000 -0.500000000000 223 | -0.333333333333 0.333333333333 0.500000000000 224 | 0.333333333333 -0.333333333333 -0.500000000000 225 | 0.000000000000 -0.333333333333 0.500000000000 226 | -0.000000000000 0.333333333333 -0.500000000000 227 | -0.500000000000 0.500000000000 0.500000000000 228 | -0.000000000000 -0.500000000000 0.500000000000 229 | -0.166666666667 -0.166666666667 -0.500000000000 230 | -0.333333333333 0.166666666667 0.500000000000 231 | 0.333333333333 -0.166666666667 -0.500000000000 232 | 0.166666666667 -0.333333333333 0.500000000000 233 | -0.166666666667 0.333333333333 -0.500000000000 234 | -0.333333333333 -0.166666666667 -0.500000000000 235 | -0.500000000000 0.333333333333 0.500000000000 236 | 0.500000000000 -0.333333333333 -0.500000000000 237 | 0.166666666667 -0.500000000000 0.500000000000 238 | -0.166666666667 0.500000000000 -0.500000000000 239 | 0.333333333333 -0.500000000000 -0.500000000000 240 | -0.333333333333 0.500000000000 0.500000000000 241 | -0.500000000000 0.166666666667 -0.500000000000 242 | 0.500000000000 -0.166666666667 0.500000000000 243 | 0.166666666667 0.333333333333 -0.500000000000 244 | -0.166666666667 -0.333333333333 0.500000000000 245 | -0.333333333333 -0.333333333333 -0.500000000000 246 | end kpoints 247 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/wannier90-dos.wpout.ref: -------------------------------------------------------------------------------- 1 | 2 | +---------------------------------------------------+ 3 | | | 4 | | WANNIER90 | 5 | | | 6 | +---------------------------------------------------+ 7 | | | 8 | | Welcome to the Maximally-Localized | 9 | | Generalized Wannier Functions code | 10 | | http://www.wannier.org | 11 | | | 12 | | Wannier90 v2.0 Authors: | 13 | | Arash A. Mostofi (Imperial College London) | 14 | | Giovanni Pizzi (EPFL) | 15 | | Ivo Souza (Universidad del Pais Vasco) | 16 | | Jonathan R. Yates (University of Oxford) | 17 | | | 18 | | Wannier90 Contributors: | 19 | | Young-Su Lee (KIST, S. Korea) | 20 | | Matthew Shelley (Imperial College London) | 21 | | Nicolas Poilvert (Penn State University) | 22 | | Raffaello Bianco (Paris 6 and CNRS) | 23 | | Gabriele Sclauzero (ETH Zurich) | 24 | | | 25 | | Wannier77 Authors: | 26 | | Nicola Marzari (EPFL) | 27 | | Ivo Souza (Universidad del Pais Vasco) | 28 | | David Vanderbilt (Rutgers University) | 29 | | | 30 | | Please cite | 31 | | | 32 | | [ref] "Wannier90: A Tool for Obtaining Maximally | 33 | | Localised Wannier Functions" | 34 | | A. A. Mostofi, J. R. Yates, Y.-S. Lee, | 35 | | I. Souza, D. Vanderbilt and N. Marzari | 36 | | Comput. Phys. Commun. 178, 685 (2008) | 37 | | | 38 | | in any publications arising from the use of | 39 | | this code. For the method please cite | 40 | | | 41 | | [ref] "Maximally Localized Generalised Wannier | 42 | | Functions for Composite Energy Bands" | 43 | | N. Marzari and D. Vanderbilt | 44 | | Phys. Rev. B 56 12847 (1997) | 45 | | | 46 | | [ref] "Maximally Localized Wannier Functions | 47 | | for Entangled Energy Bands" | 48 | | I. Souza, N. Marzari and D. Vanderbilt | 49 | | Phys. Rev. B 65 035109 (2001) | 50 | | | 51 | | | 52 | | Copyright (c) 1996-2015 | 53 | | Arash A. Mostofi, Jonathan R. Yates, | 54 | | Young-Su Lee, Giovanni Pizzi, Ivo Souza, | 55 | | David Vanderbilt and Nicola Marzari | 56 | | | 57 | | Release: 2.0.1 2nd April 2015 | 58 | | | 59 | | This program is free software; you can | 60 | | redistribute it and/or modify it under the terms | 61 | | of the GNU General Public License as published by | 62 | | the Free Software Foundation; either version 2 of | 63 | | the License, or (at your option) any later version| 64 | | | 65 | | This program is distributed in the hope that it | 66 | | will be useful, but WITHOUT ANY WARRANTY; without | 67 | | even the implied warranty of MERCHANTABILITY or | 68 | | FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 69 | | General Public License for more details. | 70 | | | 71 | | You should have received a copy of the GNU General| 72 | | Public License along with this program; if not, | 73 | | write to the Free Software Foundation, Inc., | 74 | | 675 Mass Ave, Cambridge, MA 02139, USA. | 75 | | | 76 | +---------------------------------------------------+ 77 | | Execution started on 30Oct2016 at 19:08:12 | 78 | +---------------------------------------------------+ 79 | 80 | ****************************************************************************** 81 | * -> Using CODATA 2006 constant values * 82 | * (http://physics.nist.gov/cuu/Constants/index.html) * 83 | * -> Using Bohr value from CODATA * 84 | ****************************************************************************** 85 | 86 | 87 | Running in parallel on 32 CPUs 88 | 89 | 90 | ------ 91 | SYSTEM 92 | ------ 93 | 94 | Lattice Vectors (Ang) 95 | a_1 3.651000 0.000000 0.000000 96 | a_2 -1.825500 3.161859 0.000000 97 | a_3 0.000000 0.000000 6.015000 98 | 99 | Unit Cell Volume: 69.43684 (Ang^3) 100 | 101 | Reciprocal-Space Vectors (Ang^-1) 102 | b_1 1.720949 0.993590 0.000000 103 | b_2 0.000000 1.987181 0.000000 104 | b_3 0.000000 0.000000 1.044586 105 | 106 | *----------------------------------------------------------------------------* 107 | | Site Fractional Coordinate Cartesian Coordinate (Ang) | 108 | +----------------------------------------------------------------------------+ 109 | | Sn 1 0.00000 0.00000 0.00000 | 0.00000 0.00000 0.00000 | 110 | | S 1 0.33333 0.66667 0.24520 | 0.00000 2.10790 1.47488 | 111 | | S 2 0.66667 0.33333 0.75480 | 1.82550 1.05395 4.54012 | 112 | *----------------------------------------------------------------------------* 113 | 114 | 115 | *-------------------------------- POSTW90 -----------------------------------* 116 | | Number of Wannier Functions : 64 | 117 | | Number of electrons per state : 2 | 118 | | Scissor shift applied to conduction bands : 0.000 | 119 | | Number of valence bands : not defined | 120 | | Fermi energy (eV) : 0.000 | 121 | | Output verbosity (1=low, 5=high) : 1 | 122 | | Timing Level (1=low, 5=high) : 1 | 123 | | Optimisation (0=memory, 3=speed) : 3 | 124 | | Length Unit : Ang | 125 | *----------------------------------------------------------------------------* 126 | *------------------------ Global Smearing Parameters ------------------------* 127 | | Adaptive width smearing : T | 128 | | Adaptive smearing factor : 1.414 | 129 | | Maximum allowed smearing width (eV) : 1.000 | 130 | | Smearing Function Gaussian | 131 | | Global interpolation k-points defined : T | 132 | | Grid size : 32 x 32 x 24 | 133 | *----------------------------------------------------------------------------* 134 | *---------------------------------- DOS -------------------------------------* 135 | | Plotting Density of States : T | 136 | | Compute Wannier Projected DOS : T | 137 | | Minimum energy range for DOS plot : -17.281 | 138 | | Maximum energy range for DOS plot : 47.618 | 139 | | Energy step for DOS plot : 0.010 | 140 | | Using global smearing parameters | 141 | | Using global k-point set for interpolation | 142 | *----------------------------------------------------------------------------* 143 | Time to read parameters 0.044 (sec) 144 | 145 | *---------------------------------- K-MESH ----------------------------------* 146 | +----------------------------------------------------------------------------+ 147 | | Distance to Nearest-Neighbour Shells | 148 | | ------------------------------------ | 149 | | Shell Distance (Ang^-1) Multiplicity | 150 | | ----- ----------------- ------------ | 151 | | 1 0.174098 2 | 152 | | 2 0.331197 6 | 153 | | 3 0.348195 2 | 154 | | 4 0.374168 12 | 155 | | 5 0.480553 12 | 156 | | 6 0.522293 2 | 157 | | 7 0.573650 6 | 158 | | 8 0.599486 12 | 159 | | 9 0.618451 12 | 160 | | 10 0.662394 6 | 161 | | 11 0.671054 12 | 162 | | 12 0.684891 12 | 163 | +----------------------------------------------------------------------------+ 164 | | The b-vectors are chosen automatically | 165 | | The following shells are used: 1, 2 | 166 | +----------------------------------------------------------------------------+ 167 | | Shell # Nearest-Neighbours | 168 | | ----- -------------------- | 169 | | 1 2 | 170 | | 2 6 | 171 | +----------------------------------------------------------------------------+ 172 | | Completeness relation is fully satisfied [Eq. (B1), PRB 56, 12847 (1997)] | 173 | +----------------------------------------------------------------------------+ 174 | | b_k Vectors (Ang^-1) and Weights (Ang^2) | 175 | | ---------------------------------------- | 176 | | No. b_k(x) b_k(y) b_k(z) w_b | 177 | | --- -------------------------------- -------- | 178 | | 1 0.000000 0.000000 0.174098 16.496204 | 179 | | 2 0.000000 0.000000 -0.174098 16.496204 | 180 | | 3 0.286825 0.165598 0.000000 3.038830 | 181 | | 4 -0.286825 -0.165598 0.000000 3.038830 | 182 | | 5 -0.286825 0.165598 0.000000 3.038830 | 183 | | 6 0.286825 -0.165598 0.000000 3.038830 | 184 | | 7 0.000000 -0.331197 0.000000 3.038830 | 185 | | 8 0.000000 0.331197 0.000000 3.038830 | 186 | +----------------------------------------------------------------------------+ 187 | | b_k Directions (Ang^-1) | 188 | | ----------------------- | 189 | | No. x y z | 190 | | --- -------------------------------- | 191 | | 1 0.000000 0.000000 0.174098 | 192 | | 2 0.286825 0.165598 0.000000 | 193 | | 3 -0.286825 0.165598 0.000000 | 194 | | 4 0.000000 -0.331197 0.000000 | 195 | +----------------------------------------------------------------------------+ 196 | 197 | Time to get kmesh 0.100 (sec) 198 | Reading restart information from file wannier90.chk : 199 | written on 30Oct2016 at 00:38:19 ... done 200 | 201 | 202 | Time to read and process 0.348 (sec) 203 | 204 | 205 | Properties calculated in module d o s 206 | -------------------------------------- 207 | 208 | * Total density of states (_dos) 209 | 210 | Energy range: [ -17.2812, 47.6183] eV 211 | 212 | Adaptive smearing width prefactor: 1.414 213 | 214 | 215 | Interpolation grid: 32 32 24 216 | 217 | Sampling the full BZ 218 | Output data files: 219 | 220 | wannier90-dos.dat 221 | 222 | Total Execution Time 37.740 (sec) 223 | 224 | *===========================================================================* 225 | | TIMING INFORMATION | 226 | *===========================================================================* 227 | | Tag Ncalls Time (s)| 228 | |---------------------------------------------------------------------------| 229 | |kmesh: get : 1 0.100| 230 | *---------------------------------------------------------------------------* 231 | 232 | 233 | All done: postw90 exiting 234 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/wannier90.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | -------------------------------------------------------------------------------- /Wannier90_SnS2/02_PBE-ElectronicStructure/wannier90_band.gnu.ref: -------------------------------------------------------------------------------- 1 | set data style dots 2 | set nokey 3 | set xrange [0: 5.42872] 4 | set yrange [-17.72650 : 47.95156] 5 | set arrow from 0.52229, -17.72650 to 0.52229, 47.95156 nohead 6 | set arrow from 1.66959, -17.72650 to 1.66959, 47.95156 nohead 7 | set arrow from 2.19188, -17.72650 to 2.19188, 47.95156 nohead 8 | set arrow from 3.33918, -17.72650 to 3.33918, 47.95156 nohead 9 | set arrow from 4.33277, -17.72650 to 4.33277, 47.95156 nohead 10 | set arrow from 4.85507, -17.72650 to 4.85507, 47.95156 nohead 11 | set xtics (" G " 0.00000," A " 0.52229," H " 1.66959," K " 2.19188," G " 3.33918," M " 4.33277," L " 4.85507," H " 5.42872) 12 | plot "wannier90_band.dat" 13 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/01_PBE-Wavefunctions/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = Normal 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 4 8 | LASPH = .TRUE. 9 | LREAL = .FALSE. 10 | NBANDS = 64 11 | NELMIN = 5 12 | NPAR = 1 13 | NSW = 0 14 | PREC = Accurate 15 | SYSTEM = SnS2 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/01_PBE-Wavefunctions/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/01_PBE-Wavefunctions/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | DAV: 1 0.213919533620E+03 0.21392E+03 -0.69866E+03 5736 0.414E+02 3 | DAV: 2 0.151360158467E+02 -0.19878E+03 -0.17738E+03 4808 0.195E+02 4 | DAV: 3 -0.130266365051E+02 -0.28163E+02 -0.27658E+02 5208 0.453E+01 5 | DAV: 4 -0.138472226349E+02 -0.82059E+00 -0.81978E+00 5120 0.791E+00 6 | DAV: 5 -0.138556746890E+02 -0.84521E-02 -0.84514E-02 5792 0.801E-01 0.350E+00 7 | DAV: 6 -0.133772672519E+02 0.47841E+00 -0.36180E-01 6552 0.325E+00 0.157E+00 8 | DAV: 7 -0.133466462303E+02 0.30621E-01 -0.82286E-02 5816 0.806E-01 0.724E-01 9 | DAV: 8 -0.133474605199E+02 -0.81429E-03 -0.12263E-02 5288 0.353E-01 0.210E-01 10 | DAV: 9 -0.133479504718E+02 -0.48995E-03 -0.89740E-04 5136 0.866E-02 0.376E-02 11 | DAV: 10 -0.133479984988E+02 -0.48027E-04 -0.11049E-04 5184 0.265E-02 0.139E-02 12 | DAV: 11 -0.133480087431E+02 -0.10244E-04 -0.74901E-06 5008 0.122E-02 0.359E-03 13 | DAV: 12 -0.133480107789E+02 -0.20359E-05 -0.24934E-06 5120 0.537E-03 0.108E-03 14 | DAV: 13 -0.133480109061E+02 -0.12722E-06 -0.14010E-07 5200 0.111E-03 0.532E-04 15 | DAV: 14 -0.133480108052E+02 0.10091E-06 -0.35105E-08 5024 0.611E-04 0.208E-04 16 | DAV: 15 -0.133480108112E+02 -0.59731E-08 -0.22837E-09 4984 0.124E-04 17 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/01_PBE-Wavefunctions/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/01_PBE-Wavefunctions/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 8 cores, 4 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Feb 06 2016 13:21:38) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | LDA part: xc-table for Pade appr. of Perdew 31 | POSCAR, INCAR and KPOINTS ok, starting setup 32 | WARNING: small aliasing (wrap around) errors must be expected 33 | FFT: planning ... 34 | WAVECAR not read 35 | entering main loop 36 | N E dE d eps ncg rms rms(c) 37 | DAV: 1 0.213919533620E+03 0.21392E+03 -0.69866E+03 5736 0.414E+02 38 | DAV: 2 0.151360158467E+02 -0.19878E+03 -0.17738E+03 4808 0.195E+02 39 | DAV: 3 -0.130266365051E+02 -0.28163E+02 -0.27658E+02 5208 0.453E+01 40 | DAV: 4 -0.138472226349E+02 -0.82059E+00 -0.81978E+00 5120 0.791E+00 41 | DAV: 5 -0.138556746890E+02 -0.84521E-02 -0.84514E-02 5792 0.801E-01 0.350E+00 42 | DAV: 6 -0.133772672519E+02 0.47841E+00 -0.36180E-01 6552 0.325E+00 0.157E+00 43 | DAV: 7 -0.133466462303E+02 0.30621E-01 -0.82286E-02 5816 0.806E-01 0.724E-01 44 | DAV: 8 -0.133474605199E+02 -0.81429E-03 -0.12263E-02 5288 0.353E-01 0.210E-01 45 | DAV: 9 -0.133479504718E+02 -0.48995E-03 -0.89740E-04 5136 0.866E-02 0.376E-02 46 | DAV: 10 -0.133479984988E+02 -0.48027E-04 -0.11049E-04 5184 0.265E-02 0.139E-02 47 | DAV: 11 -0.133480087431E+02 -0.10244E-04 -0.74901E-06 5008 0.122E-02 0.359E-03 48 | DAV: 12 -0.133480107789E+02 -0.20359E-05 -0.24934E-06 5120 0.537E-03 0.108E-03 49 | DAV: 13 -0.133480109061E+02 -0.12722E-06 -0.14010E-07 5200 0.111E-03 0.532E-04 50 | DAV: 14 -0.133480108052E+02 0.10091E-06 -0.35105E-08 5024 0.611E-04 0.208E-04 51 | DAV: 15 -0.133480108112E+02 -0.59731E-08 -0.22837E-09 4984 0.124E-04 52 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 53 | writing wavefunctions 54 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/02_HSE06-Wavefunctions/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = All 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | HFSCREEN = 0.2 6 | ISIF = 2 7 | ISMEAR = -5 8 | KPAR = 4 9 | LASPH = .TRUE. 10 | LHFCALC = .TRUE. 11 | LREAL = .FALSE. 12 | NBANDS = 64 13 | NELMIN = 5 14 | NPAR = 1 15 | NSW = 0 16 | PREC = Accurate 17 | SYSTEM = SnS2 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/02_HSE06-Wavefunctions/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/02_HSE06-Wavefunctions/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms ort 2 | SDA: 1 -0.193508785315E+02 -0.19351E+02 0.00000E+00 2176 0.912E-01 0.000E+00 3 | CGA: 2 -0.194118612111E+02 -0.60983E-01 -0.58027E-01 2176 0.370E-01 0.762E-02 4 | CGA: 3 -0.194290189107E+02 -0.17158E-01 -0.16808E-01 2176 0.120E-01 0.159E-02 5 | CGA: 4 -0.194347027269E+02 -0.56838E-02 -0.56569E-02 2176 0.133E-02 0.109E-03 6 | CGA: 5 -0.194352347831E+02 -0.53206E-03 -0.52820E-03 2176 0.172E-03 0.253E-04 7 | CGA: 6 -0.194353168103E+02 -0.82027E-04 -0.82579E-04 2176 0.498E-04-0.256E-05 8 | CGA: 7 -0.194353363296E+02 -0.19519E-04 -0.18966E-04 2176 0.823E-05 0.446E-05 9 | CGA: 8 -0.194353413913E+02 -0.50617E-05 -0.52326E-05 2176 0.244E-05-0.586E-06 10 | CGA: 9 -0.194353420475E+02 -0.65616E-06 -0.65323E-06 2176 0.411E-06 0.601E-06 11 | CGA: 10 -0.194353421801E+02 -0.13262E-06 -0.13551E-06 2176 0.972E-07 0.146E-06 12 | CGA: 11 -0.194353422188E+02 -0.38664E-07 -0.10442E-06 2176 0.205E-06-0.132E-06 13 | CGA: 12 -0.194353422507E+02 -0.31891E-07 -0.40364E-07 2176 0.381E-07 0.762E-07 14 | CGA: 13 -0.194353422599E+02 -0.92350E-08 -0.10751E-07 2176 0.777E-08 0.153E-07 15 | 1 F= -.19435342E+02 E0= -.19435342E+02 d E =0.000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/02_HSE06-Wavefunctions/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/02_HSE06-Wavefunctions/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 8 cores, 4 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Nov 12 2015 13:14:48) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | LDA part: xc-table for Pade appr. of Perdew 31 | found WAVECAR, reading the header 32 | POSCAR, INCAR and KPOINTS ok, starting setup 33 | WARNING: small aliasing (wrap around) errors must be expected 34 | FFT: planning ... 35 | reading WAVECAR 36 | the WAVECAR file was read successfully 37 | initial charge from wavefunction 38 | entering main loop 39 | 40 | ----------------------------------------------------------------------------- 41 | | | 42 | | W W AA RRRRR N N II N N GGGG !!! | 43 | | W W A A R R NN N II NN N G G !!! | 44 | | W W A A R R N N N II N N N G !!! | 45 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 46 | | WW WW A A R R N NN II N NN G G | 47 | | W W A A R R N N II N N GGGG !!! | 48 | | | 49 | | ALGO=A and IALGO=5X tend to fail with the tetrahedron method | 50 | | (e.g. Bloechls method ISMEAR=-5 is not variational) | 51 | | please switch to IMSEAR=0-n, except for DOS calculations | 52 | | For DOS calculations use IALGO=53 after preconverging with ISMEAR>=0 | 53 | | I HOPE YOU KNOW, WHAT YOU ARE DOING | 54 | | | 55 | ----------------------------------------------------------------------------- 56 | 57 | N E dE d eps ncg rms ort 58 | gam= 0.000 g(H,U,f)= 0.312E-01 0.598E-01 0.241E-03 ort(H,U,f) = 0.000E+00 0.000E+00 0.000E+00 59 | SDA: 1 -0.193508785315E+02 -0.19351E+02 0.00000E+00 2176 0.912E-01 0.000E+00 60 | gam= 0.000 trial= 0.400 step= 1.273 mean= 0.400 61 | gam= 0.405 g(H,U,f)= 0.238E-01 0.131E-01 0.568E-04 ort(H,U,f) =-0.166E-01 0.241E-01 0.158E-03 62 | CGA: 2 -0.194118612111E+02 -0.60983E-01 -0.58027E-01 2176 0.370E-01 0.762E-02 63 | gam= 0.405 trial= 0.444 step= 0.839 mean= 0.444 64 | gam= 0.325 g(H,U,f)= 0.889E-02 0.313E-02 0.167E-05 ort(H,U,f) =-0.792E-02 0.950E-02 0.128E-04 65 | CGA: 3 -0.194290189107E+02 -0.17158E-01 -0.16808E-01 2176 0.120E-01 0.159E-02 66 | gam= 0.325 trial= 0.463 step= 0.902 mean= 0.463 67 | gam= 0.111 g(H,U,f)= 0.112E-02 0.213E-03 0.241E-06 ort(H,U,f) =-0.867E-03 0.973E-03 0.267E-05 68 | CGA: 4 -0.194347027269E+02 -0.56838E-02 -0.56569E-02 2176 0.133E-02 0.109E-03 69 | gam= 0.111 trial= 0.485 step= 0.786 mean= 0.485 70 | gam= 0.129 g(H,U,f)= 0.122E-03 0.493E-04 0.365E-07 ort(H,U,f) =-0.119E-03 0.144E-03-0.177E-07 71 | CGA: 5 -0.194352347831E+02 -0.53206E-03 -0.52820E-03 2176 0.172E-03 0.253E-04 72 | gam= 0.129 trial= 0.500 step= 0.945 mean= 0.500 73 | gam= 0.290 g(H,U,f)= 0.368E-04 0.129E-04 0.362E-07 ort(H,U,f) =-0.320E-04 0.294E-04 0.117E-07 74 | CGA: 6 -0.194353168103E+02 -0.82027E-04 -0.82579E-04 2176 0.498E-04-0.256E-05 75 | gam= 0.290 trial= 0.523 step= 0.774 mean= 0.523 76 | gam= 0.165 g(H,U,f)= 0.509E-05 0.313E-05 0.159E-07 ort(H,U,f) =-0.493E-05 0.937E-05 0.251E-07 77 | CGA: 7 -0.194353363296E+02 -0.19519E-04 -0.18966E-04 2176 0.823E-05 0.446E-05 78 | gam= 0.165 trial= 0.535 step= 1.166 mean= 0.535 79 | gam= 0.296 g(H,U,f)= 0.195E-05 0.486E-06 0.129E-08 ort(H,U,f) =-0.162E-05 0.103E-05 0.106E-08 80 | CGA: 8 -0.194353413913E+02 -0.50617E-05 -0.52326E-05 2176 0.244E-05-0.586E-06 81 | gam= 0.296 trial= 0.567 step= 0.577 mean= 0.567 82 | gam= 0.169 g(H,U,f)= 0.285E-06 0.125E-06 0.707E-09 ort(H,U,f) = 0.262E-06 0.338E-06 0.730E-09 83 | CGA: 9 -0.194353420475E+02 -0.65616E-06 -0.65323E-06 2176 0.411E-06 0.601E-06 84 | gam= 0.169 trial= 0.567 step= 0.529 mean= 0.567 85 | gam= 0.236 g(H,U,f)= 0.655E-07 0.315E-07 0.260E-09 ort(H,U,f) = 0.594E-07 0.863E-07 0.515E-09 86 | CGA: 10 -0.194353421801E+02 -0.13262E-06 -0.13551E-06 2176 0.972E-07 0.146E-06 87 | gam= 0.236 trial= 0.565 step= 1.585 mean= 0.565 88 | gam= 0.000 g(H,U,f)= 0.176E-06 0.283E-07 0.358E-10 ort(H,U,f) =-0.110E-06-0.214E-07-0.548E-10 89 | CGA: 11 -0.194353422188E+02 -0.38664E-07 -0.10442E-06 2176 0.205E-06-0.132E-06 90 | gam= 0.000 trial= 0.616 step= 0.394 mean= 0.616 91 | gam= 0.186 g(H,U,f)= 0.288E-07 0.927E-08 0.575E-11 ort(H,U,f) = 0.602E-07 0.159E-07 0.134E-10 92 | CGA: 12 -0.194353422507E+02 -0.31891E-07 -0.40364E-07 2176 0.381E-07 0.762E-07 93 | gam= 0.186 trial= 0.605 step= 0.411 mean= 0.605 94 | gam= 0.204 g(H,U,f)= 0.614E-08 0.163E-08 0.227E-11 ort(H,U,f) = 0.106E-07 0.471E-08-0.592E-12 95 | CGA: 13 -0.194353422599E+02 -0.92350E-08 -0.10751E-07 2176 0.777E-08 0.153E-07 96 | gam= 0.204 trial= 0.595 step=-0.445 mean= 0.595 97 | BOPT < 0, no correction made 98 | 1 F= -.19435342E+02 E0= -.19435342E+02 d E =0.000000E+00 99 | writing wavefunctions 100 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = None 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | HFSCREEN = 0.2 6 | ISIF = 2 7 | ISMEAR = -5 8 | KPAR = 4 9 | LASPH = .TRUE. 10 | LCHARG = .FALSE. 11 | LHFCALC = .TRUE. 12 | LREAL = .FALSE. 13 | LWAVE = .FALSE. 14 | NBANDS = 64 15 | NELMIN = 0 16 | !NPAR = 1 17 | NSW = 0 18 | PREC = Accurate 19 | SYSTEM = SnS2 20 | 21 | LWANNIER90 = .TRUE. 22 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | NONE 1 -0.755421539585E+02 -0.75542E+02 0.00000E+00 0 0.000E+00 0.287E-14 3 | NONE 2 -0.755421539585E+02 0.18190E-10 0.00000E+00 0 0.000E+00 4 | 1 F= -.75542154E+02 E0= -.75542154E+02 d E =0.000000E+00 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 8 cores, 4 groups 3 | distr: one band on 1 cores, 8 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Feb 06 2016 13:21:38) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | For optimal performance we recommend to set | 21 | | NCORE= 4 - approx SQRT( number of cores) | 22 | | NCORE specifies how many cores store one orbital (NPAR=cpu/NCORE). | 23 | | This setting can greatly improve the performance of VASP for DFT. | 24 | | The default, NPAR=number of cores might be grossly inefficient | 25 | | on modern multi-core architectures or massively parallel machines. | 26 | | Do your own testing !!!! | 27 | | Unfortunately you need to use the default for GW and RPA calculations. | 28 | | (for HF NCORE is supported but not extensively tested yet) | 29 | | | 30 | ----------------------------------------------------------------------------- 31 | 32 | 33 | ----------------------------------------------------------------------------- 34 | | | 35 | | W W AA RRRRR N N II N N GGGG !!! | 36 | | W W A A R R NN N II NN N G G !!! | 37 | | W W A A R R N N N II N N N G !!! | 38 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 39 | | WW WW A A R R N NN II N NN G G | 40 | | W W A A R R N N II N N GGGG !!! | 41 | | | 42 | | You have enabled k-point parallelism (KPAR>1). | 43 | | This developmental code was originally written by Paul Kent at ORNL, | 44 | | and carefully double checked in Vienna. | 45 | | GW as well as linear response parallelism added by Martijn Marsman | 46 | | and Georg Kresse. | 47 | | Carefully verify results versus KPAR=1. | 48 | | Report problems to Paul Kent and Vienna. | 49 | | | 50 | ----------------------------------------------------------------------------- 51 | 52 | LDA part: xc-table for Pade appr. of Perdew 53 | found WAVECAR, reading the header 54 | POSCAR, INCAR and KPOINTS ok, starting setup 55 | WARNING: small aliasing (wrap around) errors must be expected 56 | FFT: planning ... 57 | reading WAVECAR 58 | the WAVECAR file was read successfully 59 | initial charge from wavefunction 60 | entering main loop 61 | N E dE d eps ncg rms rms(c) 62 | NONE 1 -0.755421539585E+02 -0.75542E+02 0.00000E+00 0 0.000E+00 0.287E-14 63 | NONE 2 -0.755421539585E+02 0.18190E-10 0.00000E+00 0 0.000E+00 64 | Projection 1 done. 65 | Projection 2 done. 66 | Projection 3 done. 67 | Projection 4 done. 68 | Projection 5 done. 69 | Projection 6 done. 70 | Projection 7 done. 71 | Projection 8 done. 72 | Projection 9 done. 73 | Projection 10 done. 74 | Projection 11 done. 75 | Projection 12 done. 76 | Projection 13 done. 77 | Projection 14 done. 78 | Projection 15 done. 79 | Projection 16 done. 80 | Projection 17 done. 81 | Projection 18 done. 82 | Projection 19 done. 83 | Projection 20 done. 84 | Projection 21 done. 85 | Projection 22 done. 86 | Projection 23 done. 87 | Projection 24 done. 88 | Projection 25 done. 89 | Projection 26 done. 90 | Projection 27 done. 91 | Projection 28 done. 92 | Projection 29 done. 93 | Projection 30 done. 94 | Projection 31 done. 95 | Projection 32 done. 96 | Projection 33 done. 97 | Projection 34 done. 98 | Projection 35 done. 99 | Projection 36 done. 100 | Projection 37 done. 101 | Projection 38 done. 102 | Projection 39 done. 103 | Projection 40 done. 104 | Projection 41 done. 105 | Projection 42 done. 106 | Projection 43 done. 107 | Projection 44 done. 108 | Projection 45 done. 109 | Projection 46 done. 110 | Projection 47 done. 111 | Projection 48 done. 112 | Projection 49 done. 113 | Projection 50 done. 114 | Projection 51 done. 115 | Projection 52 done. 116 | Projection 53 done. 117 | Projection 54 done. 118 | Projection 55 done. 119 | Projection 56 done. 120 | Projection 57 done. 121 | Projection 58 done. 122 | Projection 59 done. 123 | Projection 60 done. 124 | Projection 61 done. 125 | Projection 62 done. 126 | Projection 63 done. 127 | Projection 64 done. 128 | 1 F= -.75542154E+02 E0= -.75542154E+02 d E =0.000000E+00 129 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/wannier90-dos.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | 5 | num_wann = 64 ! set to NBANDS by VASP 6 | 7 | kmesh = 32 32 24 8 | 9 | adpt_smr = .true. 10 | smr_type = 'gauss' 11 | 12 | dos = .true. 13 | dos_task = 'dos_plot' 14 | 15 | begin unit_cell_cart 16 | 3.6510000 0.0000000 0.0000000 17 | -1.8255000 3.1618590 0.0000000 18 | 0.0000000 0.0000000 6.0150000 19 | end unit_cell_cart 20 | 21 | begin atoms_cart 22 | Sn 0.0000000 0.0000000 0.0000000 23 | S 0.0000000 2.1079039 1.4748826 24 | S 1.8254982 1.0539519 4.5401216 25 | end atoms_cart 26 | 27 | mp_grid = 6 6 6 28 | 29 | begin kpoints 30 | 0.000000000000 0.000000000000 0.000000000000 31 | 0.166666666667 -0.000000000000 0.000000000000 32 | 0.333333333333 0.000000000000 0.000000000000 33 | 0.500000000000 -0.000000000000 0.000000000000 34 | 0.166666666667 0.166666666667 0.000000000000 35 | 0.333333333333 0.166666666667 0.000000000000 36 | 0.333333333333 0.333333333333 0.000000000000 37 | 0.000000000000 0.000000000000 0.166666666667 38 | 0.166666666667 -0.000000000000 0.166666666667 39 | 0.333333333333 0.000000000000 0.166666666667 40 | 0.500000000000 -0.000000000000 0.166666666667 41 | -0.333333333333 -0.000000000000 0.166666666667 42 | -0.166666666667 0.000000000000 0.166666666667 43 | 0.166666666667 0.166666666667 0.166666666667 44 | 0.333333333333 0.166666666667 0.166666666667 45 | 0.500000000000 0.166666666667 0.166666666667 46 | 0.333333333333 0.333333333333 0.166666666667 47 | 0.000000000000 0.000000000000 0.333333333333 48 | 0.166666666667 -0.000000000000 0.333333333333 49 | 0.333333333333 0.000000000000 0.333333333333 50 | 0.500000000000 -0.000000000000 0.333333333333 51 | -0.333333333333 -0.000000000000 0.333333333333 52 | -0.166666666667 0.000000000000 0.333333333333 53 | 0.166666666667 0.166666666667 0.333333333333 54 | 0.333333333333 0.166666666667 0.333333333333 55 | 0.500000000000 0.166666666667 0.333333333333 56 | 0.333333333333 0.333333333333 0.333333333333 57 | 0.000000000000 0.000000000000 0.500000000000 58 | 0.166666666667 -0.000000000000 0.500000000000 59 | 0.333333333333 0.000000000000 0.500000000000 60 | 0.500000000000 -0.000000000000 0.500000000000 61 | 0.166666666667 0.166666666667 0.500000000000 62 | 0.333333333333 0.166666666667 0.500000000000 63 | 0.333333333333 0.333333333333 0.500000000000 64 | -0.166666666667 0.000000000000 0.000000000000 65 | -0.166666666667 0.166666666667 0.000000000000 66 | 0.166666666667 -0.166666666667 0.000000000000 67 | -0.000000000000 -0.166666666667 0.000000000000 68 | 0.000000000000 0.166666666667 0.000000000000 69 | -0.333333333333 -0.000000000000 0.000000000000 70 | -0.333333333333 0.333333333333 0.000000000000 71 | 0.333333333333 -0.333333333333 0.000000000000 72 | 0.000000000000 -0.333333333333 0.000000000000 73 | -0.000000000000 0.333333333333 0.000000000000 74 | -0.500000000000 0.500000000000 0.000000000000 75 | -0.000000000000 -0.500000000000 0.000000000000 76 | -0.166666666667 -0.166666666667 0.000000000000 77 | -0.333333333333 0.166666666667 0.000000000000 78 | 0.333333333333 -0.166666666667 0.000000000000 79 | 0.166666666667 -0.333333333333 0.000000000000 80 | -0.166666666667 0.333333333333 0.000000000000 81 | -0.333333333333 -0.166666666667 0.000000000000 82 | -0.500000000000 0.333333333333 0.000000000000 83 | 0.500000000000 -0.333333333333 0.000000000000 84 | 0.166666666667 -0.500000000000 0.000000000000 85 | -0.166666666667 0.500000000000 0.000000000000 86 | 0.333333333333 -0.500000000000 0.000000000000 87 | -0.333333333333 0.500000000000 0.000000000000 88 | -0.500000000000 0.166666666667 0.000000000000 89 | 0.500000000000 -0.166666666667 0.000000000000 90 | 0.166666666667 0.333333333333 0.000000000000 91 | -0.166666666667 -0.333333333333 0.000000000000 92 | -0.333333333333 -0.333333333333 0.000000000000 93 | 0.000000000000 0.000000000000 -0.166666666667 94 | -0.166666666667 0.000000000000 -0.166666666667 95 | -0.166666666667 0.166666666667 0.166666666667 96 | 0.166666666667 -0.166666666667 -0.166666666667 97 | -0.000000000000 -0.166666666667 0.166666666667 98 | 0.000000000000 0.166666666667 -0.166666666667 99 | -0.333333333333 -0.000000000000 -0.166666666667 100 | -0.333333333333 0.333333333333 0.166666666667 101 | 0.333333333333 -0.333333333333 -0.166666666667 102 | 0.000000000000 -0.333333333333 0.166666666667 103 | -0.000000000000 0.333333333333 -0.166666666667 104 | -0.500000000000 0.000000000000 -0.166666666667 105 | -0.500000000000 0.500000000000 0.166666666667 106 | 0.500000000000 -0.500000000000 -0.166666666667 107 | -0.000000000000 -0.500000000000 0.166666666667 108 | 0.000000000000 0.500000000000 -0.166666666667 109 | 0.333333333333 0.000000000000 -0.166666666667 110 | 0.333333333333 -0.333333333333 0.166666666667 111 | -0.333333333333 0.333333333333 -0.166666666667 112 | -0.000000000000 0.333333333333 0.166666666667 113 | 0.000000000000 -0.333333333333 -0.166666666667 114 | 0.166666666667 -0.000000000000 -0.166666666667 115 | 0.166666666667 -0.166666666667 0.166666666667 116 | -0.166666666667 0.166666666667 -0.166666666667 117 | 0.000000000000 0.166666666667 0.166666666667 118 | -0.000000000000 -0.166666666667 -0.166666666667 119 | -0.166666666667 -0.166666666667 -0.166666666667 120 | -0.333333333333 0.166666666667 0.166666666667 121 | 0.333333333333 -0.166666666667 -0.166666666667 122 | 0.166666666667 -0.333333333333 0.166666666667 123 | -0.166666666667 0.333333333333 -0.166666666667 124 | 0.166666666667 -0.333333333333 -0.166666666667 125 | -0.166666666667 0.333333333333 0.166666666667 126 | -0.333333333333 0.166666666667 -0.166666666667 127 | 0.333333333333 -0.166666666667 0.166666666667 128 | 0.166666666667 0.166666666667 -0.166666666667 129 | -0.166666666667 -0.166666666667 0.166666666667 130 | -0.333333333333 -0.166666666667 -0.166666666667 131 | -0.500000000000 0.333333333333 0.166666666667 132 | 0.500000000000 -0.333333333333 -0.166666666667 133 | 0.166666666667 -0.500000000000 0.166666666667 134 | -0.166666666667 0.500000000000 -0.166666666667 135 | 0.333333333333 -0.500000000000 -0.166666666667 136 | -0.333333333333 0.500000000000 0.166666666667 137 | -0.500000000000 0.166666666667 -0.166666666667 138 | 0.500000000000 -0.166666666667 0.166666666667 139 | 0.166666666667 0.333333333333 -0.166666666667 140 | -0.166666666667 -0.333333333333 0.166666666667 141 | -0.500000000000 -0.166666666667 -0.166666666667 142 | -0.666666666667 0.500000000000 0.166666666667 143 | 0.666666666667 -0.500000000000 -0.166666666667 144 | 0.166666666667 -0.666666666667 0.166666666667 145 | -0.166666666667 0.666666666667 -0.166666666667 146 | 0.500000000000 -0.666666666667 -0.166666666667 147 | -0.500000000000 0.666666666667 0.166666666667 148 | -0.666666666667 0.166666666667 -0.166666666667 149 | 0.666666666667 -0.166666666667 0.166666666667 150 | 0.166666666667 0.500000000000 -0.166666666667 151 | -0.166666666667 -0.500000000000 0.166666666667 152 | -0.333333333333 -0.333333333333 -0.166666666667 153 | 0.333333333333 -0.666666666667 -0.166666666667 154 | -0.333333333333 0.666666666667 0.166666666667 155 | 0.000000000000 0.000000000000 -0.333333333333 156 | -0.166666666667 0.000000000000 -0.333333333333 157 | -0.166666666667 0.166666666667 0.333333333333 158 | 0.166666666667 -0.166666666667 -0.333333333333 159 | -0.000000000000 -0.166666666667 0.333333333333 160 | 0.000000000000 0.166666666667 -0.333333333333 161 | -0.333333333333 -0.000000000000 -0.333333333333 162 | -0.333333333333 0.333333333333 0.333333333333 163 | 0.333333333333 -0.333333333333 -0.333333333333 164 | 0.000000000000 -0.333333333333 0.333333333333 165 | -0.000000000000 0.333333333333 -0.333333333333 166 | -0.500000000000 0.000000000000 -0.333333333333 167 | -0.500000000000 0.500000000000 0.333333333333 168 | 0.500000000000 -0.500000000000 -0.333333333333 169 | -0.000000000000 -0.500000000000 0.333333333333 170 | 0.000000000000 0.500000000000 -0.333333333333 171 | 0.333333333333 0.000000000000 -0.333333333333 172 | 0.333333333333 -0.333333333333 0.333333333333 173 | -0.333333333333 0.333333333333 -0.333333333333 174 | -0.000000000000 0.333333333333 0.333333333333 175 | 0.000000000000 -0.333333333333 -0.333333333333 176 | 0.166666666667 -0.000000000000 -0.333333333333 177 | 0.166666666667 -0.166666666667 0.333333333333 178 | -0.166666666667 0.166666666667 -0.333333333333 179 | 0.000000000000 0.166666666667 0.333333333333 180 | -0.000000000000 -0.166666666667 -0.333333333333 181 | -0.166666666667 -0.166666666667 -0.333333333333 182 | -0.333333333333 0.166666666667 0.333333333333 183 | 0.333333333333 -0.166666666667 -0.333333333333 184 | 0.166666666667 -0.333333333333 0.333333333333 185 | -0.166666666667 0.333333333333 -0.333333333333 186 | 0.166666666667 -0.333333333333 -0.333333333333 187 | -0.166666666667 0.333333333333 0.333333333333 188 | -0.333333333333 0.166666666667 -0.333333333333 189 | 0.333333333333 -0.166666666667 0.333333333333 190 | 0.166666666667 0.166666666667 -0.333333333333 191 | -0.166666666667 -0.166666666667 0.333333333333 192 | -0.333333333333 -0.166666666667 -0.333333333333 193 | -0.500000000000 0.333333333333 0.333333333333 194 | 0.500000000000 -0.333333333333 -0.333333333333 195 | 0.166666666667 -0.500000000000 0.333333333333 196 | -0.166666666667 0.500000000000 -0.333333333333 197 | 0.333333333333 -0.500000000000 -0.333333333333 198 | -0.333333333333 0.500000000000 0.333333333333 199 | -0.500000000000 0.166666666667 -0.333333333333 200 | 0.500000000000 -0.166666666667 0.333333333333 201 | 0.166666666667 0.333333333333 -0.333333333333 202 | -0.166666666667 -0.333333333333 0.333333333333 203 | -0.500000000000 -0.166666666667 -0.333333333333 204 | -0.666666666667 0.500000000000 0.333333333333 205 | 0.666666666667 -0.500000000000 -0.333333333333 206 | 0.166666666667 -0.666666666667 0.333333333333 207 | -0.166666666667 0.666666666667 -0.333333333333 208 | 0.500000000000 -0.666666666667 -0.333333333333 209 | -0.500000000000 0.666666666667 0.333333333333 210 | -0.666666666667 0.166666666667 -0.333333333333 211 | 0.666666666667 -0.166666666667 0.333333333333 212 | 0.166666666667 0.500000000000 -0.333333333333 213 | -0.166666666667 -0.500000000000 0.333333333333 214 | -0.333333333333 -0.333333333333 -0.333333333333 215 | 0.333333333333 -0.666666666667 -0.333333333333 216 | -0.333333333333 0.666666666667 0.333333333333 217 | -0.166666666667 0.000000000000 -0.500000000000 218 | -0.166666666667 0.166666666667 0.500000000000 219 | 0.166666666667 -0.166666666667 -0.500000000000 220 | -0.000000000000 -0.166666666667 0.500000000000 221 | 0.000000000000 0.166666666667 -0.500000000000 222 | -0.333333333333 -0.000000000000 -0.500000000000 223 | -0.333333333333 0.333333333333 0.500000000000 224 | 0.333333333333 -0.333333333333 -0.500000000000 225 | 0.000000000000 -0.333333333333 0.500000000000 226 | -0.000000000000 0.333333333333 -0.500000000000 227 | -0.500000000000 0.500000000000 0.500000000000 228 | -0.000000000000 -0.500000000000 0.500000000000 229 | -0.166666666667 -0.166666666667 -0.500000000000 230 | -0.333333333333 0.166666666667 0.500000000000 231 | 0.333333333333 -0.166666666667 -0.500000000000 232 | 0.166666666667 -0.333333333333 0.500000000000 233 | -0.166666666667 0.333333333333 -0.500000000000 234 | -0.333333333333 -0.166666666667 -0.500000000000 235 | -0.500000000000 0.333333333333 0.500000000000 236 | 0.500000000000 -0.333333333333 -0.500000000000 237 | 0.166666666667 -0.500000000000 0.500000000000 238 | -0.166666666667 0.500000000000 -0.500000000000 239 | 0.333333333333 -0.500000000000 -0.500000000000 240 | -0.333333333333 0.500000000000 0.500000000000 241 | -0.500000000000 0.166666666667 -0.500000000000 242 | 0.500000000000 -0.166666666667 0.500000000000 243 | 0.166666666667 0.333333333333 -0.500000000000 244 | -0.166666666667 -0.333333333333 0.500000000000 245 | -0.333333333333 -0.333333333333 -0.500000000000 246 | end kpoints 247 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/wannier90.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | -------------------------------------------------------------------------------- /Wannier90_SnS2/03_HSE06-ElectronicStructure/03_Wannier90/wannier90_band.gnu.ref: -------------------------------------------------------------------------------- 1 | set data style dots 2 | set nokey 3 | set xrange [0: 5.42872] 4 | set yrange [-20.23715 : 49.32527] 5 | set arrow from 0.52229, -20.23715 to 0.52229, 49.32527 nohead 6 | set arrow from 1.66959, -20.23715 to 1.66959, 49.32527 nohead 7 | set arrow from 2.19188, -20.23715 to 2.19188, 49.32527 nohead 8 | set arrow from 3.33918, -20.23715 to 3.33918, 49.32527 nohead 9 | set arrow from 4.33277, -20.23715 to 4.33277, 49.32527 nohead 10 | set arrow from 4.85507, -20.23715 to 4.85507, 49.32527 nohead 11 | set xtics (" G " 0.00000," A " 0.52229," H " 1.66959," K " 2.19188," G " 3.33918," M " 4.33277," L " 4.85507," H " 5.42872) 12 | plot "wannier90_band.dat" 13 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/01_PBE-Wavefunctions/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = Normal 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 4 8 | LASPH = .TRUE. 9 | LREAL = .FALSE. 10 | NBANDS = 64 11 | NELMIN = 5 12 | NPAR = 1 13 | NSW = 0 14 | PREC = Accurate 15 | SYSTEM = SnS2 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/01_PBE-Wavefunctions/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/01_PBE-Wavefunctions/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | DAV: 1 0.213919533620E+03 0.21392E+03 -0.69866E+03 5736 0.414E+02 3 | DAV: 2 0.151360158467E+02 -0.19878E+03 -0.17738E+03 4808 0.195E+02 4 | DAV: 3 -0.130266365051E+02 -0.28163E+02 -0.27658E+02 5208 0.453E+01 5 | DAV: 4 -0.138472226349E+02 -0.82059E+00 -0.81978E+00 5120 0.791E+00 6 | DAV: 5 -0.138556746890E+02 -0.84521E-02 -0.84514E-02 5792 0.801E-01 0.350E+00 7 | DAV: 6 -0.133772672519E+02 0.47841E+00 -0.36180E-01 6552 0.325E+00 0.157E+00 8 | DAV: 7 -0.133466462303E+02 0.30621E-01 -0.82286E-02 5816 0.806E-01 0.724E-01 9 | DAV: 8 -0.133474605199E+02 -0.81429E-03 -0.12263E-02 5288 0.353E-01 0.210E-01 10 | DAV: 9 -0.133479504718E+02 -0.48995E-03 -0.89740E-04 5136 0.866E-02 0.376E-02 11 | DAV: 10 -0.133479984988E+02 -0.48027E-04 -0.11049E-04 5184 0.265E-02 0.139E-02 12 | DAV: 11 -0.133480087431E+02 -0.10244E-04 -0.74901E-06 5008 0.122E-02 0.359E-03 13 | DAV: 12 -0.133480107789E+02 -0.20359E-05 -0.24934E-06 5120 0.537E-03 0.108E-03 14 | DAV: 13 -0.133480109061E+02 -0.12722E-06 -0.14010E-07 5200 0.111E-03 0.532E-04 15 | DAV: 14 -0.133480108052E+02 0.10091E-06 -0.35105E-08 5024 0.611E-04 0.208E-04 16 | DAV: 15 -0.133480108112E+02 -0.59731E-08 -0.22837E-09 4984 0.124E-04 17 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/01_PBE-Wavefunctions/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/01_PBE-Wavefunctions/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 8 cores, 4 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Feb 06 2016 13:21:38) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | LDA part: xc-table for Pade appr. of Perdew 31 | POSCAR, INCAR and KPOINTS ok, starting setup 32 | WARNING: small aliasing (wrap around) errors must be expected 33 | FFT: planning ... 34 | WAVECAR not read 35 | entering main loop 36 | N E dE d eps ncg rms rms(c) 37 | DAV: 1 0.213919533620E+03 0.21392E+03 -0.69866E+03 5736 0.414E+02 38 | DAV: 2 0.151360158467E+02 -0.19878E+03 -0.17738E+03 4808 0.195E+02 39 | DAV: 3 -0.130266365051E+02 -0.28163E+02 -0.27658E+02 5208 0.453E+01 40 | DAV: 4 -0.138472226349E+02 -0.82059E+00 -0.81978E+00 5120 0.791E+00 41 | DAV: 5 -0.138556746890E+02 -0.84521E-02 -0.84514E-02 5792 0.801E-01 0.350E+00 42 | DAV: 6 -0.133772672519E+02 0.47841E+00 -0.36180E-01 6552 0.325E+00 0.157E+00 43 | DAV: 7 -0.133466462303E+02 0.30621E-01 -0.82286E-02 5816 0.806E-01 0.724E-01 44 | DAV: 8 -0.133474605199E+02 -0.81429E-03 -0.12263E-02 5288 0.353E-01 0.210E-01 45 | DAV: 9 -0.133479504718E+02 -0.48995E-03 -0.89740E-04 5136 0.866E-02 0.376E-02 46 | DAV: 10 -0.133479984988E+02 -0.48027E-04 -0.11049E-04 5184 0.265E-02 0.139E-02 47 | DAV: 11 -0.133480087431E+02 -0.10244E-04 -0.74901E-06 5008 0.122E-02 0.359E-03 48 | DAV: 12 -0.133480107789E+02 -0.20359E-05 -0.24934E-06 5120 0.537E-03 0.108E-03 49 | DAV: 13 -0.133480109061E+02 -0.12722E-06 -0.14010E-07 5200 0.111E-03 0.532E-04 50 | DAV: 14 -0.133480108052E+02 0.10091E-06 -0.35105E-08 5024 0.611E-04 0.208E-04 51 | DAV: 15 -0.133480108112E+02 -0.59731E-08 -0.22837E-09 4984 0.124E-04 52 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 53 | writing wavefunctions 54 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/02_PBE-LOPTICS/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = Exact 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 4 8 | LASPH = .TRUE. 9 | LOPTICS = .TRUE. 10 | LREAL = .FALSE. 11 | NBANDS = 64 12 | NELMIN = 5 13 | NPAR = 1 14 | NSW = 0 15 | PREC = Accurate 16 | SYSTEM = SnS2 17 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/02_PBE-LOPTICS/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/02_PBE-LOPTICS/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | N E dE d eps ncg rms rms(c) 2 | DIA: 1 -0.133480108336E+02 -0.13348E+02 0.00000E+00 0 0.000E+00 0.166E-05 3 | DIA: 2 -0.133480108320E+02 0.16216E-08 0.00000E+00 0 0.000E+00 0.848E-06 4 | DIA: 3 -0.133480108308E+02 0.12164E-08 0.00000E+00 0 0.000E+00 0.209E-06 5 | DIA: 4 -0.133480108310E+02 -0.23556E-09 0.00000E+00 0 0.000E+00 0.635E-07 6 | DIA: 5 -0.133480108312E+02 -0.16917E-09 0.00000E+00 0 0.000E+00 7 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 8 | imaginary and real dielectric function 9 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/02_PBE-LOPTICS/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/02_PBE-LOPTICS/vasp.stdout.ref: -------------------------------------------------------------------------------- 1 | running on 32 total cores 2 | distrk: each k-point on 8 cores, 4 groups 3 | distr: one band on 8 cores, 1 groups 4 | using from now: INCAR 5 | vasp.5.4.1 24Jun15 (build Feb 06 2016 13:21:38) complex 6 | 7 | POSCAR found type information on POSCAR Sn S 8 | POSCAR found : 2 types and 3 ions 9 | scaLAPACK will be used 10 | 11 | ----------------------------------------------------------------------------- 12 | | | 13 | | W W AA RRRRR N N II N N GGGG !!! | 14 | | W W A A R R NN N II NN N G G !!! | 15 | | W W A A R R N N N II N N N G !!! | 16 | | W WW W AAAAAA RRRRR N N N II N N N G GGG ! | 17 | | WW WW A A R R N NN II N NN G G | 18 | | W W A A R R N N II N N GGGG !!! | 19 | | | 20 | | You have enabled k-point parallelism (KPAR>1). | 21 | | This developmental code was originally written by Paul Kent at ORNL, | 22 | | and carefully double checked in Vienna. | 23 | | GW as well as linear response parallelism added by Martijn Marsman | 24 | | and Georg Kresse. | 25 | | Carefully verify results versus KPAR=1. | 26 | | Report problems to Paul Kent and Vienna. | 27 | | | 28 | ----------------------------------------------------------------------------- 29 | 30 | LDA part: xc-table for Pade appr. of Perdew 31 | found WAVECAR, reading the header 32 | POSCAR, INCAR and KPOINTS ok, starting setup 33 | WARNING: small aliasing (wrap around) errors must be expected 34 | FFT: planning ... 35 | reading WAVECAR 36 | the WAVECAR file was read successfully 37 | initial charge from wavefunction 38 | entering main loop 39 | N E dE d eps ncg rms rms(c) 40 | DIA: 1 -0.133480108336E+02 -0.13348E+02 0.00000E+00 0 0.000E+00 0.166E-05 41 | DIA: 2 -0.133480108320E+02 0.16216E-08 0.00000E+00 0 0.000E+00 0.848E-06 42 | DIA: 3 -0.133480108308E+02 0.12164E-08 0.00000E+00 0 0.000E+00 0.209E-06 43 | DIA: 4 -0.133480108310E+02 -0.23556E-09 0.00000E+00 0 0.000E+00 0.635E-07 44 | DIA: 5 -0.133480108312E+02 -0.16917E-09 0.00000E+00 0 0.000E+00 45 | 1 F= -.13348011E+02 E0= -.13348011E+02 d E =0.000000E+00 46 | writing wavefunctions 47 | optical routines 48 | imaginary and real dielectric function 49 | recalculating local potential from charge density 50 | direction 1 51 | direction 2 52 | direction 3 53 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = GW0 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 8 8 | LASPH = .TRUE. 9 | LREAL = .FALSE. 10 | NBANDS = 64 11 | !NELMIN = 5 12 | !NPAR = 1 13 | NSW = 0 14 | PREC = Accurate 15 | SYSTEM = SnS2 16 | 17 | LWANNIER90 = .TRUE. 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/OSZICAR.ref: -------------------------------------------------------------------------------- 1 | energies w= 2 | 0.00 0.00 0.64 0.00 1.28 0.00 1.91 0.00 2.54 0.00 3 | 3.16 0.00 3.77 0.00 4.36 0.00 4.95 0.00 5.53 0.00 4 | 6.10 0.00 6.65 0.00 7.20 0.00 7.75 0.00 8.29 0.00 5 | 8.82 0.00 9.35 0.00 9.88 0.00 10.41 0.00 10.95 0.00 6 | 11.49 0.00 12.05 0.00 12.61 0.00 13.19 0.00 13.78 0.00 7 | 14.40 0.00 15.04 0.00 15.72 0.00 16.43 0.00 17.19 0.00 8 | 17.99 0.00 18.86 0.00 19.80 0.00 20.83 0.00 21.97 0.00 9 | 23.23 0.00 24.65 0.00 26.26 0.00 28.11 0.00 30.26 0.00 10 | 32.81 0.00 35.88 0.00 39.65 0.00 44.40 0.00 50.57 0.00 11 | 58.90 0.00 70.75 0.00 88.92 0.00 120.17 0.00 186.30 0.00 12 | NQ= 1 0.0000 0.0000 0.0000, 13 | performed 425000 updates of chi_q(r,r) 14 | total number of BLAS operations 1673.44 Gflops 15 | NQ= 2 0.1667 -0.0000 0.0000, 16 | performed 1399000 updates of chi_q(r,r) 17 | total number of BLAS operations 5246.73 Gflops 18 | NQ= 3 0.3333 0.0000 0.0000, 19 | performed 2373000 updates of chi_q(r,r) 20 | total number of BLAS operations 8915.66 Gflops 21 | NQ= 4 0.5000 -0.0000 0.0000, 22 | performed 3019000 updates of chi_q(r,r) 23 | total number of BLAS operations 11336.78 Gflops 24 | NQ= 5 0.1667 0.1667 0.0000, 25 | performed 3993000 updates of chi_q(r,r) 26 | total number of BLAS operations 14995.02 Gflops 27 | NQ= 6 0.3333 0.1667 0.0000, 28 | performed 5164000 updates of chi_q(r,r) 29 | total number of BLAS operations 19391.29 Gflops 30 | NQ= 7 0.3333 0.3333 0.0000, 31 | performed 5712000 updates of chi_q(r,r) 32 | total number of BLAS operations 21535.51 Gflops 33 | NQ= 8 0.0000 0.0000 0.1667, 34 | performed 6260000 updates of chi_q(r,r) 35 | total number of BLAS operations 23576.69 Gflops 36 | NQ= 9 0.1667 -0.0000 0.1667, 37 | performed 7234000 updates of chi_q(r,r) 38 | total number of BLAS operations 27224.26 Gflops 39 | NQ= 10 0.3333 0.0000 0.1667, 40 | performed 8208000 updates of chi_q(r,r) 41 | total number of BLAS operations 30914.62 Gflops 42 | NQ= 11 0.5000 -0.0000 0.1667, 43 | performed 9182000 updates of chi_q(r,r) 44 | total number of BLAS operations 34648.01 Gflops 45 | NQ= 12 -0.3333 -0.0000 0.1667, 46 | performed 10156000 updates of chi_q(r,r) 47 | total number of BLAS operations 38338.37 Gflops 48 | NQ= 13 -0.1667 0.0000 0.1667, 49 | performed 11130000 updates of chi_q(r,r) 50 | total number of BLAS operations 41985.94 Gflops 51 | NQ= 14 0.1667 0.1667 0.1667, 52 | performed 12301000 updates of chi_q(r,r) 53 | total number of BLAS operations 46305.53 Gflops 54 | NQ= 15 0.3333 0.1667 0.1667, 55 | performed 13472000 updates of chi_q(r,r) 56 | total number of BLAS operations 50740.39 Gflops 57 | NQ= 16 0.5000 0.1667 0.1667, 58 | performed 14643000 updates of chi_q(r,r) 59 | total number of BLAS operations 55175.26 Gflops 60 | NQ= 17 0.3333 0.3333 0.1667, 61 | performed 15273000 updates of chi_q(r,r) 62 | total number of BLAS operations 57703.55 Gflops 63 | NQ= 18 0.0000 0.0000 0.3333, 64 | performed 15821000 updates of chi_q(r,r) 65 | total number of BLAS operations 59673.54 Gflops 66 | NQ= 19 0.1667 -0.0000 0.3333, 67 | performed 16795000 updates of chi_q(r,r) 68 | total number of BLAS operations 63257.40 Gflops 69 | NQ= 20 0.3333 0.0000 0.3333, 70 | performed 17769000 updates of chi_q(r,r) 71 | total number of BLAS operations 66915.64 Gflops 72 | NQ= 21 0.5000 -0.0000 0.3333, 73 | performed 18743000 updates of chi_q(r,r) 74 | total number of BLAS operations 70670.65 Gflops 75 | NQ= 22 -0.3333 -0.0000 0.3333, 76 | performed 19717000 updates of chi_q(r,r) 77 | total number of BLAS operations 74328.89 Gflops 78 | NQ= 23 -0.1667 0.0000 0.3333, 79 | performed 20691000 updates of chi_q(r,r) 80 | total number of BLAS operations 77912.75 Gflops 81 | NQ= 24 0.1667 0.1667 0.3333, 82 | performed 21862000 updates of chi_q(r,r) 83 | total number of BLAS operations 82296.19 Gflops 84 | NQ= 25 0.3333 0.1667 0.3333, 85 | performed 23033000 updates of chi_q(r,r) 86 | total number of BLAS operations 86769.81 Gflops 87 | NQ= 26 0.5000 0.1667 0.3333, 88 | performed 24204000 updates of chi_q(r,r) 89 | total number of BLAS operations 91243.44 Gflops 90 | NQ= 27 0.3333 0.3333 0.3333, 91 | performed 24834000 updates of chi_q(r,r) 92 | total number of BLAS operations 93686.75 Gflops 93 | NQ= 28 0.0000 0.0000 0.5000, 94 | performed 25259000 updates of chi_q(r,r) 95 | total number of BLAS operations 95242.96 Gflops 96 | NQ= 29 0.1667 -0.0000 0.5000, 97 | performed 26233000 updates of chi_q(r,r) 98 | total number of BLAS operations 98784.65 Gflops 99 | NQ= 30 0.3333 0.0000 0.5000, 100 | performed 27207000 updates of chi_q(r,r) 101 | total number of BLAS operations 102539.66 Gflops 102 | NQ= 31 0.5000 -0.0000 0.5000, 103 | performed 27853000 updates of chi_q(r,r) 104 | total number of BLAS operations 105017.74 Gflops 105 | NQ= 32 0.1667 0.1667 0.5000, 106 | performed 28827000 updates of chi_q(r,r) 107 | total number of BLAS operations 108665.31 Gflops 108 | NQ= 33 0.3333 0.1667 0.5000, 109 | performed 29998000 updates of chi_q(r,r) 110 | total number of BLAS operations 113203.90 Gflops 111 | NQ= 34 0.3333 0.3333 0.5000, 112 | performed 30546000 updates of chi_q(r,r) 113 | total number of BLAS operations 115293.26 Gflops 114 | resolving degeneracies of screened two electron integrals 115 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/wannier90-dat.wpout.ref: -------------------------------------------------------------------------------- 1 | 2 | +---------------------------------------------------+ 3 | | | 4 | | WANNIER90 | 5 | | | 6 | +---------------------------------------------------+ 7 | | | 8 | | Welcome to the Maximally-Localized | 9 | | Generalized Wannier Functions code | 10 | | http://www.wannier.org | 11 | | | 12 | | Wannier90 v2.0 Authors: | 13 | | Arash A. Mostofi (Imperial College London) | 14 | | Giovanni Pizzi (EPFL) | 15 | | Ivo Souza (Universidad del Pais Vasco) | 16 | | Jonathan R. Yates (University of Oxford) | 17 | | | 18 | | Wannier90 Contributors: | 19 | | Young-Su Lee (KIST, S. Korea) | 20 | | Matthew Shelley (Imperial College London) | 21 | | Nicolas Poilvert (Penn State University) | 22 | | Raffaello Bianco (Paris 6 and CNRS) | 23 | | Gabriele Sclauzero (ETH Zurich) | 24 | | | 25 | | Wannier77 Authors: | 26 | | Nicola Marzari (EPFL) | 27 | | Ivo Souza (Universidad del Pais Vasco) | 28 | | David Vanderbilt (Rutgers University) | 29 | | | 30 | | Please cite | 31 | | | 32 | | [ref] "Wannier90: A Tool for Obtaining Maximally | 33 | | Localised Wannier Functions" | 34 | | A. A. Mostofi, J. R. Yates, Y.-S. Lee, | 35 | | I. Souza, D. Vanderbilt and N. Marzari | 36 | | Comput. Phys. Commun. 178, 685 (2008) | 37 | | | 38 | | in any publications arising from the use of | 39 | | this code. For the method please cite | 40 | | | 41 | | [ref] "Maximally Localized Generalised Wannier | 42 | | Functions for Composite Energy Bands" | 43 | | N. Marzari and D. Vanderbilt | 44 | | Phys. Rev. B 56 12847 (1997) | 45 | | | 46 | | [ref] "Maximally Localized Wannier Functions | 47 | | for Entangled Energy Bands" | 48 | | I. Souza, N. Marzari and D. Vanderbilt | 49 | | Phys. Rev. B 65 035109 (2001) | 50 | | | 51 | | | 52 | | Copyright (c) 1996-2015 | 53 | | Arash A. Mostofi, Jonathan R. Yates, | 54 | | Young-Su Lee, Giovanni Pizzi, Ivo Souza, | 55 | | David Vanderbilt and Nicola Marzari | 56 | | | 57 | | Release: 2.0.1 2nd April 2015 | 58 | | | 59 | | This program is free software; you can | 60 | | redistribute it and/or modify it under the terms | 61 | | of the GNU General Public License as published by | 62 | | the Free Software Foundation; either version 2 of | 63 | | the License, or (at your option) any later version| 64 | | | 65 | | This program is distributed in the hope that it | 66 | | will be useful, but WITHOUT ANY WARRANTY; without | 67 | | even the implied warranty of MERCHANTABILITY or | 68 | | FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 69 | | General Public License for more details. | 70 | | | 71 | | You should have received a copy of the GNU General| 72 | | Public License along with this program; if not, | 73 | | write to the Free Software Foundation, Inc., | 74 | | 675 Mass Ave, Cambridge, MA 02139, USA. | 75 | | | 76 | +---------------------------------------------------+ 77 | | Execution started on 30Oct2016 at 18:59:20 | 78 | +---------------------------------------------------+ 79 | 80 | ****************************************************************************** 81 | * -> Using CODATA 2006 constant values * 82 | * (http://physics.nist.gov/cuu/Constants/index.html) * 83 | * -> Using Bohr value from CODATA * 84 | ****************************************************************************** 85 | 86 | 87 | Running in parallel on 32 CPUs 88 | 89 | 90 | ------ 91 | SYSTEM 92 | ------ 93 | 94 | Lattice Vectors (Ang) 95 | a_1 3.651000 0.000000 0.000000 96 | a_2 -1.825500 3.161859 0.000000 97 | a_3 0.000000 0.000000 6.015000 98 | 99 | Unit Cell Volume: 69.43684 (Ang^3) 100 | 101 | Reciprocal-Space Vectors (Ang^-1) 102 | b_1 1.720949 0.993590 0.000000 103 | b_2 0.000000 1.987181 0.000000 104 | b_3 0.000000 0.000000 1.044586 105 | 106 | *----------------------------------------------------------------------------* 107 | | Site Fractional Coordinate Cartesian Coordinate (Ang) | 108 | +----------------------------------------------------------------------------+ 109 | | Sn 1 0.00000 0.00000 0.00000 | 0.00000 0.00000 0.00000 | 110 | | S 1 0.33333 0.66667 0.24520 | 0.00000 2.10790 1.47488 | 111 | | S 2 0.66667 0.33333 0.75480 | 1.82550 1.05395 4.54012 | 112 | *----------------------------------------------------------------------------* 113 | 114 | 115 | *-------------------------------- POSTW90 -----------------------------------* 116 | | Number of Wannier Functions : 64 | 117 | | Number of electrons per state : 2 | 118 | | Scissor shift applied to conduction bands : 0.000 | 119 | | Number of valence bands : not defined | 120 | | Fermi energy (eV) : 0.000 | 121 | | Output verbosity (1=low, 5=high) : 1 | 122 | | Timing Level (1=low, 5=high) : 1 | 123 | | Optimisation (0=memory, 3=speed) : 3 | 124 | | Length Unit : Ang | 125 | *----------------------------------------------------------------------------* 126 | *------------------------ Global Smearing Parameters ------------------------* 127 | | Adaptive width smearing : T | 128 | | Adaptive smearing factor : 1.414 | 129 | | Maximum allowed smearing width (eV) : 1.000 | 130 | | Smearing Function Gaussian | 131 | | Global interpolation k-points defined : T | 132 | | Grid size : 32 x 32 x 24 | 133 | *----------------------------------------------------------------------------* 134 | *---------------------------------- DOS -------------------------------------* 135 | | Plotting Density of States : T | 136 | | Compute Wannier Projected DOS : T | 137 | | Minimum energy range for DOS plot : -19.289 | 138 | | Maximum energy range for DOS plot : 47.617 | 139 | | Energy step for DOS plot : 0.010 | 140 | | Using global smearing parameters | 141 | | Using global k-point set for interpolation | 142 | *----------------------------------------------------------------------------* 143 | Time to read parameters 0.044 (sec) 144 | 145 | *---------------------------------- K-MESH ----------------------------------* 146 | +----------------------------------------------------------------------------+ 147 | | Distance to Nearest-Neighbour Shells | 148 | | ------------------------------------ | 149 | | Shell Distance (Ang^-1) Multiplicity | 150 | | ----- ----------------- ------------ | 151 | | 1 0.174098 2 | 152 | | 2 0.331197 6 | 153 | | 3 0.348195 2 | 154 | | 4 0.374168 12 | 155 | | 5 0.480553 12 | 156 | | 6 0.522293 2 | 157 | | 7 0.573650 6 | 158 | | 8 0.599486 12 | 159 | | 9 0.618451 12 | 160 | | 10 0.662394 6 | 161 | | 11 0.671054 12 | 162 | | 12 0.684891 12 | 163 | +----------------------------------------------------------------------------+ 164 | | The b-vectors are chosen automatically | 165 | | The following shells are used: 1, 2 | 166 | +----------------------------------------------------------------------------+ 167 | | Shell # Nearest-Neighbours | 168 | | ----- -------------------- | 169 | | 1 2 | 170 | | 2 6 | 171 | +----------------------------------------------------------------------------+ 172 | | Completeness relation is fully satisfied [Eq. (B1), PRB 56, 12847 (1997)] | 173 | +----------------------------------------------------------------------------+ 174 | | b_k Vectors (Ang^-1) and Weights (Ang^2) | 175 | | ---------------------------------------- | 176 | | No. b_k(x) b_k(y) b_k(z) w_b | 177 | | --- -------------------------------- -------- | 178 | | 1 0.000000 0.000000 0.174098 16.496204 | 179 | | 2 0.000000 0.000000 -0.174098 16.496204 | 180 | | 3 0.286825 0.165598 0.000000 3.038830 | 181 | | 4 -0.286825 -0.165598 0.000000 3.038830 | 182 | | 5 -0.286825 0.165598 0.000000 3.038830 | 183 | | 6 0.286825 -0.165598 0.000000 3.038830 | 184 | | 7 0.000000 -0.331197 0.000000 3.038830 | 185 | | 8 0.000000 0.331197 0.000000 3.038830 | 186 | +----------------------------------------------------------------------------+ 187 | | b_k Directions (Ang^-1) | 188 | | ----------------------- | 189 | | No. x y z | 190 | | --- -------------------------------- | 191 | | 1 0.000000 0.000000 0.174098 | 192 | | 2 0.286825 0.165598 0.000000 | 193 | | 3 -0.286825 0.165598 0.000000 | 194 | | 4 0.000000 -0.331197 0.000000 | 195 | +----------------------------------------------------------------------------+ 196 | 197 | Time to get kmesh 0.100 (sec) 198 | Reading restart information from file wannier90.chk : 199 | written on 30Oct2016 at 18:45:12 ... done 200 | 201 | 202 | Time to read and process 0.348 (sec) 203 | 204 | 205 | Properties calculated in module d o s 206 | -------------------------------------- 207 | 208 | * Total density of states (_dos) 209 | 210 | Energy range: [ -19.2885, 47.6167] eV 211 | 212 | Adaptive smearing width prefactor: 1.414 213 | 214 | 215 | Interpolation grid: 32 32 24 216 | 217 | Sampling the full BZ 218 | Output data files: 219 | 220 | wannier90-dos.dat 221 | 222 | Total Execution Time 37.676 (sec) 223 | 224 | *===========================================================================* 225 | | TIMING INFORMATION | 226 | *===========================================================================* 227 | | Tag Ncalls Time (s)| 228 | |---------------------------------------------------------------------------| 229 | |kmesh: get : 1 0.100| 230 | *---------------------------------------------------------------------------* 231 | 232 | 233 | All done: postw90 exiting 234 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/wannier90-dos.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | 5 | num_wann = 64 ! set to NBANDS by VASP 6 | 7 | kmesh = 32 32 24 8 | 9 | adpt_smr = .true. 10 | smr_type = 'gauss' 11 | 12 | dos = .true. 13 | dos_task = 'dos_plot' 14 | 15 | begin unit_cell_cart 16 | 3.6510000 0.0000000 0.0000000 17 | -1.8255000 3.1618590 0.0000000 18 | 0.0000000 0.0000000 6.0150000 19 | end unit_cell_cart 20 | 21 | begin atoms_cart 22 | Sn 0.0000000 0.0000000 0.0000000 23 | S 0.0000000 2.1079039 1.4748826 24 | S 1.8254982 1.0539519 4.5401216 25 | end atoms_cart 26 | 27 | mp_grid = 6 6 6 28 | 29 | begin kpoints 30 | 0.000000000000 0.000000000000 0.000000000000 31 | 0.166666666667 -0.000000000000 0.000000000000 32 | 0.333333333333 0.000000000000 0.000000000000 33 | 0.500000000000 -0.000000000000 0.000000000000 34 | 0.166666666667 0.166666666667 0.000000000000 35 | 0.333333333333 0.166666666667 0.000000000000 36 | 0.333333333333 0.333333333333 0.000000000000 37 | 0.000000000000 0.000000000000 0.166666666667 38 | 0.166666666667 -0.000000000000 0.166666666667 39 | 0.333333333333 0.000000000000 0.166666666667 40 | 0.500000000000 -0.000000000000 0.166666666667 41 | -0.333333333333 -0.000000000000 0.166666666667 42 | -0.166666666667 0.000000000000 0.166666666667 43 | 0.166666666667 0.166666666667 0.166666666667 44 | 0.333333333333 0.166666666667 0.166666666667 45 | 0.500000000000 0.166666666667 0.166666666667 46 | 0.333333333333 0.333333333333 0.166666666667 47 | 0.000000000000 0.000000000000 0.333333333333 48 | 0.166666666667 -0.000000000000 0.333333333333 49 | 0.333333333333 0.000000000000 0.333333333333 50 | 0.500000000000 -0.000000000000 0.333333333333 51 | -0.333333333333 -0.000000000000 0.333333333333 52 | -0.166666666667 0.000000000000 0.333333333333 53 | 0.166666666667 0.166666666667 0.333333333333 54 | 0.333333333333 0.166666666667 0.333333333333 55 | 0.500000000000 0.166666666667 0.333333333333 56 | 0.333333333333 0.333333333333 0.333333333333 57 | 0.000000000000 0.000000000000 0.500000000000 58 | 0.166666666667 -0.000000000000 0.500000000000 59 | 0.333333333333 0.000000000000 0.500000000000 60 | 0.500000000000 -0.000000000000 0.500000000000 61 | 0.166666666667 0.166666666667 0.500000000000 62 | 0.333333333333 0.166666666667 0.500000000000 63 | 0.333333333333 0.333333333333 0.500000000000 64 | -0.166666666667 0.000000000000 0.000000000000 65 | -0.166666666667 0.166666666667 0.000000000000 66 | 0.166666666667 -0.166666666667 0.000000000000 67 | -0.000000000000 -0.166666666667 0.000000000000 68 | 0.000000000000 0.166666666667 0.000000000000 69 | -0.333333333333 -0.000000000000 0.000000000000 70 | -0.333333333333 0.333333333333 0.000000000000 71 | 0.333333333333 -0.333333333333 0.000000000000 72 | 0.000000000000 -0.333333333333 0.000000000000 73 | -0.000000000000 0.333333333333 0.000000000000 74 | -0.500000000000 0.500000000000 0.000000000000 75 | -0.000000000000 -0.500000000000 0.000000000000 76 | -0.166666666667 -0.166666666667 0.000000000000 77 | -0.333333333333 0.166666666667 0.000000000000 78 | 0.333333333333 -0.166666666667 0.000000000000 79 | 0.166666666667 -0.333333333333 0.000000000000 80 | -0.166666666667 0.333333333333 0.000000000000 81 | -0.333333333333 -0.166666666667 0.000000000000 82 | -0.500000000000 0.333333333333 0.000000000000 83 | 0.500000000000 -0.333333333333 0.000000000000 84 | 0.166666666667 -0.500000000000 0.000000000000 85 | -0.166666666667 0.500000000000 0.000000000000 86 | 0.333333333333 -0.500000000000 0.000000000000 87 | -0.333333333333 0.500000000000 0.000000000000 88 | -0.500000000000 0.166666666667 0.000000000000 89 | 0.500000000000 -0.166666666667 0.000000000000 90 | 0.166666666667 0.333333333333 0.000000000000 91 | -0.166666666667 -0.333333333333 0.000000000000 92 | -0.333333333333 -0.333333333333 0.000000000000 93 | 0.000000000000 0.000000000000 -0.166666666667 94 | -0.166666666667 0.000000000000 -0.166666666667 95 | -0.166666666667 0.166666666667 0.166666666667 96 | 0.166666666667 -0.166666666667 -0.166666666667 97 | -0.000000000000 -0.166666666667 0.166666666667 98 | 0.000000000000 0.166666666667 -0.166666666667 99 | -0.333333333333 -0.000000000000 -0.166666666667 100 | -0.333333333333 0.333333333333 0.166666666667 101 | 0.333333333333 -0.333333333333 -0.166666666667 102 | 0.000000000000 -0.333333333333 0.166666666667 103 | -0.000000000000 0.333333333333 -0.166666666667 104 | -0.500000000000 0.000000000000 -0.166666666667 105 | -0.500000000000 0.500000000000 0.166666666667 106 | 0.500000000000 -0.500000000000 -0.166666666667 107 | -0.000000000000 -0.500000000000 0.166666666667 108 | 0.000000000000 0.500000000000 -0.166666666667 109 | 0.333333333333 0.000000000000 -0.166666666667 110 | 0.333333333333 -0.333333333333 0.166666666667 111 | -0.333333333333 0.333333333333 -0.166666666667 112 | -0.000000000000 0.333333333333 0.166666666667 113 | 0.000000000000 -0.333333333333 -0.166666666667 114 | 0.166666666667 -0.000000000000 -0.166666666667 115 | 0.166666666667 -0.166666666667 0.166666666667 116 | -0.166666666667 0.166666666667 -0.166666666667 117 | 0.000000000000 0.166666666667 0.166666666667 118 | -0.000000000000 -0.166666666667 -0.166666666667 119 | -0.166666666667 -0.166666666667 -0.166666666667 120 | -0.333333333333 0.166666666667 0.166666666667 121 | 0.333333333333 -0.166666666667 -0.166666666667 122 | 0.166666666667 -0.333333333333 0.166666666667 123 | -0.166666666667 0.333333333333 -0.166666666667 124 | 0.166666666667 -0.333333333333 -0.166666666667 125 | -0.166666666667 0.333333333333 0.166666666667 126 | -0.333333333333 0.166666666667 -0.166666666667 127 | 0.333333333333 -0.166666666667 0.166666666667 128 | 0.166666666667 0.166666666667 -0.166666666667 129 | -0.166666666667 -0.166666666667 0.166666666667 130 | -0.333333333333 -0.166666666667 -0.166666666667 131 | -0.500000000000 0.333333333333 0.166666666667 132 | 0.500000000000 -0.333333333333 -0.166666666667 133 | 0.166666666667 -0.500000000000 0.166666666667 134 | -0.166666666667 0.500000000000 -0.166666666667 135 | 0.333333333333 -0.500000000000 -0.166666666667 136 | -0.333333333333 0.500000000000 0.166666666667 137 | -0.500000000000 0.166666666667 -0.166666666667 138 | 0.500000000000 -0.166666666667 0.166666666667 139 | 0.166666666667 0.333333333333 -0.166666666667 140 | -0.166666666667 -0.333333333333 0.166666666667 141 | -0.500000000000 -0.166666666667 -0.166666666667 142 | -0.666666666667 0.500000000000 0.166666666667 143 | 0.666666666667 -0.500000000000 -0.166666666667 144 | 0.166666666667 -0.666666666667 0.166666666667 145 | -0.166666666667 0.666666666667 -0.166666666667 146 | 0.500000000000 -0.666666666667 -0.166666666667 147 | -0.500000000000 0.666666666667 0.166666666667 148 | -0.666666666667 0.166666666667 -0.166666666667 149 | 0.666666666667 -0.166666666667 0.166666666667 150 | 0.166666666667 0.500000000000 -0.166666666667 151 | -0.166666666667 -0.500000000000 0.166666666667 152 | -0.333333333333 -0.333333333333 -0.166666666667 153 | 0.333333333333 -0.666666666667 -0.166666666667 154 | -0.333333333333 0.666666666667 0.166666666667 155 | 0.000000000000 0.000000000000 -0.333333333333 156 | -0.166666666667 0.000000000000 -0.333333333333 157 | -0.166666666667 0.166666666667 0.333333333333 158 | 0.166666666667 -0.166666666667 -0.333333333333 159 | -0.000000000000 -0.166666666667 0.333333333333 160 | 0.000000000000 0.166666666667 -0.333333333333 161 | -0.333333333333 -0.000000000000 -0.333333333333 162 | -0.333333333333 0.333333333333 0.333333333333 163 | 0.333333333333 -0.333333333333 -0.333333333333 164 | 0.000000000000 -0.333333333333 0.333333333333 165 | -0.000000000000 0.333333333333 -0.333333333333 166 | -0.500000000000 0.000000000000 -0.333333333333 167 | -0.500000000000 0.500000000000 0.333333333333 168 | 0.500000000000 -0.500000000000 -0.333333333333 169 | -0.000000000000 -0.500000000000 0.333333333333 170 | 0.000000000000 0.500000000000 -0.333333333333 171 | 0.333333333333 0.000000000000 -0.333333333333 172 | 0.333333333333 -0.333333333333 0.333333333333 173 | -0.333333333333 0.333333333333 -0.333333333333 174 | -0.000000000000 0.333333333333 0.333333333333 175 | 0.000000000000 -0.333333333333 -0.333333333333 176 | 0.166666666667 -0.000000000000 -0.333333333333 177 | 0.166666666667 -0.166666666667 0.333333333333 178 | -0.166666666667 0.166666666667 -0.333333333333 179 | 0.000000000000 0.166666666667 0.333333333333 180 | -0.000000000000 -0.166666666667 -0.333333333333 181 | -0.166666666667 -0.166666666667 -0.333333333333 182 | -0.333333333333 0.166666666667 0.333333333333 183 | 0.333333333333 -0.166666666667 -0.333333333333 184 | 0.166666666667 -0.333333333333 0.333333333333 185 | -0.166666666667 0.333333333333 -0.333333333333 186 | 0.166666666667 -0.333333333333 -0.333333333333 187 | -0.166666666667 0.333333333333 0.333333333333 188 | -0.333333333333 0.166666666667 -0.333333333333 189 | 0.333333333333 -0.166666666667 0.333333333333 190 | 0.166666666667 0.166666666667 -0.333333333333 191 | -0.166666666667 -0.166666666667 0.333333333333 192 | -0.333333333333 -0.166666666667 -0.333333333333 193 | -0.500000000000 0.333333333333 0.333333333333 194 | 0.500000000000 -0.333333333333 -0.333333333333 195 | 0.166666666667 -0.500000000000 0.333333333333 196 | -0.166666666667 0.500000000000 -0.333333333333 197 | 0.333333333333 -0.500000000000 -0.333333333333 198 | -0.333333333333 0.500000000000 0.333333333333 199 | -0.500000000000 0.166666666667 -0.333333333333 200 | 0.500000000000 -0.166666666667 0.333333333333 201 | 0.166666666667 0.333333333333 -0.333333333333 202 | -0.166666666667 -0.333333333333 0.333333333333 203 | -0.500000000000 -0.166666666667 -0.333333333333 204 | -0.666666666667 0.500000000000 0.333333333333 205 | 0.666666666667 -0.500000000000 -0.333333333333 206 | 0.166666666667 -0.666666666667 0.333333333333 207 | -0.166666666667 0.666666666667 -0.333333333333 208 | 0.500000000000 -0.666666666667 -0.333333333333 209 | -0.500000000000 0.666666666667 0.333333333333 210 | -0.666666666667 0.166666666667 -0.333333333333 211 | 0.666666666667 -0.166666666667 0.333333333333 212 | 0.166666666667 0.500000000000 -0.333333333333 213 | -0.166666666667 -0.500000000000 0.333333333333 214 | -0.333333333333 -0.333333333333 -0.333333333333 215 | 0.333333333333 -0.666666666667 -0.333333333333 216 | -0.333333333333 0.666666666667 0.333333333333 217 | -0.166666666667 0.000000000000 -0.500000000000 218 | -0.166666666667 0.166666666667 0.500000000000 219 | 0.166666666667 -0.166666666667 -0.500000000000 220 | -0.000000000000 -0.166666666667 0.500000000000 221 | 0.000000000000 0.166666666667 -0.500000000000 222 | -0.333333333333 -0.000000000000 -0.500000000000 223 | -0.333333333333 0.333333333333 0.500000000000 224 | 0.333333333333 -0.333333333333 -0.500000000000 225 | 0.000000000000 -0.333333333333 0.500000000000 226 | -0.000000000000 0.333333333333 -0.500000000000 227 | -0.500000000000 0.500000000000 0.500000000000 228 | -0.000000000000 -0.500000000000 0.500000000000 229 | -0.166666666667 -0.166666666667 -0.500000000000 230 | -0.333333333333 0.166666666667 0.500000000000 231 | 0.333333333333 -0.166666666667 -0.500000000000 232 | 0.166666666667 -0.333333333333 0.500000000000 233 | -0.166666666667 0.333333333333 -0.500000000000 234 | -0.333333333333 -0.166666666667 -0.500000000000 235 | -0.500000000000 0.333333333333 0.500000000000 236 | 0.500000000000 -0.333333333333 -0.500000000000 237 | 0.166666666667 -0.500000000000 0.500000000000 238 | -0.166666666667 0.500000000000 -0.500000000000 239 | 0.333333333333 -0.500000000000 -0.500000000000 240 | -0.333333333333 0.500000000000 0.500000000000 241 | -0.500000000000 0.166666666667 -0.500000000000 242 | 0.500000000000 -0.166666666667 0.500000000000 243 | 0.166666666667 0.333333333333 -0.500000000000 244 | -0.166666666667 -0.333333333333 0.500000000000 245 | -0.333333333333 -0.333333333333 -0.500000000000 246 | end kpoints 247 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/wannier90.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03a_G0W0/wannier90_band.gnu.ref: -------------------------------------------------------------------------------- 1 | set data style dots 2 | set nokey 3 | set xrange [0: 5.42872] 4 | set yrange [-19.76033 : 47.95005] 5 | set arrow from 0.52229, -19.76033 to 0.52229, 47.95005 nohead 6 | set arrow from 1.66959, -19.76033 to 1.66959, 47.95005 nohead 7 | set arrow from 2.19188, -19.76033 to 2.19188, 47.95005 nohead 8 | set arrow from 3.33918, -19.76033 to 3.33918, 47.95005 nohead 9 | set arrow from 4.33277, -19.76033 to 4.33277, 47.95005 nohead 10 | set arrow from 4.85507, -19.76033 to 4.85507, 47.95005 nohead 11 | set xtics (" G " 0.00000," A " 0.52229," H " 1.66959," K " 2.19188," G " 3.33918," M " 4.33277," L " 4.85507," H " 5.42872) 12 | plot "wannier90_band.dat" 13 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03b_scGW0/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = scGW0 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 8 8 | LASPH = .TRUE. 9 | LREAL = .FALSE. 10 | NBANDS = 64 11 | NELM = 4 !NELMIN = 5 12 | !NPAR = 1 13 | NSW = 0 14 | PREC = Accurate 15 | SYSTEM = SnS2 16 | 17 | LWANNIER90 = .TRUE. 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03b_scGW0/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03b_scGW0/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03b_scGW0/wannier90-dos.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | 5 | num_wann = 64 ! set to NBANDS by VASP 6 | 7 | kmesh = 32 32 24 8 | 9 | adpt_smr = .true. 10 | smr_type = 'gauss' 11 | 12 | dos = .true. 13 | dos_task = 'dos_plot' 14 | 15 | begin unit_cell_cart 16 | 3.6510000 0.0000000 0.0000000 17 | -1.8255000 3.1618590 0.0000000 18 | 0.0000000 0.0000000 6.0150000 19 | end unit_cell_cart 20 | 21 | begin atoms_cart 22 | Sn 0.0000000 0.0000000 0.0000000 23 | S 0.0000000 2.1079039 1.4748826 24 | S 1.8254982 1.0539519 4.5401216 25 | end atoms_cart 26 | 27 | mp_grid = 6 6 6 28 | 29 | begin kpoints 30 | 0.000000000000 0.000000000000 0.000000000000 31 | 0.166666666667 -0.000000000000 0.000000000000 32 | 0.333333333333 0.000000000000 0.000000000000 33 | 0.500000000000 -0.000000000000 0.000000000000 34 | 0.166666666667 0.166666666667 0.000000000000 35 | 0.333333333333 0.166666666667 0.000000000000 36 | 0.333333333333 0.333333333333 0.000000000000 37 | 0.000000000000 0.000000000000 0.166666666667 38 | 0.166666666667 -0.000000000000 0.166666666667 39 | 0.333333333333 0.000000000000 0.166666666667 40 | 0.500000000000 -0.000000000000 0.166666666667 41 | -0.333333333333 -0.000000000000 0.166666666667 42 | -0.166666666667 0.000000000000 0.166666666667 43 | 0.166666666667 0.166666666667 0.166666666667 44 | 0.333333333333 0.166666666667 0.166666666667 45 | 0.500000000000 0.166666666667 0.166666666667 46 | 0.333333333333 0.333333333333 0.166666666667 47 | 0.000000000000 0.000000000000 0.333333333333 48 | 0.166666666667 -0.000000000000 0.333333333333 49 | 0.333333333333 0.000000000000 0.333333333333 50 | 0.500000000000 -0.000000000000 0.333333333333 51 | -0.333333333333 -0.000000000000 0.333333333333 52 | -0.166666666667 0.000000000000 0.333333333333 53 | 0.166666666667 0.166666666667 0.333333333333 54 | 0.333333333333 0.166666666667 0.333333333333 55 | 0.500000000000 0.166666666667 0.333333333333 56 | 0.333333333333 0.333333333333 0.333333333333 57 | 0.000000000000 0.000000000000 0.500000000000 58 | 0.166666666667 -0.000000000000 0.500000000000 59 | 0.333333333333 0.000000000000 0.500000000000 60 | 0.500000000000 -0.000000000000 0.500000000000 61 | 0.166666666667 0.166666666667 0.500000000000 62 | 0.333333333333 0.166666666667 0.500000000000 63 | 0.333333333333 0.333333333333 0.500000000000 64 | -0.166666666667 0.000000000000 0.000000000000 65 | -0.166666666667 0.166666666667 0.000000000000 66 | 0.166666666667 -0.166666666667 0.000000000000 67 | -0.000000000000 -0.166666666667 0.000000000000 68 | 0.000000000000 0.166666666667 0.000000000000 69 | -0.333333333333 -0.000000000000 0.000000000000 70 | -0.333333333333 0.333333333333 0.000000000000 71 | 0.333333333333 -0.333333333333 0.000000000000 72 | 0.000000000000 -0.333333333333 0.000000000000 73 | -0.000000000000 0.333333333333 0.000000000000 74 | -0.500000000000 0.500000000000 0.000000000000 75 | -0.000000000000 -0.500000000000 0.000000000000 76 | -0.166666666667 -0.166666666667 0.000000000000 77 | -0.333333333333 0.166666666667 0.000000000000 78 | 0.333333333333 -0.166666666667 0.000000000000 79 | 0.166666666667 -0.333333333333 0.000000000000 80 | -0.166666666667 0.333333333333 0.000000000000 81 | -0.333333333333 -0.166666666667 0.000000000000 82 | -0.500000000000 0.333333333333 0.000000000000 83 | 0.500000000000 -0.333333333333 0.000000000000 84 | 0.166666666667 -0.500000000000 0.000000000000 85 | -0.166666666667 0.500000000000 0.000000000000 86 | 0.333333333333 -0.500000000000 0.000000000000 87 | -0.333333333333 0.500000000000 0.000000000000 88 | -0.500000000000 0.166666666667 0.000000000000 89 | 0.500000000000 -0.166666666667 0.000000000000 90 | 0.166666666667 0.333333333333 0.000000000000 91 | -0.166666666667 -0.333333333333 0.000000000000 92 | -0.333333333333 -0.333333333333 0.000000000000 93 | 0.000000000000 0.000000000000 -0.166666666667 94 | -0.166666666667 0.000000000000 -0.166666666667 95 | -0.166666666667 0.166666666667 0.166666666667 96 | 0.166666666667 -0.166666666667 -0.166666666667 97 | -0.000000000000 -0.166666666667 0.166666666667 98 | 0.000000000000 0.166666666667 -0.166666666667 99 | -0.333333333333 -0.000000000000 -0.166666666667 100 | -0.333333333333 0.333333333333 0.166666666667 101 | 0.333333333333 -0.333333333333 -0.166666666667 102 | 0.000000000000 -0.333333333333 0.166666666667 103 | -0.000000000000 0.333333333333 -0.166666666667 104 | -0.500000000000 0.000000000000 -0.166666666667 105 | -0.500000000000 0.500000000000 0.166666666667 106 | 0.500000000000 -0.500000000000 -0.166666666667 107 | -0.000000000000 -0.500000000000 0.166666666667 108 | 0.000000000000 0.500000000000 -0.166666666667 109 | 0.333333333333 0.000000000000 -0.166666666667 110 | 0.333333333333 -0.333333333333 0.166666666667 111 | -0.333333333333 0.333333333333 -0.166666666667 112 | -0.000000000000 0.333333333333 0.166666666667 113 | 0.000000000000 -0.333333333333 -0.166666666667 114 | 0.166666666667 -0.000000000000 -0.166666666667 115 | 0.166666666667 -0.166666666667 0.166666666667 116 | -0.166666666667 0.166666666667 -0.166666666667 117 | 0.000000000000 0.166666666667 0.166666666667 118 | -0.000000000000 -0.166666666667 -0.166666666667 119 | -0.166666666667 -0.166666666667 -0.166666666667 120 | -0.333333333333 0.166666666667 0.166666666667 121 | 0.333333333333 -0.166666666667 -0.166666666667 122 | 0.166666666667 -0.333333333333 0.166666666667 123 | -0.166666666667 0.333333333333 -0.166666666667 124 | 0.166666666667 -0.333333333333 -0.166666666667 125 | -0.166666666667 0.333333333333 0.166666666667 126 | -0.333333333333 0.166666666667 -0.166666666667 127 | 0.333333333333 -0.166666666667 0.166666666667 128 | 0.166666666667 0.166666666667 -0.166666666667 129 | -0.166666666667 -0.166666666667 0.166666666667 130 | -0.333333333333 -0.166666666667 -0.166666666667 131 | -0.500000000000 0.333333333333 0.166666666667 132 | 0.500000000000 -0.333333333333 -0.166666666667 133 | 0.166666666667 -0.500000000000 0.166666666667 134 | -0.166666666667 0.500000000000 -0.166666666667 135 | 0.333333333333 -0.500000000000 -0.166666666667 136 | -0.333333333333 0.500000000000 0.166666666667 137 | -0.500000000000 0.166666666667 -0.166666666667 138 | 0.500000000000 -0.166666666667 0.166666666667 139 | 0.166666666667 0.333333333333 -0.166666666667 140 | -0.166666666667 -0.333333333333 0.166666666667 141 | -0.500000000000 -0.166666666667 -0.166666666667 142 | -0.666666666667 0.500000000000 0.166666666667 143 | 0.666666666667 -0.500000000000 -0.166666666667 144 | 0.166666666667 -0.666666666667 0.166666666667 145 | -0.166666666667 0.666666666667 -0.166666666667 146 | 0.500000000000 -0.666666666667 -0.166666666667 147 | -0.500000000000 0.666666666667 0.166666666667 148 | -0.666666666667 0.166666666667 -0.166666666667 149 | 0.666666666667 -0.166666666667 0.166666666667 150 | 0.166666666667 0.500000000000 -0.166666666667 151 | -0.166666666667 -0.500000000000 0.166666666667 152 | -0.333333333333 -0.333333333333 -0.166666666667 153 | 0.333333333333 -0.666666666667 -0.166666666667 154 | -0.333333333333 0.666666666667 0.166666666667 155 | 0.000000000000 0.000000000000 -0.333333333333 156 | -0.166666666667 0.000000000000 -0.333333333333 157 | -0.166666666667 0.166666666667 0.333333333333 158 | 0.166666666667 -0.166666666667 -0.333333333333 159 | -0.000000000000 -0.166666666667 0.333333333333 160 | 0.000000000000 0.166666666667 -0.333333333333 161 | -0.333333333333 -0.000000000000 -0.333333333333 162 | -0.333333333333 0.333333333333 0.333333333333 163 | 0.333333333333 -0.333333333333 -0.333333333333 164 | 0.000000000000 -0.333333333333 0.333333333333 165 | -0.000000000000 0.333333333333 -0.333333333333 166 | -0.500000000000 0.000000000000 -0.333333333333 167 | -0.500000000000 0.500000000000 0.333333333333 168 | 0.500000000000 -0.500000000000 -0.333333333333 169 | -0.000000000000 -0.500000000000 0.333333333333 170 | 0.000000000000 0.500000000000 -0.333333333333 171 | 0.333333333333 0.000000000000 -0.333333333333 172 | 0.333333333333 -0.333333333333 0.333333333333 173 | -0.333333333333 0.333333333333 -0.333333333333 174 | -0.000000000000 0.333333333333 0.333333333333 175 | 0.000000000000 -0.333333333333 -0.333333333333 176 | 0.166666666667 -0.000000000000 -0.333333333333 177 | 0.166666666667 -0.166666666667 0.333333333333 178 | -0.166666666667 0.166666666667 -0.333333333333 179 | 0.000000000000 0.166666666667 0.333333333333 180 | -0.000000000000 -0.166666666667 -0.333333333333 181 | -0.166666666667 -0.166666666667 -0.333333333333 182 | -0.333333333333 0.166666666667 0.333333333333 183 | 0.333333333333 -0.166666666667 -0.333333333333 184 | 0.166666666667 -0.333333333333 0.333333333333 185 | -0.166666666667 0.333333333333 -0.333333333333 186 | 0.166666666667 -0.333333333333 -0.333333333333 187 | -0.166666666667 0.333333333333 0.333333333333 188 | -0.333333333333 0.166666666667 -0.333333333333 189 | 0.333333333333 -0.166666666667 0.333333333333 190 | 0.166666666667 0.166666666667 -0.333333333333 191 | -0.166666666667 -0.166666666667 0.333333333333 192 | -0.333333333333 -0.166666666667 -0.333333333333 193 | -0.500000000000 0.333333333333 0.333333333333 194 | 0.500000000000 -0.333333333333 -0.333333333333 195 | 0.166666666667 -0.500000000000 0.333333333333 196 | -0.166666666667 0.500000000000 -0.333333333333 197 | 0.333333333333 -0.500000000000 -0.333333333333 198 | -0.333333333333 0.500000000000 0.333333333333 199 | -0.500000000000 0.166666666667 -0.333333333333 200 | 0.500000000000 -0.166666666667 0.333333333333 201 | 0.166666666667 0.333333333333 -0.333333333333 202 | -0.166666666667 -0.333333333333 0.333333333333 203 | -0.500000000000 -0.166666666667 -0.333333333333 204 | -0.666666666667 0.500000000000 0.333333333333 205 | 0.666666666667 -0.500000000000 -0.333333333333 206 | 0.166666666667 -0.666666666667 0.333333333333 207 | -0.166666666667 0.666666666667 -0.333333333333 208 | 0.500000000000 -0.666666666667 -0.333333333333 209 | -0.500000000000 0.666666666667 0.333333333333 210 | -0.666666666667 0.166666666667 -0.333333333333 211 | 0.666666666667 -0.166666666667 0.333333333333 212 | 0.166666666667 0.500000000000 -0.333333333333 213 | -0.166666666667 -0.500000000000 0.333333333333 214 | -0.333333333333 -0.333333333333 -0.333333333333 215 | 0.333333333333 -0.666666666667 -0.333333333333 216 | -0.333333333333 0.666666666667 0.333333333333 217 | -0.166666666667 0.000000000000 -0.500000000000 218 | -0.166666666667 0.166666666667 0.500000000000 219 | 0.166666666667 -0.166666666667 -0.500000000000 220 | -0.000000000000 -0.166666666667 0.500000000000 221 | 0.000000000000 0.166666666667 -0.500000000000 222 | -0.333333333333 -0.000000000000 -0.500000000000 223 | -0.333333333333 0.333333333333 0.500000000000 224 | 0.333333333333 -0.333333333333 -0.500000000000 225 | 0.000000000000 -0.333333333333 0.500000000000 226 | -0.000000000000 0.333333333333 -0.500000000000 227 | -0.500000000000 0.500000000000 0.500000000000 228 | -0.000000000000 -0.500000000000 0.500000000000 229 | -0.166666666667 -0.166666666667 -0.500000000000 230 | -0.333333333333 0.166666666667 0.500000000000 231 | 0.333333333333 -0.166666666667 -0.500000000000 232 | 0.166666666667 -0.333333333333 0.500000000000 233 | -0.166666666667 0.333333333333 -0.500000000000 234 | -0.333333333333 -0.166666666667 -0.500000000000 235 | -0.500000000000 0.333333333333 0.500000000000 236 | 0.500000000000 -0.333333333333 -0.500000000000 237 | 0.166666666667 -0.500000000000 0.500000000000 238 | -0.166666666667 0.500000000000 -0.500000000000 239 | 0.333333333333 -0.500000000000 -0.500000000000 240 | -0.333333333333 0.500000000000 0.500000000000 241 | -0.500000000000 0.166666666667 -0.500000000000 242 | 0.500000000000 -0.166666666667 0.500000000000 243 | 0.166666666667 0.333333333333 -0.500000000000 244 | -0.166666666667 -0.333333333333 0.500000000000 245 | -0.333333333333 -0.333333333333 -0.500000000000 246 | end kpoints 247 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03b_scGW0/wannier90.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03b_scGW0/wannier90_band.gnu.ref: -------------------------------------------------------------------------------- 1 | set data style dots 2 | set nokey 3 | set xrange [0: 5.42872] 4 | set yrange [-20.73295 : 47.95005] 5 | set arrow from 0.52229, -20.73295 to 0.52229, 47.95005 nohead 6 | set arrow from 1.66959, -20.73295 to 1.66959, 47.95005 nohead 7 | set arrow from 2.19188, -20.73295 to 2.19188, 47.95005 nohead 8 | set arrow from 3.33918, -20.73295 to 3.33918, 47.95005 nohead 9 | set arrow from 4.33277, -20.73295 to 4.33277, 47.95005 nohead 10 | set arrow from 4.85507, -20.73295 to 4.85507, 47.95005 nohead 11 | set xtics (" G " 0.00000," A " 0.52229," H " 1.66959," K " 2.19188," G " 3.33918," M " 4.33277," L " 4.85507," H " 5.42872) 12 | plot "wannier90_band.dat" 13 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03c_scGW/INCAR: -------------------------------------------------------------------------------- 1 | ALGO = scGW 2 | EDIFF = 1E-8 3 | ENCUT = 400 4 | GGA = PE 5 | ISIF = 2 6 | ISMEAR = -5 7 | KPAR = 8 8 | LASPH = .TRUE. 9 | LREAL = .FALSE. 10 | NBANDS = 64 11 | NELM = 4 !NELMIN = 5 12 | !NPAR = 1 13 | NSW = 0 14 | PREC = Accurate 15 | SYSTEM = SnS2 16 | 17 | LWANNIER90 = .TRUE. 18 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03c_scGW/KPOINTS: -------------------------------------------------------------------------------- 1 | Automatic 6x6x6 2 | 0 3 | Gamma 4 | 6 6 6 5 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03c_scGW/POSCAR: -------------------------------------------------------------------------------- 1 | SnS2 2 | 1.00000000000000 3 | 3.6509999999999998 0.0000000000000000 0.0000000000000000 4 | -1.8254999999999999 3.1618590000000002 0.0000000000000000 5 | 0.0000000000000000 0.0000000000000000 6.0149999999999997 6 | Sn S 7 | 1 2 8 | Direct 9 | -0.0000000000000000 0.0000000000000000 0.0000000000000000 10 | 0.3333330000000032 0.6666659999999993 0.2452007634744307 11 | 0.6666659999999993 0.3333330000000032 0.7547999365255705 12 | 13 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 14 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 15 | 0.00000000E+00 0.00000000E+00 0.00000000E+00 16 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03c_scGW/wannier90-dos.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | 5 | num_wann = 64 ! set to NBANDS by VASP 6 | 7 | kmesh = 32 32 24 8 | 9 | adpt_smr = .true. 10 | smr_type = 'gauss' 11 | 12 | dos = .true. 13 | dos_task = 'dos_plot' 14 | 15 | begin unit_cell_cart 16 | 3.6510000 0.0000000 0.0000000 17 | -1.8255000 3.1618590 0.0000000 18 | 0.0000000 0.0000000 6.0150000 19 | end unit_cell_cart 20 | 21 | begin atoms_cart 22 | Sn 0.0000000 0.0000000 0.0000000 23 | S 0.0000000 2.1079039 1.4748826 24 | S 1.8254982 1.0539519 4.5401216 25 | end atoms_cart 26 | 27 | mp_grid = 6 6 6 28 | 29 | begin kpoints 30 | 0.000000000000 0.000000000000 0.000000000000 31 | 0.166666666667 -0.000000000000 0.000000000000 32 | 0.333333333333 0.000000000000 0.000000000000 33 | 0.500000000000 -0.000000000000 0.000000000000 34 | 0.166666666667 0.166666666667 0.000000000000 35 | 0.333333333333 0.166666666667 0.000000000000 36 | 0.333333333333 0.333333333333 0.000000000000 37 | 0.000000000000 0.000000000000 0.166666666667 38 | 0.166666666667 -0.000000000000 0.166666666667 39 | 0.333333333333 0.000000000000 0.166666666667 40 | 0.500000000000 -0.000000000000 0.166666666667 41 | -0.333333333333 -0.000000000000 0.166666666667 42 | -0.166666666667 0.000000000000 0.166666666667 43 | 0.166666666667 0.166666666667 0.166666666667 44 | 0.333333333333 0.166666666667 0.166666666667 45 | 0.500000000000 0.166666666667 0.166666666667 46 | 0.333333333333 0.333333333333 0.166666666667 47 | 0.000000000000 0.000000000000 0.333333333333 48 | 0.166666666667 -0.000000000000 0.333333333333 49 | 0.333333333333 0.000000000000 0.333333333333 50 | 0.500000000000 -0.000000000000 0.333333333333 51 | -0.333333333333 -0.000000000000 0.333333333333 52 | -0.166666666667 0.000000000000 0.333333333333 53 | 0.166666666667 0.166666666667 0.333333333333 54 | 0.333333333333 0.166666666667 0.333333333333 55 | 0.500000000000 0.166666666667 0.333333333333 56 | 0.333333333333 0.333333333333 0.333333333333 57 | 0.000000000000 0.000000000000 0.500000000000 58 | 0.166666666667 -0.000000000000 0.500000000000 59 | 0.333333333333 0.000000000000 0.500000000000 60 | 0.500000000000 -0.000000000000 0.500000000000 61 | 0.166666666667 0.166666666667 0.500000000000 62 | 0.333333333333 0.166666666667 0.500000000000 63 | 0.333333333333 0.333333333333 0.500000000000 64 | -0.166666666667 0.000000000000 0.000000000000 65 | -0.166666666667 0.166666666667 0.000000000000 66 | 0.166666666667 -0.166666666667 0.000000000000 67 | -0.000000000000 -0.166666666667 0.000000000000 68 | 0.000000000000 0.166666666667 0.000000000000 69 | -0.333333333333 -0.000000000000 0.000000000000 70 | -0.333333333333 0.333333333333 0.000000000000 71 | 0.333333333333 -0.333333333333 0.000000000000 72 | 0.000000000000 -0.333333333333 0.000000000000 73 | -0.000000000000 0.333333333333 0.000000000000 74 | -0.500000000000 0.500000000000 0.000000000000 75 | -0.000000000000 -0.500000000000 0.000000000000 76 | -0.166666666667 -0.166666666667 0.000000000000 77 | -0.333333333333 0.166666666667 0.000000000000 78 | 0.333333333333 -0.166666666667 0.000000000000 79 | 0.166666666667 -0.333333333333 0.000000000000 80 | -0.166666666667 0.333333333333 0.000000000000 81 | -0.333333333333 -0.166666666667 0.000000000000 82 | -0.500000000000 0.333333333333 0.000000000000 83 | 0.500000000000 -0.333333333333 0.000000000000 84 | 0.166666666667 -0.500000000000 0.000000000000 85 | -0.166666666667 0.500000000000 0.000000000000 86 | 0.333333333333 -0.500000000000 0.000000000000 87 | -0.333333333333 0.500000000000 0.000000000000 88 | -0.500000000000 0.166666666667 0.000000000000 89 | 0.500000000000 -0.166666666667 0.000000000000 90 | 0.166666666667 0.333333333333 0.000000000000 91 | -0.166666666667 -0.333333333333 0.000000000000 92 | -0.333333333333 -0.333333333333 0.000000000000 93 | 0.000000000000 0.000000000000 -0.166666666667 94 | -0.166666666667 0.000000000000 -0.166666666667 95 | -0.166666666667 0.166666666667 0.166666666667 96 | 0.166666666667 -0.166666666667 -0.166666666667 97 | -0.000000000000 -0.166666666667 0.166666666667 98 | 0.000000000000 0.166666666667 -0.166666666667 99 | -0.333333333333 -0.000000000000 -0.166666666667 100 | -0.333333333333 0.333333333333 0.166666666667 101 | 0.333333333333 -0.333333333333 -0.166666666667 102 | 0.000000000000 -0.333333333333 0.166666666667 103 | -0.000000000000 0.333333333333 -0.166666666667 104 | -0.500000000000 0.000000000000 -0.166666666667 105 | -0.500000000000 0.500000000000 0.166666666667 106 | 0.500000000000 -0.500000000000 -0.166666666667 107 | -0.000000000000 -0.500000000000 0.166666666667 108 | 0.000000000000 0.500000000000 -0.166666666667 109 | 0.333333333333 0.000000000000 -0.166666666667 110 | 0.333333333333 -0.333333333333 0.166666666667 111 | -0.333333333333 0.333333333333 -0.166666666667 112 | -0.000000000000 0.333333333333 0.166666666667 113 | 0.000000000000 -0.333333333333 -0.166666666667 114 | 0.166666666667 -0.000000000000 -0.166666666667 115 | 0.166666666667 -0.166666666667 0.166666666667 116 | -0.166666666667 0.166666666667 -0.166666666667 117 | 0.000000000000 0.166666666667 0.166666666667 118 | -0.000000000000 -0.166666666667 -0.166666666667 119 | -0.166666666667 -0.166666666667 -0.166666666667 120 | -0.333333333333 0.166666666667 0.166666666667 121 | 0.333333333333 -0.166666666667 -0.166666666667 122 | 0.166666666667 -0.333333333333 0.166666666667 123 | -0.166666666667 0.333333333333 -0.166666666667 124 | 0.166666666667 -0.333333333333 -0.166666666667 125 | -0.166666666667 0.333333333333 0.166666666667 126 | -0.333333333333 0.166666666667 -0.166666666667 127 | 0.333333333333 -0.166666666667 0.166666666667 128 | 0.166666666667 0.166666666667 -0.166666666667 129 | -0.166666666667 -0.166666666667 0.166666666667 130 | -0.333333333333 -0.166666666667 -0.166666666667 131 | -0.500000000000 0.333333333333 0.166666666667 132 | 0.500000000000 -0.333333333333 -0.166666666667 133 | 0.166666666667 -0.500000000000 0.166666666667 134 | -0.166666666667 0.500000000000 -0.166666666667 135 | 0.333333333333 -0.500000000000 -0.166666666667 136 | -0.333333333333 0.500000000000 0.166666666667 137 | -0.500000000000 0.166666666667 -0.166666666667 138 | 0.500000000000 -0.166666666667 0.166666666667 139 | 0.166666666667 0.333333333333 -0.166666666667 140 | -0.166666666667 -0.333333333333 0.166666666667 141 | -0.500000000000 -0.166666666667 -0.166666666667 142 | -0.666666666667 0.500000000000 0.166666666667 143 | 0.666666666667 -0.500000000000 -0.166666666667 144 | 0.166666666667 -0.666666666667 0.166666666667 145 | -0.166666666667 0.666666666667 -0.166666666667 146 | 0.500000000000 -0.666666666667 -0.166666666667 147 | -0.500000000000 0.666666666667 0.166666666667 148 | -0.666666666667 0.166666666667 -0.166666666667 149 | 0.666666666667 -0.166666666667 0.166666666667 150 | 0.166666666667 0.500000000000 -0.166666666667 151 | -0.166666666667 -0.500000000000 0.166666666667 152 | -0.333333333333 -0.333333333333 -0.166666666667 153 | 0.333333333333 -0.666666666667 -0.166666666667 154 | -0.333333333333 0.666666666667 0.166666666667 155 | 0.000000000000 0.000000000000 -0.333333333333 156 | -0.166666666667 0.000000000000 -0.333333333333 157 | -0.166666666667 0.166666666667 0.333333333333 158 | 0.166666666667 -0.166666666667 -0.333333333333 159 | -0.000000000000 -0.166666666667 0.333333333333 160 | 0.000000000000 0.166666666667 -0.333333333333 161 | -0.333333333333 -0.000000000000 -0.333333333333 162 | -0.333333333333 0.333333333333 0.333333333333 163 | 0.333333333333 -0.333333333333 -0.333333333333 164 | 0.000000000000 -0.333333333333 0.333333333333 165 | -0.000000000000 0.333333333333 -0.333333333333 166 | -0.500000000000 0.000000000000 -0.333333333333 167 | -0.500000000000 0.500000000000 0.333333333333 168 | 0.500000000000 -0.500000000000 -0.333333333333 169 | -0.000000000000 -0.500000000000 0.333333333333 170 | 0.000000000000 0.500000000000 -0.333333333333 171 | 0.333333333333 0.000000000000 -0.333333333333 172 | 0.333333333333 -0.333333333333 0.333333333333 173 | -0.333333333333 0.333333333333 -0.333333333333 174 | -0.000000000000 0.333333333333 0.333333333333 175 | 0.000000000000 -0.333333333333 -0.333333333333 176 | 0.166666666667 -0.000000000000 -0.333333333333 177 | 0.166666666667 -0.166666666667 0.333333333333 178 | -0.166666666667 0.166666666667 -0.333333333333 179 | 0.000000000000 0.166666666667 0.333333333333 180 | -0.000000000000 -0.166666666667 -0.333333333333 181 | -0.166666666667 -0.166666666667 -0.333333333333 182 | -0.333333333333 0.166666666667 0.333333333333 183 | 0.333333333333 -0.166666666667 -0.333333333333 184 | 0.166666666667 -0.333333333333 0.333333333333 185 | -0.166666666667 0.333333333333 -0.333333333333 186 | 0.166666666667 -0.333333333333 -0.333333333333 187 | -0.166666666667 0.333333333333 0.333333333333 188 | -0.333333333333 0.166666666667 -0.333333333333 189 | 0.333333333333 -0.166666666667 0.333333333333 190 | 0.166666666667 0.166666666667 -0.333333333333 191 | -0.166666666667 -0.166666666667 0.333333333333 192 | -0.333333333333 -0.166666666667 -0.333333333333 193 | -0.500000000000 0.333333333333 0.333333333333 194 | 0.500000000000 -0.333333333333 -0.333333333333 195 | 0.166666666667 -0.500000000000 0.333333333333 196 | -0.166666666667 0.500000000000 -0.333333333333 197 | 0.333333333333 -0.500000000000 -0.333333333333 198 | -0.333333333333 0.500000000000 0.333333333333 199 | -0.500000000000 0.166666666667 -0.333333333333 200 | 0.500000000000 -0.166666666667 0.333333333333 201 | 0.166666666667 0.333333333333 -0.333333333333 202 | -0.166666666667 -0.333333333333 0.333333333333 203 | -0.500000000000 -0.166666666667 -0.333333333333 204 | -0.666666666667 0.500000000000 0.333333333333 205 | 0.666666666667 -0.500000000000 -0.333333333333 206 | 0.166666666667 -0.666666666667 0.333333333333 207 | -0.166666666667 0.666666666667 -0.333333333333 208 | 0.500000000000 -0.666666666667 -0.333333333333 209 | -0.500000000000 0.666666666667 0.333333333333 210 | -0.666666666667 0.166666666667 -0.333333333333 211 | 0.666666666667 -0.166666666667 0.333333333333 212 | 0.166666666667 0.500000000000 -0.333333333333 213 | -0.166666666667 -0.500000000000 0.333333333333 214 | -0.333333333333 -0.333333333333 -0.333333333333 215 | 0.333333333333 -0.666666666667 -0.333333333333 216 | -0.333333333333 0.666666666667 0.333333333333 217 | -0.166666666667 0.000000000000 -0.500000000000 218 | -0.166666666667 0.166666666667 0.500000000000 219 | 0.166666666667 -0.166666666667 -0.500000000000 220 | -0.000000000000 -0.166666666667 0.500000000000 221 | 0.000000000000 0.166666666667 -0.500000000000 222 | -0.333333333333 -0.000000000000 -0.500000000000 223 | -0.333333333333 0.333333333333 0.500000000000 224 | 0.333333333333 -0.333333333333 -0.500000000000 225 | 0.000000000000 -0.333333333333 0.500000000000 226 | -0.000000000000 0.333333333333 -0.500000000000 227 | -0.500000000000 0.500000000000 0.500000000000 228 | -0.000000000000 -0.500000000000 0.500000000000 229 | -0.166666666667 -0.166666666667 -0.500000000000 230 | -0.333333333333 0.166666666667 0.500000000000 231 | 0.333333333333 -0.166666666667 -0.500000000000 232 | 0.166666666667 -0.333333333333 0.500000000000 233 | -0.166666666667 0.333333333333 -0.500000000000 234 | -0.333333333333 -0.166666666667 -0.500000000000 235 | -0.500000000000 0.333333333333 0.500000000000 236 | 0.500000000000 -0.333333333333 -0.500000000000 237 | 0.166666666667 -0.500000000000 0.500000000000 238 | -0.166666666667 0.500000000000 -0.500000000000 239 | 0.333333333333 -0.500000000000 -0.500000000000 240 | -0.333333333333 0.500000000000 0.500000000000 241 | -0.500000000000 0.166666666667 -0.500000000000 242 | 0.500000000000 -0.166666666667 0.500000000000 243 | 0.166666666667 0.333333333333 -0.500000000000 244 | -0.166666666667 -0.333333333333 0.500000000000 245 | -0.333333333333 -0.333333333333 -0.500000000000 246 | end kpoints 247 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03c_scGW/wannier90.win: -------------------------------------------------------------------------------- 1 | Begin Projections 2 | Random 3 | End Projections 4 | -------------------------------------------------------------------------------- /Wannier90_SnS2/04_GW-ElectronicStructure/03c_scGW/wannier90_band.gnu.ref: -------------------------------------------------------------------------------- 1 | set data style dots 2 | set nokey 3 | set xrange [0: 5.42872] 4 | set yrange [-21.30176 : 47.95371] 5 | set arrow from 0.52229, -21.30176 to 0.52229, 47.95371 nohead 6 | set arrow from 1.66959, -21.30176 to 1.66959, 47.95371 nohead 7 | set arrow from 2.19188, -21.30176 to 2.19188, 47.95371 nohead 8 | set arrow from 3.33918, -21.30176 to 3.33918, 47.95371 nohead 9 | set arrow from 4.33277, -21.30176 to 4.33277, 47.95371 nohead 10 | set arrow from 4.85507, -21.30176 to 4.85507, 47.95371 nohead 11 | set xtics (" G " 0.00000," A " 0.52229," H " 1.66959," K " 2.19188," G " 3.33918," M " 4.33277," L " 4.85507," H " 5.42872) 12 | plot "wannier90_band.dat" 13 | -------------------------------------------------------------------------------- /Wannier90_SnS2/README.md: -------------------------------------------------------------------------------- 1 | Wannier90_SnS2 2 | ========================= 3 | 4 | Input files to calculate the electronic band structure and DoS of SnS2 using the VASP Wannier90 interface and the PBE and HSE06 functionals and the *G*0*W*0, sc*GW*0 and sc*GW* methods. 5 | 6 | Running the example 7 | ------------------- 8 | 9 | **Note:** You will need to obtain the Sn_d and S PBE PAW pseudopotentials (`POTCAR` files) from the VASP database to run these calculations. 10 | 11 | 1. Perform an ionic relaxation with the experimental lattice parameters using PBEsol with the DFT-D3 dispersion correction and fairly tight convergence criteria. 12 | 13 | 2. Perform an electronic-structure calculation with PBE: 14 | 15 | * Run VASP with the skeleton `wannier90.win` in the working directory; VASP will add the missing information and will generate several other input files needed by Wannier90. 16 | 17 | * Add the additional band-structure tags from `wannier90_band.win` and run Wannier90 with e.g. `wannier90.x wannier90` to calculate the maximally-localised Wannier functions (written to`wannier90.chk`) and the band structure. The result is saved into `wannier90_band.dat`, `wannier90_band.kpt`, `wannier90_band.gnu` for plotting. 18 | 19 | * Replace the band-structure tags with the `postw90.x` tags in `wannier90-dos.win` and run `postw90.x` with e.g. `mpirun -np 32 postw90.x wannier90` to calculate the DoS. The result is saved into `wannier90-dos.dat`. 20 | 21 | 3. Perform an electronic-structure calculation with HSE06. The complete calculation consists of three three parts: 22 | 23 | * First, perform an electronic-structure calculation with PBE to obtain converged GGA wavefunctions (this step can be skipped, but should save time). 24 | 25 | * Copy the `WAVECAR` file and use the GGA wavefunctions as an initial guess for an electronic-structure calculation with HSE06. 26 | 27 | * Copy the `WAVECAR` file and re-run VASP with `ALGO = None`, `NELMIN = 0`, `NPAR = ` and `LWANNIER90 = .TRUE.` to generate Wannier90 input from the converged HSE06 wavefunctions (post-process as in #2). 28 | 29 | 4. Perform electronic-structure calculations with the *GW* routines. This calculation is again done in several separate steps: 30 | 31 | * First, again perform an electronic-structure calculation with PBE to obtain converged wavefunctions (this is identical to the first step in #3, and can again be skipped if desired). 32 | 33 | * Copy the `WAVECAR` and re-run VASP with `ALGO = Exact` and `LOPTICS = .TRUE.` to obtain accurate conduction states and a `WAVEDER` file. 34 | 35 | * For each of the *GW* calculations (a. *G*0*W*0, b. sc*GW*0, c. sc*GW*), copy the `WAVECAR` and `WAVEDER` files from the previous step, and run VASP to generate the Wannier90 input from the calculations (again, post-process as in #2). 36 | 37 | Links 38 | ----- 39 | 40 | - [http://www.slideshare.net/jmskelton/vasp-and-wannier90-a-quick-tutorial](http://www.slideshare.net/jmskelton/vasp-and-wannier90-a-quick-tutorial): A brief overview of using the Wannier90 interface with VASP. 41 | 42 | - [http://wannier.org/user_guide.html](http://wannier.org/user_guide.html): Wannier90 user-guide pages with links to a PDF manual and tutorial. 43 | --------------------------------------------------------------------------------