QuantumATK Forum
QuantumATK => General Questions and Answers => Topic started by: Hesam on November 26, 2013, 04:53
-
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?
-
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.
-
Thanks for the help. Is it possible to do this through VNL?
-
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.
-
Thanks, it worked.