Density of States¶
-
class
aimstools.density_of_states.density_of_states.DensityOfStates(outputfile)[source]¶ Represents a collection of density of states calculations.
The density of states class is a wrapper for total DOS, atom-projected DOS and species-projected DOS. To access these classes individually, see
TotalDOS,AtomProjectedDOSandSpeciesProjectedDOS.>>> from aimstools import DensityOfStates as DOS >>> dos = DOS("/path/to/outputfile") >>> dos.plot()
Parameters: outputfile (str) – Path to output file or output directory. -
atom_projected_dos¶ Returns
AtomProjectedDOSif calculated.
-
dos¶ Returns density of states in order AtomProjectedDOS > SpeciesProjectedDOS > TotalDOS.
-
species_projected_dos¶ Returns
SpeciesProjectedDOSif calculated.
-