HEOMLS Matrix for Fermionic Baths
The HEOM Liouvillian superoperator matrix struct M_Fermion <: AbstractHEOMLSMatrix which describes the interactions between the system and multiple Fermionic baths.
Construct Matrix
To construct the HEOM matrix in this case, one can call
M_Fermion(Hsys, tier, Bath, parity) with the following parameters:
args (Arguments)
Hsys: The time-independent system Hamiltoniantier::Int: the tier (cutoff level) for the fermionic bathBath::Vector{FermionBath}: objects for different fermionic bathsparity::AbstractParity: the parity label of the operator which HEOMLS is acting on. Defaults toEVEN.
kwargs (Keyword Arguments)
threshold::Real: The threshold of the importance value. Defaults to0.0.verbose::Bool: To display verbose output and progress bar during the process or not. Defaults totrue.
For example:
Hs::AbstractMatrix # system Hamiltonian
tier = 3
Bath::FermionBath
# create HEOMLS matrix in both EVEN and ODD parity
M_even = M_Fermion(Hs, tier, Bath)
M_odd = M_Fermion(Hs, tier, Bath, ODD) Fields
The fields of the structure M_Fermion are as follows:
data: the sparse matrix of HEOM Liouvillian superoperatortier: the tier (cutoff level) for the fermionic hierarchydim: the dimension of systemN: the number of total ADOssup_dim: the dimension of system superoperatorparity: the parity label of the operator which HEOMLS is acting on.bath::Vector{FermionBath}: the vector which stores allFermionBathobjectshierarchy::HierarchyDict: the object which contains all dictionaries for fermion-bath-ADOs hierarchy.
One obtain the value of each fields as follows:
M::M_Fermion
M.data
M.tier
M.dim
M.N
M.sup_dim
M.parity
M.bath
M.hierarchy