Author Topic: Band structure of 4 layers of MoS2 [disables K-M points]  (Read 3703 times)

0 Members and 1 Guest are viewing this topic.

Offline Hesam

  • Heavy QuantumATK user
  • ***
  • Posts: 29
  • Country: us
  • Reputation: 0
    • View Profile
I can get band structure of mono layer and bilayer MoS2 but when I create 4 mono-layers of MoS2 on top of each other, the high symmetry points like K and M gets disabled in the band structure solver. So how can I get the band structure?

Offline zh

  • QuantumATK Support
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1141
  • Reputation: 24
    • View Profile
Re: Band structure of 4 layers of MoS2 [disables K-M points]
« Reply #1 on: November 26, 2013, 08:23 »
The structure of 4 layers of MoS2 may be created by defining three lattice vectors and calling UnitCell(defined three lattice vectors), e.g.,
vector_a = [1.5802, -2.73699, 0.0]*Angstrom
vector_b = [1.5802, 2.73699, 0.0]*Angstrom
vector_c = [0.0, 0.0, 60.0]*Angstrom
lattice = UnitCell(vector_a, vector_b, vector_c)

You can alternatively define a hexagonal Bravias lattice by calling  Hexagonal(a=xx *Angstrom, c=xxx*Angstrom). e.g.,
lattice = Hexagonal(3.1604*Angstrom, 12.295*Angstrom)
You have to edit the script file and change the definition of lattice.
In this way, you can choose the K and M points in band structure analyser.
« Last Edit: November 27, 2013, 13:29 by zh »

Offline Hesam

  • Heavy QuantumATK user
  • ***
  • Posts: 29
  • Country: us
  • Reputation: 0
    • View Profile
Re: Band structure of 4 layers of MoS2 [disables K-M points]
« Reply #2 on: November 27, 2013, 07:09 »
Thanks for the help. Is it possible to do this through VNL?

Offline Anders Blom

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 5428
  • Country: dk
  • Reputation: 89
    • View Profile
    • QuantumATK at Synopsys
Re: Band structure of 4 layers of MoS2 [disables K-M points]
« Reply #3 on: November 27, 2013, 09:37 »
Sure, after you make the repetition just go into Bulk Tools>Lattice Parameters and change the lattice type to Hexagonal, and double-check that nothing weird happened.

In 13.8.1 the repetitions will keep the symmetries of the lattice.

Offline Hesam

  • Heavy QuantumATK user
  • ***
  • Posts: 29
  • Country: us
  • Reputation: 0
    • View Profile
Re: Band structure of 4 layers of MoS2 [disables K-M points]
« Reply #4 on: November 27, 2013, 21:36 »
Thanks, it worked.