DosFingerprint

Contents

DosFingerprint#

namedtuple lobsterpy.featurize.core.DosFingerprint(energies, densities, type, n_bins, bin_width)[source]#

Represents a Density of States (DOS) fingerprint.

This named tuple is used to store information related to the Density of States (DOS) in a material. It includes the energies, densities, type, number of bins, and bin width.

Fields:
  1.  energies (ndarray) – The energy values associated with the DOS.

  2.  densities (ndarray) – The corresponding density values for each energy.

  3.  type (str) – The type of DOS fingerprint.

  4.  n_bins (int) – The number of bins used in the fingerprint.

  5.  bin_width (float) – The width of each bin in the DOS fingerprint.