Author Topic: Transmission analyzer problem  (Read 2275 times)

0 Members and 1 Guest are viewing this topic.

Offline ams_nanolab

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 389
  • Country: in
  • Reputation: 11
    • View Profile
Transmission analyzer problem
« on: January 1, 2016, 08:21 »
I am having a nc file for a device configuration. When I open the transmission analyzer to plot the transmission eigenstates, I get the following error (screenshot attached).
What could be wrong? I opened in both classic view and project view and also Ctrl+click the device configuration alongwith IV objects in Labfloor, but still I get the same error.
How do I extract the transmission eigenstate etc.?

Offline Jess Wellendorff

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 933
  • Country: dk
  • Reputation: 29
    • View Profile
Re: Transmission analyzer problem
« Reply #1 on: January 4, 2016, 11:30 »
It looks like the self-consistent state of the device configuration was not saved. Only the TransmissionSpectrum was saved. In order to fix this, your script should contain something like this:

device_configuration.setCalculator(calculator)
nlprint(device_configuration)
device_configuration.update()
nlsave('output.nc', device_configuration)

Offline ams_nanolab

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 389
  • Country: in
  • Reputation: 11
    • View Profile
Re: Transmission analyzer problem
« Reply #2 on: January 8, 2016, 08:23 »
Should it not be saved in default. I crated the python file using VNL-GUI only and not by writing/editing the code myself.

Offline Jess Wellendorff

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 933
  • Country: dk
  • Reputation: 29
    • View Profile
Re: Transmission analyzer problem
« Reply #3 on: January 8, 2016, 08:43 »
Yes, it should always be saved by default.

Offline ams_nanolab

  • Supreme QuantumATK Wizard
  • *****
  • Posts: 389
  • Country: in
  • Reputation: 11
    • View Profile
Re: Transmission analyzer problem
« Reply #4 on: January 8, 2016, 08:54 »
Very interesting indeed. Will try again and get back to you soon.