QuantumATK Forum

QuantumATK => General Questions and Answers => Topic started by: jagan on April 6, 2010, 09:28

Title: how can we add gate probe in two probe configuration (atk)
Post by: jagan on April 6, 2010, 09:28
Hi everybody ,i had simulated the two probe configuration aucntau ,i want simulate this setup for gate three probe where i can include gate probe in the atk script.and what is better script required for that.
Title: Re: how can we add gate probe in two probe configuration (atk)
Post by: zh on April 8, 2010, 07:09
You can refer to the manual for applying the gate voltage:
http://www.quantumwise.com/documents/manuals/ATK-2008.10/ref.gatedtwoprobemethod.html (http://www.quantumwise.com/documents/manuals/ATK-2008.10/ref.gatedtwoprobemethod.html)

or see the below example and add the corresponding part with slight modification into your own script:

  configuration = TwoProbeConfiguration(...)
    two_probe_method = TwoProbeMethod(...)
    three_probe_method = GatedTwoProbeMethod(
        two_probe_method = two_probe_method
        gate_voltage = 5*Volt
        )
    scf = executeSelfConsistentCalculation(
       configuration,
       method=three_probe_method
       )
...