Author Topic: LDOS Calculation of Device structure  (Read 2686 times)

0 Members and 1 Guest are viewing this topic.

Offline Tufan

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: in
  • Reputation: 0
    • View Profile
LDOS Calculation of Device structure
« on: March 28, 2016, 15:06 »
In the following paper : K. Stokbro et. al., "Atomistic simulation of a III-V p-i-n junction: Comparison of density functional and tight-binding approaches", International Conference on Simulation of Semiconductor Processes and Devices (SISPAD), 2013, 10.1109/SISPAD.2013.6650654, the material and device properties are calculated by both DFT and SE methods, but the LDOS has been calculated by DFT only. How the LDOS of the same device structure can be calculated by Semi empirical methods specially by Slater Koster method?

Offline zh

  • QuantumATK Support
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1141
  • Reputation: 24
    • View Profile
Re: LDOS Calculation of Device structure
« Reply #1 on: March 28, 2016, 15:21 »
You may refer to the following page, which gives an example to calculate the device of density of state by DeviceHuckelCalculator:
http://www.quantumwise.com/documents/manuals/latest/ReferenceManual/index.html/ref.devicedensityofstates.html

Similar way, you can calculate the local density of state by DeviceHuckelCalculator:
http://www.quantumwise.com/documents/manuals/latest/ReferenceManual/index.html/ref.localdevicedensityofstates.html

Offline Tufan

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: in
  • Reputation: 0
    • View Profile
Re: LDOS Calculation of Device structure
« Reply #2 on: March 28, 2016, 15:36 »
Thanks for the response. I have already calculated the Device Density of States of similar structure by Slater koster. But I am actually interested to get the barrier height (just like the LDOS shown in the mentioned paper)  of similar device structure by Slater Koster. How I can do that?

Offline zh

  • QuantumATK Support
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1141
  • Reputation: 24
    • View Profile
Re: LDOS Calculation of Device structure
« Reply #3 on: March 28, 2016, 16:09 »
For the figure 4 in your mentioned paper,  I may roughly list the steps to how to obtain such plot:
1).  Do the LDOS of a device configuration at a series of "energy", e.g., from -2 eV to 2eV divided by 100 points. As you know, when you perform the LDOS calculation, the "energy" parameter in LocalDeviceDensityOfStates() should be specified.
2). Perform the xy-planar average of the LDOS for each value of "energy".
For the last step, you may refer to here to learn to do the average of 3D data such as charge density, potential, LDOS:
http://www.quantumwise.com/documents/manuals/latest/ReferenceManual/index.html/ref.electrostaticdifferencepotential.html
3). Rearrange these data into an file in the format of contour plot data (http://lowrank.net/gnuplot/datafile-e.html: 3-dimensional data ):
    x  y   z  ## here x--> the actual z value in the obtained xy-planar avarge of LDOS, y --> the "energy" value;  z--> the xy-planner average of LDOS.
4) Draw the contour plot.


     

« Last Edit: March 28, 2016, 16:24 by zh »

Offline Tufan

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: in
  • Reputation: 0
    • View Profile
Re: LDOS Calculation of Device structure
« Reply #4 on: March 29, 2016, 13:14 »
Ok. Thank You.