I’m working on finding the ground state the Fermi-Hubbard Hamiltonian, so the electron site type is the natural choice. Specifically I am interested in the ground state with a given particle number and total spin, so I am using the two native quantum numbers associated with the electron site.
The DMRG accuracy is improved by using non-standard site orderings (mapping from a physical DOF to the position in the MPS). However the use of the electron site type limits the possible re-orderings since spin up and spin down sites are always bundled together. I recently tried using fermion sites instead as this should allow me to mix spin up sites and spin down sites as I see fit. I seem to have gotten everything working except for the initial state that I use as input to DMRG. I am using the quantum number version of randomMPS
, and I found in the electron case that providing a large initial link dimension significantly improved the DMRG results. However when using fermion sites randomMPS
simply spits out the same input product state.
This certainly comes down to my use of quantum numbers and my ordering of the sites. What seemed natural to me is to rename the “total number of fermions” quantum number into Ndn
(Nup
) for the spin down(up) sites as done in the documentation. If I don’t rename the quantum numbers then randomMPS
produces a non-product state. If I order the sites differently so that all the spin up sites come first then randomMPS
also produces a non-product state.
Much appreciated!
using ITensors
N = 4
nUp = 1
nDn = 1
sites = [isodd(i) ? siteind("Fermion"; conserve_qns=true, qnname_nf="Ndn") :
siteind("Fermion"; conserve_qns=true, qnname_nf="Nup") for i = 1:N]
# Construct the initial state
initialState = ["Emp" for i = 1:N]
for i in 1:nDn
initialState[2 * (i - 1) + 1] = "Occ"
end
for i in 1:nUp
initialState[2 * (i - 1) + 2] = "Occ"
end
@show initialState
psi = randomMPS(sites, initialState; linkdims=100)
@show(psi)
@show norm(psi - MPS(sites, initialState))
The output is
initialState = ["Occ", "Occ", "Emp", "Emp"]
┌ Warning: MPS center bond dimension is less than requested (you requested 100, but in practice it is 1. This is likely due to technicalities of truncating quantum number sectors.
└ @ ITensors ~/.julia/packages/ITensors/HjjU3/src/mps/mps.jl:149
psi = MPS
[1] ((dim=2|id=524|"Fermion,Site") <Out>
1: QN("Ndn",0,-1) => 1
2: QN("Ndn",1,-1) => 1, (dim=1|id=983|"Link,l=1") <Out>
1: QN(("Ndn",0,-1),("Nup",1,-1)) => 1)
[2] ((dim=2|id=884|"Fermion,Site") <Out>
1: QN("Nup",0,-1) => 1
2: QN("Nup",1,-1) => 1, (dim=1|id=400|"Link,l=2") <Out>
1: QN(("Ndn",0,-1),("Nup",0,-1)) => 1, (dim=1|id=983|"Link,l=1") <In>
1: QN(("Ndn",0,-1),("Nup",1,-1)) => 1)
[3] ((dim=2|id=562|"Fermion,Site") <Out>
1: QN("Ndn",0,-1) => 1
2: QN("Ndn",1,-1) => 1, (dim=1|id=819|"Link,l=3") <Out>
1: QN("Nup",0,-1) => 1, (dim=1|id=400|"Link,l=2") <In>
1: QN(("Ndn",0,-1),("Nup",0,-1)) => 1)
[4] ((dim=2|id=572|"Fermion,Site") <Out>
1: QN("Nup",0,-1) => 1
2: QN("Nup",1,-1) => 1, (dim=1|id=819|"Link,l=3") <In>
1: QN("Nup",0,-1) => 1)
norm(psi - MPS(sites, initialState)) = 0.0
My version information
julia> versioninfo()
Julia Version 1.9.0
Commit 8e630552924 (2023-05-07 11:25 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin22.4.0)
CPU: 16 × Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-14.0.6 (ORCJIT, skylake)
Threads: 1 on 16 virtual cores
julia> using Pkg; Pkg.status("ITensors")
Status `~/.julia/environments/v1.9/Project.toml`
[9136182c] ITensors v0.3.41