Dear Ponce
I am interested to calculate the charge carrier mobility of 2D system. I have seen your code in the tutorial "Resistivity and mobility with EPW
" to generate a k-point mesh for bulk systems for nscf calculation.
Could you please help me how to generate a k-point mesh for 2D systems using your code.
%%%%%%%%%%%%%%%%%%%%%%%%
import numpy as np
N = 6
for ii in np.arange(0,1.0,1.0/N):
for jj in np.arange(0,1.0,1.0/N):
for kk in np.arange(0,1.0,1.0/N):
print ii,' ',jj, ' ',kk, ' ',1.0/(N**3)
%%%%%%%%%%%%%%%%%%%%%%%%%%%
K-point mesh for 2D materials
Moderator: stiwari
-
- Posts: 23
- Joined: Tue Aug 21, 2018 11:24 am
- Affiliation:
Re: K-point mesh for 2D materials
Hello,
I guess something like this should work:
I guess something like this should work:
Code: Select all
import numpy as np
N = 6
for ii in np.arange(0,1.0,1.0/N):
for jj in np.arange(0,1.0,1.0/N):
print ii,' ',jj, ' 0.0 ',1.0/(N**2)
Prof. Samuel Poncé
Chercheur qualifié F.R.S.-FNRS / Professeur UCLouvain
Institute of Condensed Matter and Nanosciences
UCLouvain, Belgium
Web: https://www.samuelponce.com
Chercheur qualifié F.R.S.-FNRS / Professeur UCLouvain
Institute of Condensed Matter and Nanosciences
UCLouvain, Belgium
Web: https://www.samuelponce.com
-
- Posts: 23
- Joined: Tue Aug 21, 2018 11:24 am
- Affiliation:
Re: K-point mesh for 2D materials
Dear Samuel Ponc
It is really useful. Thank you for your help.
Dr Showkat Mir
Postdoctoral Fellow
Department of Chemical Engineering
IIT Kanpur, India-208016.
It is really useful. Thank you for your help.
Dr Showkat Mir
Postdoctoral Fellow
Department of Chemical Engineering
IIT Kanpur, India-208016.