Source code for sisl.io.tbtrans.pht

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from ..sile import add_sile
from sisl._internal import set_module
from .tbt import tbtncSileTBtrans, tbtavncSileTBtrans, Ry2K, Ry2eV


__all__ = ['phtncSilePHtrans', 'phtavncSilePHtrans']


@set_module("sisl.io.phtrans")
class phtncSilePHtrans(tbtncSileTBtrans):
    """ PHtrans file object """
    _trans_type = 'PHT'
    _E2eV = Ry2eV ** 2

[docs] def phonon_temperature(self, elec): """ Phonon bath temperature [Kelvin] """ return self._value('kT', self._elec(elec))[0] * Ry2K
def kT(self, elec): """ Phonon bath temperature [eV] """ return self._value('kT', self._elec(elec))[0] * Ry2eV @set_module("sisl.io.phtrans") class phtavncSilePHtrans(tbtavncSileTBtrans): """ PHtrans file object """ _trans_type = 'PHT' _E2eV = Ry2eV ** 2
[docs] def phonon_temperature(self, elec): """ Phonon bath temperature [Kelvin] """ return self._value('kT', self._elec(elec))[0] * Ry2K
def kT(self, elec): """ Phonon bath temperature [eV] """ return self._value('kT', self._elec(elec))[0] * Ry2eV for _name in ['chemical_potential', 'electron_temperature', 'kT', 'current', 'current_parameter', 'shot_noise', 'noise_power']: setattr(phtncSilePHtrans, _name, None) setattr(phtavncSilePHtrans, _name, None) add_sile('PHT.nc', phtncSilePHtrans) add_sile('PHT.AV.nc', phtavncSilePHtrans)