Author Topic: Re: calculation of gate voltage Vs conductance for each bias voltages - reg.  (Read 3265 times)

0 Members and 1 Guest are viewing this topic.

Offline rebeda

  • Heavy QuantumATK user
  • ***
  • Posts: 46
  • Country: in
  • Reputation: 0
    • View Profile
Dear Sir,

Looking at the link below, I have successfully calculated conductance at different gate voltages.

https://docs.quantumwise.com/tutorials/graphene_nanoribbon_device/graphene_nanoribbon_device.html

How can I calculate the same for each of bias voltages (for 0.05 to 0.05 V(say))?
My aim is to draw coulomb diamond or conductance stability diagrams (2D contour plot) having Vg as the x-axis, Vb as y-axis and dI/dV as z-axis. Will you please help me.....  :(

Regards,
Rebeda

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
You can use IVCharacteristics study object for that, see https://docs.quantumatk.com/tutorials/ivcharacteristics/ivcharacteristics.html andhttps://docs.quantumatk.com/manual/Types/IVCharacteristics/IVCharacteristics.html. 

Offline rebeda

  • Heavy QuantumATK user
  • ***
  • Posts: 46
  • Country: in
  • Reputation: 0
    • View Profile
Thank you..!!!!!

https://docs.quantumwise.com/tutorials/graphene_nanoribbon_device/graphene_nanoribbon_device.html

In the above link suggested by you,  they have calculated IV characteristics for one to two drain source voltages at a given range of gate source voltages. Can I calculate the same for a range of drain source voltages in a single script?(say from -0.1 to 0.1  Vds  step size be 0.02)

Regards,
Rebeda

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
But this is exactly what the study object does. It calculates the current for given V_ds and V_gs ranges, allowing to compute I-V_ds curves, as well as I-V_gs curves for a set of V_ds voltages in the given range, see also the manual for this study object, https://docs.quantumatk.com/manual/Types/IVCharacteristics/IVCharacteristics.html.  One just has to set the voltage ranges either in the GUI or script.

Within the study object, you can always add more points to the curves by adding more voltages  to the script and re-running it. The main feature of the study object is that it does not delete the previously-calculated data, but add newly-calculated set of points to the old data.

Offline rebeda

  • Heavy QuantumATK user
  • ***
  • Posts: 46
  • Country: in
  • Reputation: 0
    • View Profile
In the script obtained from the link for IV characteristics analysis, I am not able to calculate the required results for the gate voltages and drain source voltages below

# Gate-source voltages
gate_source_voltages = numpy.linspace(-1.0, 1.0, 41)*Volt

# Drain-source voltages
drain_source_voltages = numpy.linspace(-0.05, 0.05, 11)*Volt

But,  it worked quite well when I calculated for two drain-source voltages, set as

# Gate-source voltages
gate_source_voltages = numpy.linspace(-1.0, 1.0, 41)*Volt

# Drain-source voltages
drain_source_voltages = numpy.linspace(-0.05, 0.05, 2)*Volt

I have attached my input script for your perusal.

Regards,
Rebeda


« Last Edit: November 4, 2019, 11:14 by rebeda »

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
I am not sure I understand your issue. One can set a range of V_ds voltages and the number of V_ds voltages such that it will correspond to step dV_ds = 0.02 V. 

Offline rebeda

  • Heavy QuantumATK user
  • ***
  • Posts: 46
  • Country: in
  • Reputation: 0
    • View Profile
The python scrip show error when i set the drain source voltages as below.

# Drain-source voltages
drain_source_voltages = numpy.linspace(-0.05, 0.05, 11)*Volt


will you please point out where did I go wrong...
Regards,
Rebeda

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
Please enclose the error message.

Offline rebeda

  • Heavy QuantumATK user
  • ***
  • Posts: 46
  • Country: in
  • Reputation: 0
    • View Profile
Thank you so much for your reply!!!

I tried regenerating the error message for the third time, but to my surprise; it really worked!!!!!!

Will you please provide me the python script for calculating dI/dV from I-V data since I am not able to obtain dI/dV from the IV characteristics analyzer.

Regards,
Rebeda :D
« Last Edit: November 9, 2019, 07:47 by rebeda »