+1 vote
asked by (200 points)

Hi Miles and Matt,

I have been using ITensor (C++, v2) to study spin systems on cylinder geometries. Thank you for all your great work with this package.

Recently, I was interested in calculating the momentum-resolved entanglement spectrum and I was wondering if there is an efficient way to do so in ITensor. To begin with, I have been able to compute the (unresolved) entanglement spectrum as follows:

int b = Nx*Ny/2; count = 1;
psi.position(b);
ITensor wf = psi.A(b)*psi.A(b+1);
auto U = psi.A(b);
ITensor S,V;
auto spectrum = svd(wf,U,S,V);
SvN = 0.0;
for(auto p : spectrum.eigs())
{
    if(p > 1E-12) SvN += -p*log(p);

    if(count <=10)
        {fprintf(myfile,"%.12f\n",-log(p));
         count++;
        }
}

Since I’m working on a cylinder, the momentum in the y direction should be a good quantum number but how would one obtain this from the DMRG-optimized MPS wavefunction? Let me also note that my Hamiltonian does not have any other conserved (spin) quantum numbers so I am using ITensors instead of IQTensors.

In particular, I have seen the procedure outlined in Appendix C of arXiv:1208.2623, but I am not exactly sure of how to implement it. If you happen to have a code snippet (or any existing ITensor functionality) for this purpose, which I could use as a starting point, that would be extremely helpful. Thanks so much!

Best wishes,
RS

1 Answer

0 votes
answered by (70.1k points)

Hi RS,
What I think would be the best way to do what you want in ITensor is to change the local basis used for your DMRG calculation. So instead of computing your ground state in a real-space basis as you are doing now, and then desiring to transform your wavefunction as a secondary step into a y-momentum basis, I think it would be both much easier and more efficient to work in a y-momentum (and of course x-real-space) basis from the very beginning, at the level of defining your site indices and Hamiltonian.

So the broad steps to do this would be as follows:
1.a. define a new site type that carries y-momentum quantum numbers, such as QN("Ky",0), QN("Ky",1), QN("Ky",-1), QN("Ky",2). Because the values of quantum numbers in ITensor are required to be integers, these integers are to be understood as QN("Ky",n) where the true momentum value is ky=(2pin)/Ny. So maybe a better name for these QN's would actually be QN("ny",0), QN("ny",1), etc. The name is really up to you.

1.b. to actually define such a new site type in the C++ version of ITensor unfortunately requires a bit of work and expertise with how to define a C++ class and its constructor and other similar things. If you are comfortable with this, and understand the general pattern of the existing site types included in ITensor such as in itensor/mps/sites/spinhalf.h, itensor/mps/sites/electron.h, etc. then it should not be too hard to make a new site type (call it KySpinHalf, say) and use it in your code instead of the SpinHalf sites. A key step here is that you'll have to take advantage of the fact that the named Args passed to the site type constructors gets a value "SiteNumber" passed to it, and you'll have to also pass "Ny" to it, so that these can be combined to work out what QN("ny",n) value that site should have based on where it's located around the cylinder. I can help you with this as I know this is probably the trickiest and least clear part.

  1. the next step is to transform your Hamiltonian to a hybrid y-momentum / x-real-space basis. This is just a standard excersise in changing variables to spin operators which are plane-wave linear combinations of real-space spin operators by substituting them into your real-space Hamiltonian. I'm not saying "standard" to imply it's obvious or easy: just that this part is a thing which is purely mathematical and outside of ITensor.

  2. You can use the newly created site types along with AutoMPO to input your momentum-space Hamiltonian and get an MPO for it. It might be a slightly bigger MPO than a purely real-space one because now the spin interactions will be non-local in the y-direction around each ring or rung of the cylinder. But the extra savings coming from the block-sparsity of the momentum-conserving ITensors should easily make up for this extra cost.

  3. Finally, and we may have to discuss the particulars of this more, you can SVD your ground state MPS after it's optimized to get the entanglement spectrum, except now the bond indices of your MPS will automatically be labeled by the QN("ny",n) quantum numbers. So by analyzing the spectrum along with these quantum number labels, you can work out which sector the different singular values correspond to. Basically this could be as easy as SVDing part of your MPS and just printing out the "S" tensor of singular values. But we can explore this in some follow-up questions if it turns out to be more complicated in practice for some reason.

Hope that helps you to get started. One of the postdocs at Flatiron CCQ already implemented many of the steps above and it worked well, so if you email me I could put you in touch with him to see if he's willing to share some tips or perhaps even some code examples. We should ultimately put this into the library or at least the Code Formulas page of the website.

Best regards,
Miles

Welcome to ITensor Support Q&A, where you can ask questions and receive answers from other members of the community.

Formatting Tips:
  • To format code, indent by four spaces
  • To format inline LaTeX, surround it by @@ on both sides
  • To format LaTeX on its own line, surround it by $$ above and below
  • For LaTeX, it may be necessary to backslash-escape underscore characters to obtain proper formatting. So for example writing \sum\_i to represent a sum over i.
If you cannot register due to firewall issues (e.g. you cannot see the capcha box) please email Miles Stoudenmire to ask for an account.

To report ITensor bugs, please use the issue tracker.

Categories

...