QuantumATK Forum
QuantumATK => General Questions and Answers => Topic started by: ams_nanolab on December 17, 2015, 07:26
-
In the tutorial
http://quantumwise.com/publications/tutorials/item/837-inelastic-transmission
in the script for inelastic transmission spectra you have
# Define energies; take only Fermi energy.
energies = [0.0]*eV
# Define q-points; take only points in first quadrant in (qx,qy) space
numQx = 7
numQy = 7
dQx = 0.5
dQy = 0.5
qx = numpy.linspace(0,dQx,numQx)
qy = numpy.linspace(0,dQy,numQy)
q_points = []
for x in qx:
for y in qy:
q_points.append([float(x),float(y),0.0])
# Define k-points; take only k=(0,0)
k_points = [[0.0,0.0,0.0]]
What prompts the particular choice of numQx = 7, numQy = 7 and k_points = [[0.0,0.0,0.0]]. How will it vary for other materials?
-
Please reply ::)
-
A thorough explanation for the choice of k-point is given in the tutorial. The 7x7 q-grid is simply chosen as a) un-even and b) sufficiently dense but not overly so.
-
In ATK 2015.1 most of these scripts in the tutorial are available in the GUI as analysis blocks. Would be nice if the tutorial could be updated, also a more general case of device (not just Si p-n junction) would be helpful to most users.
-
I totally agree. We are currently moving the tutorials to a new website (docs.quantumwise.com (http://docs.quantumwise.com)), and updating them with the new GUI options is part of this process.