Hi everyone,
I would like to print out the spin up and spin down transmission spectrum as a function of energy. I have found the following approach:
# -------------------------------------------------------------
# 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(),
)
if processIsMaster(): nlprint(transmission_spectrum)
which prints out the total transmission spectrum.
Is it possible to print out the spin separated spectrum in the output file?
Also, is there a quick command to print out the conductance at the Fermi energy level for spin up and spin down components?
Thanks,
Derek