OpSum
Object representing a generic many-body operator by a sum of operators of the form
Sources
opsum.hpp
opsum.cpp
opsum.jl
An OpSum is consists of a sum of pairs given by
-
A coupling constant \(c_i\) which is given by a either a string name or a real/complex number.
-
An operator \(\mathcal{O}_i\) defined by an Op object.
Generically, an OpSum can thus have coupling constants defined by either strings or numerical real/complex numbers. We call an OpSum plain if its couplings are only numerical numbers, and not strings. String couplings can be defined by using the access operator[]
. If all string coupling constants are defined, the OpSum can be converted to a plain OpSum using the plain
method shown below.
Thus, OpSums can be defined independently of the numerical values of the coupling constants, e.g. in an input file. Upon execution of the code, these constants can then be set. Most operations in XDiag require the OpSum to be convertible to a plain OpSum.
OpSums can be added and subtracted, as well as multiplied with and divided by a scalar value, i.e. a real or complex number. Hence, OpSums carry the mathematical structure of a vector space.
Constructors
The following constructors create an OpSum with a single pair of coupling and operator. Additional terms can be added using the +
and +=
operators explained further below. If no coupling is given, a numerical coefficient of 1.0
is assumed.
Parameter | Description | Default |
---|---|---|
coupling | A coupling which is either a string or a real/complex number | 1.0 |
op | An Op which describes the type of operator |
Alternatively, an OpSum can also be constructed via the * operator
, for example:
Complex couplings
XDiag allows all couplings to be complex. Depending on the operator type a complex coupling can have two meanings:
-
A complex prefactor \(c\) which upon hermitian conjugation with hc gets conjugated to \(c^\star\). This is the case for the following interaction types:
HubbardU
,Cdagup
,Cdagdn
,Cup
,Cdn
,Nup
,Ndn
,Ntot
,NtotNtot
,SdotS
,SzSz
,Sz
,S+
,S-
,ScalarChirality
,tJSzSz
,tJSdotS
,Matrix
Thus, a complex coupling can turn a Hermitian operator to a non-Hermitian operator. -
The coupling is part of the definition of the operator. For, example a hopping operator of the form
$$ ( t c^\dagger_{i\sigma}c_{j\sigma} + \textrm{h.c.}) = ( t c^\dagger_{i\sigma}c_{j\sigma} + t^\star c^\dagger_{j\sigma}c_{i\sigma}) $$
A complex coupling \(t\) gives the hopping a phase, but the overall operator remains Hermitian and, thus, invariant under hc. This holds for the typesHop
,Hopup
,Hopdn
,Exchange
. In the latter case, complex spin exchangeExchange
is defined as, $$ \frac{1}{2}( J S^+_i S^-_j + J^\star S^-_iS^+_j)$$
Methods
plain
Converts an OpSum with possible string couplings to an OpSum with purely numerical real/complex couplings.
operator* (Creation)
Creates an OpSum with a single pair of coupling constant and an Op object.
operator+ / operator +=
Adds two OpSum objects \(\mathcal{A} = \sum_i a_i \mathcal{A}_i\) and \(\mathcal{B} = \sum_i b_i \mathcal{B}_i\) to for the sum of the two operators, $$ \mathcal{A} + \mathcal{B} = \sum_i a_i \mathcal{A}_i + \sum_i b_i \mathcal{B}_i$$
operator- / operator -=
Subtracts to OpSum objects.
operator* , operator/ (scalar muliplication/division)
Multiplies an OpSum \(\mathcal{A} = \sum_i a_i \mathcal{A}_i\) with a scalar \(b\) to form
OpSum &operator*=(double scalar);
OpSum &operator*=(complex scalar);
OpSum &operator/=(double scalar);
OpSum &operator/=(complex scalar);
OpSum operator*(double scalar, OpSum const &op);
OpSum operator*(complex scalar, OpSum const &op);
OpSum operator*(OpSum const &op, double scalar);
OpSum operator*(OpSum const &op, complex scalar);
OpSum operator/(OpSum const &op, double scalar);
OpSum operator/(OpSum const &op, complex scalar);
operator[]
Sets a coupling constant defined as a string to a numerical value.
constants
Returns a vector of strings with the coupling constants defined, i.e. the strings that define some of the coupling constants.
isreal
Returns whether an OpSum is a real operator.
isapprox
Returns whether two OpSums are approximately equal.
to_string (operator<<)
Converts the OpSum to a readable string representation.
Usage Example
// Define the 1D transverse-field Ising chain
int N = 12;
double J = 1.0;
double h = 0.5;
auto Sx = arma::mat("0 1; 1 0");
// Option 1: coupling constants as numbers
auto ops1 = OpSum();
for (int i = 0; i<N; ++i) {
ops1 += J * Op("SzSz", {i, (i+1)%N});
ops1 += h * Op("Matrix", i, Sx);
}
// Option 2: coupling constants as strings
auto ops2 = OpSum();
for (int i = 0; i<N; ++i) {
ops2 += "J" * Op("SzSz", {i, (i+1)%N});
ops2 += "h" * Op("Matrix", i, Sx);
}
ops2["J"] = J;
ops2["h"] = h;
XDIAG_SHOW(isapprox(ops1, ops2));
XDIAG_SHOW(isapprox(ops1 + ops2, 2.0 * ops1));