Author Topic: routes of bandstructure  (Read 2341 times)

0 Members and 1 Guest are viewing this topic.

Offline jjorozco

  • New QuantumATK user
  • *
  • Posts: 2
  • Country: pr
  • Reputation: 0
    • View Profile
routes of bandstructure
« on: June 2, 2016, 16:36 »
hello.. I was reading  some papers about bandstructure and in theirs band structures  they use the letters M, Z, A, Z|X, R|M  as routers .. so does someone knows in ATK what is the meaning of that letters? i know that "G" is (gamma) in ATK but W,Y which letter correspond ? (e.g W maybe is the M in the paper) .

Offline Jess Wellendorff

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 933
  • Country: dk
  • Reputation: 29
    • View Profile
Re: routes of bandstructure
« Reply #1 on: June 3, 2016, 10:41 »
Symmetry points in the Brillouin zone are specific to each Bravais lattice type. You have 2 options if you want to see the symmetry points defined in ATK for some lattice: 1) Use the Brillouin Zone Viewer (Builder --> Bulk Tools). 2) Use the command line:
Code
lattice = FaceCenteredCubic(4*Angstrom)
lattice.symmetryPoints()
{'G': array([ 0.,  0.,  0.]),
 'K': array([ 0.375,  0.375,  0.75 ]),
 'L': array([ 0.5,  0.5,  0.5]),
 'U': array([ 0.625,  0.25 ,  0.625]),
 'W': array([ 0.5 ,  0.25,  0.75]),
 'X': array([ 0.5,  0. ,  0.5])}

Offline jjorozco

  • New QuantumATK user
  • *
  • Posts: 2
  • Country: pr
  • Reputation: 0
    • View Profile
Re: routes of bandstructure
« Reply #2 on: June 3, 2016, 16:22 »
ohh i see... thank u so much, now i got it .. u have been helpful!