Author Topic: transmissionspectrum  (Read 2012 times)

0 Members and 1 Guest are viewing this topic.

Offline naash

  • Regular QuantumATK user
  • **
  • Posts: 12
  • Reputation: 0
    • View Profile
transmissionspectrum
« on: March 22, 2011, 06:55 »
look at this script and tell me why i can not obtain the 25 spectrum am looking for  so that i can have the I-V curve what is wrong in the script can i submit to jobs in the same maste
Code: python
voltagelist=[0.2*i for i in range(26)]
for myvolt in voltagelist:      
    calculator = DeviceLCAOCalculator(
    basis_set=basis_set,
    numerical_accuracy_parameters=device_numerical_accuracy_parameters,
    electrode_calculators=
        [left_electrode_calculator, right_electrode_calculator],
    electrode_voltages=( 0.0*Volt, myvolt*Volt)
    )

    device_configuration.setCalculator(calculator)
    nlprint(device_configuration)
    device_configuration.update()
    if(myvolt<0.3)
        nlsave('C80sixmr.nc', device_configuration)

# -------------------------------------------------------------
# Transmission spectrum
# -------------------------------------------------------------
    transmission_spectrum = TransmissionSpectrum(
    configuration=device_configuration,
    energies=numpy.linspace(-5,5,100)*eV,
    kpoints=MonkhorstPackGrid(1,1),
    energy_zero_parameter=AverageFermiLevel,
    infinitesimal=1e-06*eV,
    self_energy_calculator=KrylovSelfEnergy(),
    )
    nlsave('C80sixmr.nc', transmission_spectrum)
    nlprint(transmission_spectrum)
« Last Edit: March 22, 2011, 16:54 by Anders Blom »

Offline zh

  • QuantumATK Support
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 1141
  • Reputation: 24
    • View Profile
Re: transmissionspectrum
« Reply #1 on: March 22, 2011, 16:26 »
Is this the whole script? If yes, it will not enable to obtain the all transmission spectra because the configuration of device is not explicitly defined. If no, it seems a reasonable script.

Please show also the error message for your problem.
« Last Edit: March 22, 2011, 16:54 by Anders Blom »