Source code for solrat.atom_model.base_atom_model.object.rho from typing import TypeVar [docs] class BaseRho: r""" Base class for the statistical tensor :math:`\rho^K_Q` """ RhoT = TypeVar("RhoT", bound=BaseRho)