**Many-Body-Localization-Exact-Diagonalization** (referred to here as **MBL_ED**) is a specialized Python codebase for studying the **Many-Body Localization (MBL)** transition in 1D spin chains, specifically the random-field Heisenberg m…
**Many-Body-Localization-Exact-Diagonalization** (referred to here as **MBL_ED**) is a specialized Python codebase for studying the **Many-Body Localization (MBL)** transition in 1D spin chains, specifically the random-field Heisenberg model. It utilizes Exact Diagonalization (ED) to compute diagnostics of the MBL transition, such as level statistics (gap ratios) and entanglement entropy. It is designed to efficiently calculate highly excited eigenstates, which are crucial for probing the infini
Reference papers are not yet linked for this code.
Many-Body-Localization-Exact-Diagonalization (referred to here as MBL_ED) is a specialized Python codebase for studying the Many-Body Localization (MBL) transition in 1D spin chains, specifically the random-field Heisenberg model. It utilizes Exact Diagonalization (ED) to compute diagnostics of the MBL transition, such as level statistics (gap ratios) and entanglement entropy. It is designed to efficiently calculate highly excited eigenstates, which are crucial for probing the infinite-temperature physics relevant to MBL.
Scientific domain: Many-Body Localization, Quantum Chaos, Disordered Systems Target user community: Researchers investigating ergodicity breaking and thermalization
scipy.sparse.linalg.eigsh with specific parameters for shift-invert mode.QuSpin, but as a lightweight, focused repository.User modifies parameters in the main script (e.g., L=12, W_list = [...]) and runs the script. The code loops over disorder realizations, constructs the sparse Hamiltonian, diagonalizes, and accumulates statistics.
| Feature | MBL_ED | QuSpin | xdiag |
|---|---|---|---|
| Focus | MBL / Disorder Averaging | General Many-Body (Dynamics) | General Many-Body (Ground State) |
| Solver | Shift-Invert (Interior Eigs) | General (Full/Sparse) | General (Lanczos/Full) |
| Efficiency | Optimized for Interior States | General Purpose | Ground State Optimized |
| Complexity | Minimal (Script-like) | Moderate (Library) | High (Library) |
Primary sources:
Verification status: ✅ VERIFIED