Author Topic: MoS2 Bandstructure  (Read 2916 times)

0 Members and 1 Guest are viewing this topic.

Offline kesh

  • Regular QuantumATK user
  • **
  • Posts: 14
  • Country: us
  • Reputation: 0
    • View Profile
MoS2 Bandstructure
« on: July 18, 2013, 08:41 »
Dear Sir,
I have been trying to calculate the bandstructure of the attached MoS2 script but the calculation seems to be running much longer (running for days) therefore I'm sure it is something I'm not doing right. I'm not particularly sure about the k-point sampling, kindly take a look and direct me.

2. I am also trying to use Ag metal as electrodes on the the MoS2 monolayer and find the I-V curve but my problem is how to add the Ag metal on the MoS2 layer. I have also attached the script of the Ag metal.

3. Also, if I am able to successfully run the calculation, can I use the script in http://quantumwise.com/forum/index.php?topic=2096.0 and modify it to compare the symmetry path G-M-K-G.

Thank you.

Offline Carsten

  • Regular QuantumATK user
  • **
  • Posts: 11
  • Country: dk
  • Reputation: 1
    • View Profile
Re: MoS2 Bandstructure
« Reply #1 on: July 18, 2013, 16:34 »
hi, to your first question:
Quote
I'm not particularly sure about the k-point sampling, kindly take a look and direct me
the k-sampling is indeed odd. you probably want a k-grid of (nkx, nky, nkz) = (5, 1, 5) as opposed to (5, 5, 1) as in your script. apply the following change in mos2structure.py:
Code
numerical_accuracy_parameters = NumericalAccuracyParameters(
    k_point_sampling=(5, 1, 5),
    )
or use the gui. With that change applied, i can run it in roughly 20 minutes on a single core. hope that helps you to get started. best regards, carsten