Source code for sisl.physics.energydensitymatrix

"""
Energy density matrix class
"""
from __future__ import print_function, division

import warnings
from numbers import Integral
import itertools as itools

import numpy as np
import scipy.linalg as sli
from scipy.sparse import isspmatrix, csr_matrix
import scipy.sparse.linalg as ssli

from sisl._help import get_dtype
from sisl._help import _zip as zip, _range as range
from sisl.sparse import SparseCSR, ispmatrix, ispmatrixd
from sisl.sparse_geometry import SparseOrbital
from .sparse_physics import SparseOrbitalBZSpin
from .spin import Spin
from .brillouinzone import BrillouinZone

__all__ = ['EnergyDensityMatrix']


[docs]class EnergyDensityMatrix(SparseOrbitalBZSpin): """ EnergyDensityMatrix object containing the energy density matrix elements The object contains information regarding the - geometry - energy density matrix elements between orbitals Assigning or changing elements is as easy as with standard ``numpy`` assignments: >>> DM = DensityMatrix(...) >>> DM.D[1,2] = 0.1 which assigns 0.1 as the density element between orbital 2 and 3. (remember that Python is 0-based elements). """ def __init__(self, geom, dim=1, dtype=None, nnzpr=None, **kwargs): """Create EnergyDensityMatrix model from geometry Initializes a EnergyDensityMatrix using the ``geom`` object. """ super(EnergyDensityMatrix, self).__init__(geom, dim, dtype, nnzpr, **kwargs) if self.spin.is_unpolarized: self.Ek = self._Pk_unpolarized elif self.spin.is_polarized: self.Ek = self._Pk_polarized elif self.spin.is_noncolinear: self.Ek = self._Pk_non_colinear elif self.spin.is_spinorbit: self.Ek = self._Pk_spin_orbit
[docs] def Ek(self, k=(0, 0, 0), dtype=None, gauge='R', format='csr', *args, **kwargs): r""" Setup the energy density matrix for a given k-point Creation and return of the density matrix for a given k-point (default to Gamma). Notes ----- Currently the implemented gauge for the k-point is the cell vector gauge: .. math:: E(k) = E_{ij} e^{i k R} where :math:`R` is an integer times the cell vector and :math:`i`, :math:`j` are orbital indices. Another possible gauge is the orbital distance which can be written as .. math:: E(k) = E_{ij} e^{i k r} where :math:`r` is the distance between the orbitals :math:`i` and :math:`j`. Currently the second gauge is not implemented (yet). Parameters ---------- k : array_like the k-point to setup the energy density matrix at dtype : numpy.dtype , optional the data type of the returned matrix. Do NOT request non-complex data-type for non-Gamma k. The default data-type is '`numpy.complex128`` gauge : {'R', 'r'} the chosen gauge, `R` for cell vector gauge, and `r` for orbital distance gauge. format : {'csr', 'array', 'dense', 'coo', ...} the returned format of the matrix, defaulting to the ``scipy.sparse.csr_matrix``, however if one always requires operations on dense matrices, one can always return in ``numpy.ndarray`` (`'array'`) or ``numpy.matrix`` (`'dense'`). """ pass
def _get_E(self): self._def_dim = self.UP return self def _set_E(self, key, value): if len(key) == 2: self._def_dim = self.UP self[key] = value E = property(_get_E, _set_E) @staticmethod
[docs] def read(sile, *args, **kwargs): """ Reads density matrix from `Sile` using `read_energy_density_matrix`. Parameters ---------- sile : `Sile`, str a `Sile` object which will be used to read the density matrix and the overlap matrix (if any) if it is a string it will create a new sile using `get_sile`. * : args passed directly to ``read_energy_density_matrix(,**)`` """ # This only works because, they *must* # have been imported previously from sisl.io import get_sile, BaseSile if isinstance(sile, BaseSile): return sile.read_energy_density_matrix(*args, **kwargs) else: return get_sile(sile).read_energy_density_matrix(*args, **kwargs)
[docs] def write(self, sile, *args, **kwargs): """ Writes a density matrix to the `Sile` as implemented in the :code:`Sile.write_energy_density_matrix` method """ self.finalize() # This only works because, they *must* # have been imported previously from sisl.io import get_sile, BaseSile if isinstance(sile, BaseSile): sile.write_energy_density_matrix(self, *args, **kwargs) else: get_sile(sile, 'w').write_energy_density_matrix(self, *args, **kwargs)