Author Topic: Inelastic transmission  (Read 3459 times)

0 Members and 1 Guest are viewing this topic.

Offline ams_nanolab

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 389
  • Country: in
  • Reputation: 11
    • View Profile
Inelastic transmission
« 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?

Offline ams_nanolab

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 389
  • Country: in
  • Reputation: 11
    • View Profile
Re: Inelastic transmission
« Reply #1 on: December 18, 2015, 07:16 »
Please reply  ::)

Offline Jess Wellendorff

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 933
  • Country: dk
  • Reputation: 29
    • View Profile
Re: Inelastic transmission
« Reply #2 on: December 21, 2015, 10:24 »
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.

Offline ams_nanolab

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 389
  • Country: in
  • Reputation: 11
    • View Profile
Re: Inelastic transmission
« Reply #3 on: December 23, 2015, 11:32 »
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.

Offline Jess Wellendorff

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 933
  • Country: dk
  • Reputation: 29
    • View Profile
Re: Inelastic transmission
« Reply #4 on: January 4, 2016, 09:49 »
I totally agree. We are currently moving the tutorials to a new website (docs.quantumwise.com), and updating them with the new GUI options is part of this process.