Author Topic: Projected local density of states  (Read 2557 times)

0 Members and 1 Guest are viewing this topic.

Offline holly

  • New QuantumATK user
  • *
  • Posts: 2
  • Country: cn
  • Reputation: 0
    • View Profile
Projected local density of states
« on: May 12, 2020, 05:23 »
Dir Sir,

I have a question about the analysis of  Projected Local Density Of States (PLDOS), that is "How to only project  onto semicondunctor region of a FET device?"   I use the VNL 2019.3.
 
Thank you so much!

Offline Daniele Stradi

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 286
  • Country: dk
  • Reputation: 3
    • View Profile
Re: Projected local density of states
« Reply #1 on: May 13, 2020, 10:12 »
Hello,

Projected Local Density Of States (PLDOS) cannot be used for that, however, one can use the DeviceDensityOfStates to project over, e.g., atoms. In the example below, the DDOS is evaluated for atom 10 in the central region of the device:

ddos = nlread('device.hdf5',DeviceDensityOfStates)[-1]
ddos_projected = ddos.evaluate(projection_list = ProjectionList([10]))

Check also the usage examples in: https://docs.quantumatk.com/manual/Types/DeviceDensityOfStates/DeviceDensityOfStates.html

Best,
Daniele

Offline holly

  • New QuantumATK user
  • *
  • Posts: 2
  • Country: cn
  • Reputation: 0
    • View Profile
Re: Projected local density of states
« Reply #2 on: May 15, 2020, 10:27 »
Thanks for your reply!
But I have another question. I recently read some papers that can give local device densithy of states projeted semiconductor region, for example, in the image below. I want to know how to get this figure. Please tell me whether ATK can do it or not.
Thanks a lot!

Offline Daniele Stradi

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 286
  • Country: dk
  • Reputation: 3
    • View Profile
Re: Projected local density of states
« Reply #3 on: May 19, 2020, 09:23 »
Hi,

the heat maps can be generated by using the projected local density of states (PLDOS) analysis tool:
https://docs.quantumatk.com/manual/Types/ProjectedLocalDensityOfStates/ProjectedLocalDensityOfStates.html

The 2D plots can be generated by using the DeviceDensityOfStates (DDOS) object and by projecting on the atoms of the region of interest, in your specific case the semiconductor region:
https://docs.quantumatk.com/manual/Types/DeviceDensityOfStates/DeviceDensityOfStates.html 

Best regards,
Daniele