Author Topic: how to print the current of spin up and spin down in ATk11.2  (Read 3088 times)

0 Members and 1 Guest are viewing this topic.

Offline deepwave

  • Heavy QuantumATK user
  • ***
  • Posts: 33
  • Reputation: 0
    • View Profile
i have the self-consistent file.nc which contain the spin up and spin down transmissions  under different bias. but when i drag the file.nc to the Analysics-I-V curve, it just print a current under the same bias. how can i print the two current of the spin up and spin down

Offline deepwave

  • Heavy QuantumATK user
  • ***
  • Posts: 33
  • Reputation: 0
    • View Profile
waitting for answer

Offline Nordland

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 812
  • Reputation: 18
    • View Profile
Look in the reference manual transmission spectrum and look for the query current:
http://www.quantumwise.com/documents/manuals/latest/ReferenceManual/index.html/ref.transmissionspectrum.html

Offline deepwave

  • Heavy QuantumATK user
  • ***
  • Posts: 33
  • Reputation: 0
    • View Profile
I have read the reference manual transmission spectrum. but, i cannot edit a script to print out spin current. can you help me to edit a script. thank you.

Offline Nordland

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 812
  • Reputation: 18
    • View Profile
If you have a transmission spectrum. Lets call it T, then you will print the current with the following:
Code
print "Up", T.current(spin=Spin.Up)
print "Down", T.current(spin=Spin.Up)

Offline huangshenjie

  • Heavy QuantumATK user
  • ***
  • Posts: 40
  • Country: cn
  • Reputation: 0
    • View Profile
Hi,
I meet the same problem, I have got the transmission spectrum, but where should I write the code?