Author Topic: I-Vg curve  (Read 4156 times)

0 Members and 1 Guest are viewing this topic.

Offline tara95

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: us
  • Reputation: 0
    • View Profile
I-Vg curve
« on: December 16, 2017, 19:40 »
Hi,
I want to plot Id-Vg curve for my transistors but I do not know  how to write python code for drain current vs gate voltage.please help me

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
Re: I-Vg curve
« Reply #1 on: December 16, 2017, 21:29 »

Offline tara95

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: us
  • Reputation: 0
    • View Profile
Re: I-Vg curve
« Reply #2 on: December 16, 2017, 22:01 »
Do you mean  following file؟
# Define names of output files
filenamec = 'gatescan_conf.nc'
filenamea = 'gatescan.nc'

# Read the zero bias calculation
device_configuration = nlread('InAs_5nm_pin.nc', DeviceConfiguration)[0]

# Get the calculator
calculator = device_configuration.calculator()

# Set the source-drain voltage of the calculator
calculator=calculator(electrode_voltages=(0*Volt, 0.5*Volt))

# Get the metallic regions
metallic_regions = device_configuration.metallicRegions()
# Define positive bias voltages
gate_voltage_list=numpy.arange(10)*0.1*Volt

#make loop
for gate_voltage in gate_voltage_list:
    # Change the gate voltages
    new_regions = [m(value = gate_voltage) for m in metallic_regions]
    device_configuration.setMetallicRegions(new_regions)

    # Set new calculator with modified electrode voltages on the configuration
    # use the self consistent state of the old calculation as starting input.
    device_configuration.setCalculator(
          calculator(),
          initial_state=device_configuration)
    device_configuration.update()
    nlsave(filenamec, device_configuration)

    electrostatic_difference_potential = ElectrostaticDifferencePotential(device_configuration)
    nlsave(filenamea, electrostatic_difference_potential)

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
Re: I-Vg curve
« Reply #3 on: December 16, 2017, 23:12 »
Regarding just plotting example, I refer to the python script plot´-iv-curve.py enclosed to that tutorial.

Offline tara95

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: us
  • Reputation: 0
    • View Profile
Re: I-Vg curve
« Reply #4 on: December 18, 2017, 12:14 »
thanks.
please can you guide me?
 I attach two python scripts  to get I-Vg curve at drain bais 0.5 v. Is the python scripts  correct?

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
Re: I-Vg curve
« Reply #5 on: December 18, 2017, 14:43 »
Did you try running them? Do you get the result you have expected for this system?

Offline tara95

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: us
  • Reputation: 0
    • View Profile
Re: I-Vg curve
« Reply #6 on: December 19, 2017, 14:35 »
Thank you for your attention. I received the desired result from the first program (related to transmission calculations), but the second one (related to current calculations) doesn't work properly.

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
Re: I-Vg curve
« Reply #7 on: December 19, 2017, 15:06 »
Please describe in detail what you mean by "not working properly".

Offline tara95

  • Regular QuantumATK user
  • **
  • Posts: 21
  • Country: us
  • Reputation: 0
    • View Profile
Re: I-Vg curve
« Reply #8 on: December 19, 2017, 17:20 »
It does not seem to use from the first program data to plot a I-Vg curve, so the program needs to be corrected and I need to guide you. please help me
thanks

Offline Petr Khomyakov

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1290
  • Country: dk
  • Reputation: 25
    • View Profile
Re: I-Vg curve
« Reply #9 on: December 21, 2017, 09:54 »
The reason for that is that you have removed the essential part in the original script where the current is actually computed from the transmission spectra in a post-processing manner. So, I suggest that you use the original script as a starting point, doing modifications in that script, if needed.