Author Topic: Question on bandstructure and DOS  (Read 2233 times)

0 Members and 1 Guest are viewing this topic.

Offline kaypu

  • QuantumATK Guru
  • ****
  • Posts: 135
  • Country: 00
  • Reputation: 1
    • View Profile
Question on bandstructure and DOS
« on: October 17, 2012, 09:13 »
Dear QuantumWise:

    i've calculated a bulk system, the bandstructure and according Dos are in the attachement, in the band pic, the gap is in the Z,and bandgap is 1.0eV,but for DOS pic, during -0.5~0.5eV, there are still some DOS, why?

my system is one-dimensional, and the k-point is 1*1*9, all the script are made by VNL

best

Offline Anders Blom

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 5435
  • Country: dk
  • Reputation: 89
    • View Profile
    • QuantumATK at Synopsys
Re: Question on bandstructure and DOS
« Reply #1 on: October 17, 2012, 10:11 »
Odd, need script.

Offline kaypu

  • QuantumATK Guru
  • ****
  • Posts: 135
  • Country: 00
  • Reputation: 1
    • View Profile
Re: Question on bandstructure and DOS
« Reply #2 on: October 17, 2012, 13:10 »
i've sent the script to you by email

best
kaypu

Offline Anders Blom

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 5435
  • Country: dk
  • Reputation: 89
    • View Profile
    • QuantumATK at Synopsys
Re: Question on bandstructure and DOS
« Reply #3 on: October 17, 2012, 13:52 »
Fortunately this has a simple explanation, although I have to admit it's far from obvious... Short version: increase the number of k-points for the DOS to 50 or 100 in the Z direction and all is fine. You may want this anyway, since the accuracy at 9 points is highly questionable. Long version: ATK chooses a Gaussian broadening by default if the number of k-points is very low. This is good for molecules, but probably not very good for periodic structure. The breakpoint is 10 points - with time-reversal taken into account, meaning above 1,1,21 k-points it looks fine, since it uses the tetrahedron method instead. You could force the use of the tetrahedron method (at least for the log file, or custom plotting) by adding to the script
Code: python
dos_tetra = density_of_states.tetrahedronSpectrum()
if processIsMaster:
    for e,dos in zip(density_of_states.energies(), dos_tetra):
        print e.inUnitsOf(eV),dos.inUnitsOf(eV**-1)
For up to 20 k-points in C, this will be different from nlprint(density_of_states), for 21 and above it will be the same. See http://quantumwise.com/documents/manuals/latest/ReferenceManual/index.html/ref.densityofstates.html

Offline kaypu

  • QuantumATK Guru
  • ****
  • Posts: 135
  • Country: 00
  • Reputation: 1
    • View Profile
Re: Question on bandstructure and DOS
« Reply #4 on: October 17, 2012, 14:24 »
Thank you professor Anders, the problem is solved