**PEPS** (Projected Entangled Pair States) by the *QuantumLiquids* group is a high-performance C++ library for simulating 2D strongly correlated electron systems. It implements the **PEPS** tensor network ansatz and uses a **Variational…
**PEPS** (Projected Entangled Pair States) by the *QuantumLiquids* group is a high-performance C++ library for simulating 2D strongly correlated electron systems. It implements the **PEPS** tensor network ansatz and uses a **Variational Monte Carlo (VMC)** approach to optimize the tensor elements. This combination allows for the rigorous study of 2D fermionic systems (fPEPS) that are challenging for traditional QMC due to the sign problem.
Reference papers are not yet linked for this code.
PEPS (Projected Entangled Pair States) by the QuantumLiquids group is a high-performance C++ library for simulating 2D strongly correlated electron systems. It implements the PEPS tensor network ansatz and uses a Variational Monte Carlo (VMC) approach to optimize the tensor elements. This combination allows for the rigorous study of 2D fermionic systems (fPEPS) that are challenging for traditional QMC due to the sign problem.
Scientific domain: 2D Quantum Lattice Models, Tensor Networks, Strongly Correlated Electrons Target user community: Researchers studying high-Tc superconductivity, topological order, and 2D magnetism
QuantumLiquids methods suite (TensorToolkit).Users define the model (e.g., Heisenberg or Hubbard) and the PEPS ansatz (bond dimension D) in C++. The VMC optimizer is then run to minimize the energy.
// Example conceptual usage
auto model = HubbardModel(Lx, Ly, U);
auto peps = PEPSState(Lx, Ly, D);
VMCOptimizer optimizer(peps, model);
optimizer.run();
| Feature | PEPS (QuantumLiquids) | TeNeS | ITensor |
|---|---|---|---|
| Method | VMC Optimization of PEPS | Imaginary Time Evolution | MPS / DMRG |
| Dimension | 2D (NxN) | 2D (Infinite) | 1D (Primary) |
| Contraction | Monte Carlo Sampling | Deterministic (CTMRG) | Deterministic (Exact) |
| Fermions | Native (fPEPS) | Native | Native |
Primary sources:
Verification status: ✅ VERIFIED