Once you have dropped the VNL file on the Nanoscope, use the right mouse button to bring up the context menu. Under "Insert plot", there is first a list of plot types (Volume plot, Isosurface, etc), and under each of these is a list of the eigenstates in the VNL file. Select the one you want to include.
A useful tip is to assign a unique label that's easy to remember to each state when you save it in the VNL file. This label will be visible in the menu, and makes it easier to choose the correct state. For example, the label could reflect the spin, or the eigenvalue, and the index.
For instance:
k = (0.0,0.0)
E = 0.0*electronVolt
transmission_eigenvalues = calculateTransmissionEigenvalues(
self_consistent_calculation = scf,
energy = E,
quantum_numbers = (k)
)
for index,eigenvalue in enumerate(transmission_eigenvalues):
transmission_eigenstates = calculateTransmissionEigenstates(
self_consistent_calculation = scf,
energy = E,
quantum_numbers = (index,(k))
)
label='Transmission Eigenstate'+' '+str(index)+', k='+str(k)+', Eigenvalue='+str(eigenvalue)
if processIsMaster(): file.addToSample(transmission_eigenstates[0], 'twoprobe_configuration', label)
This will, given the specified 2D k-point and energy, calculate the transmission eigenvalues, and for each one calculate the corresponding eigenstate and save it in a VNL file, with a label like
Transmission Eigenstate 0, k=(0,0), Eigenvalue=0.92.
Modify as needed for spin. If you have multiple k-points you can in principle extend "k" to be a list, but the code gets a bit messy...