Author Topic: Value of current from iv self consisent file  (Read 1763 times)

0 Members and 1 Guest are viewing this topic.

Offline abhishek77492652

  • QuantumATK Guru
  • ****
  • Posts: 111
  • Country: in
  • Reputation: 0
    • View Profile
Value of current from iv self consisent file
« on: October 15, 2017, 13:48 »
Hello sir,
 how can i get the value of current from iv self consistent file ?
i am using vnl atk 2014 version

Offline Jess Wellendorff

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 933
  • Country: dk
  • Reputation: 29
    • View Profile
Re: Value of current from iv self consisent file
« Reply #1 on: October 16, 2017, 08:03 »
You just retrieve that information from the IVCurve analysis object: https://docs.quantumwise.com/manuals/Types/IVCurve/IVCurve.html
Code
ivcurve = nlread('XXX.nc', IVCurve)[-1]
biases = ivcurve.biases()
currents = ivcurve.currents()
import pylab
pylab.plot(biases, currents, 'bo-')
pylab.xlabel('Bias (Volt)')
pylab.ylabel('Current (Amps)')
pylab.show()