Search found 465 matches

by Johannes
04 Nov 2022, 14:22
Forum: HowTos and FAQ for TeNPy
Topic: unable to change the model parameters from the command line
Replies: 2
Views: 10300

Re: unable to change the model parameters from the command line

This should be fixed in the latest github version. I'll release a new version 0.10 (that can be installed with pip/conda) shortly. (Sorry, I didn't update the official releases for over a year, so there have a few fixes accumulated....)
by Johannes
04 Nov 2022, 14:18
Forum: HowTos and FAQ for TeNPy
Topic: TDVP time evolution with interaction / onsite state probability
Replies: 4
Views: 26800

Re: TDVP time evolution with interaction / onsite state probability

It seems that you use Sz conservation, such that there is no operator 'Sx' or 'Sy', because they don't conserve the Sz charge. Since you model (and hence state) conserve Sz, you immediately know that expectation values of Sx and Sy are zero.
See also this FAQ question
by Johannes
27 Oct 2022, 16:03
Forum: Implementations
Topic: Different time two point correlator at finite temperature.
Replies: 2
Views: 46970

Re: Different time two point correlator at finite temperature.

Yes, this looks correct. The line M_tebd = models.model.NearestNeighborModel.from_MPOModel(M) is not really necessary, the Model which you have already is a NearestNeighborModel defining H_bond, so there's no need to create a new model here. In fact, you don't need to define the XXZchainnew here at ...
by Johannes
22 Sep 2022, 09:09
Forum: HowTos and FAQ for TeNPy
Topic: 01_dmrg.ipynb but with periodic boundary conditions
Replies: 2
Views: 10771

Re: 01_dmrg.ipynb but with periodic boundary conditions

Indeed, the issue is that the periodic boundary conditions induce a long-range coupling in the model. (The MPS is still open, but I think you already got this.) You don't even need to define a custom model, since there is also the tenpy.models.tf_ising.TFIModel , which is the same as the TFIChain ex...
by Johannes
31 Aug 2022, 09:40
Forum: HowTos and FAQ for TeNPy
Topic: Linking MKL issue in window 11
Replies: 1
Views: 9321

Re: Linking MKL issue in window 11

Looks like it's installed correctly, even if HAVE_MKL was not set on compile time. It's able to load the compiled parts, so no need to worry, all good! If TeNPy is compiled without HAVE_MKL, it falls back to the BLAS functioncs of numpy and scipy, and as fas as I know, numpy+scipy on Windows actuall...
by Johannes
31 Aug 2022, 09:32
Forum: HowTos and FAQ for TeNPy
Topic: Varying Lattice Spacing
Replies: 2
Views: 9802

Re: Varying Lattice Spacing

If the "long range" coupling has a finite range, i.e. you put a cutoff of say 5 sites or so, and don't include any coupling afterwards, you can indeed just call add_exponentially_decaying_coupling a bunch of times with corresponding distances. If you want a "true" long range coup...
by Johannes
31 Aug 2022, 08:38
Forum: HowTos and FAQ for TeNPy
Topic: Why does my SSH model not working
Replies: 1
Views: 6406

Re: Why does my SSH model not working

You're using a FermionChain. As the name suggests, the FermionChain has as local sites the tenpy.networks.site.FermionSite . This site doesn't define "up" or "down" states, but only "full" and "empty" states. Try to adjust the initial product state to be e.g. ...
by Johannes
17 Aug 2022, 16:49
Forum: Implementations
Topic: Implementing TEBD of open quantum chain in TenPy.
Replies: 2
Views: 45918

Re: Implementing TEBD of open quantum chain in TenPy.

Hi Sourav, cool, great to hear that you want to implement this in TeNPy! There's different ways to implement Lindblad evolution, so before we discuss TeNPy, we should maybe discuss a bit which way you want to implement it, and it's probably much easier to do this over zoom. I'll contact you by email...
by Johannes
17 Aug 2022, 15:39
Forum: HowTos and FAQ for TeNPy
Topic: Converting MPS to State Vector
Replies: 2
Views: 9270

Re: Converting MPS to State Vector

Formally yes , you can do it by just contracting all the tensors of the MPS, leaving the physical legs open. Depending on your preferred form, you might want to combine the L physical legs of dimension d into a single, big leg of dimension dim(\mathcal{H})= d^L , but this is essentially just a resh...
by Johannes
10 Aug 2022, 16:30
Forum: HowTos and FAQ for TeNPy
Topic: Regarding Two point correlation function in TenPy
Replies: 2
Views: 8067

Re: Regarding Two point correlation function in TenPy

In general, you should probably do this for one j in the center of your chain only and write this as C(t) = \langle \psi_0 | e^{i H t} S^z_i e^{-iHt} S^z_j | \psi_0 \rangle = \langle \psi(t) | S^z_i | \phi(t) \rangle, \quad \text{where} \quad |\psi(t) \rangle = e^{-iHt} |\psi_0 \rangle \text{~and~} ...
by Johannes
10 Aug 2022, 16:08
Forum: HowTos and FAQ for TeNPy
Topic: UserWarnings differ for identical initializations when run several times
Replies: 1
Views: 6481

Re: UserWarnings differ for identical initializations when run several times

That's expected behaviour given the implmentation of these warnings. The engine does use the options, but only once you actually time evolve the state with eng.run() . This stems from the convention that options only need to be read out by the time when they are actually used: depending on previousl...
by Johannes
29 Jul 2022, 10:21
Forum: HowTos and FAQ for TeNPy
Topic: My correlation functions from MPS.correlation_function and MPSEnvironment.expectation value disagree
Replies: 2
Views: 7256

Re: My correlation functions from MPS.correlation_function and MPSEnvironment.expectation value disagree

The issue is confusion about the (first two) arguments of correlation_function . Giving a list of operators as arguments does not mean that you evaluate correlations between multi-site terms, but that you evaluate different correlation functions on even vs odd sites: psi.correlation_function(['A','B...
by Johannes
29 Jul 2022, 07:09
Forum: HowTos and FAQ for TeNPy
Topic: Crash during calculation of <Sy>
Replies: 4
Views: 8510

Re: Crash during calculation of <Sy>

Glad to hear that :)
by Johannes
27 Jul 2022, 16:25
Forum: HowTos and FAQ for TeNPy
Topic: Crash during calculation of <Sy>
Replies: 4
Views: 8510

Re: Crash during calculation of <Sy>

I checked, and the code runs without issues on my machine. I'd guess it's some incompatibility/issue with the BLAS code being called in the end. First of all, try whether it works with export TENPY_OPTIMIZE=0 , which forces TeNPy to not load the compiled Cython parts. How did you install TeNPy? Did ...
by Johannes
26 Jul 2022, 16:26
Forum: HowTos and FAQ for TeNPy
Topic: Spin-Boson MPO
Replies: 1
Views: 6429

Re: Spin-Boson MPO

Hi, and sorry for the slow response; I hope it's still useful, given that I added extensive examples and further functions! Let me first explain why your examples do or don't work: When you write the MPO grid as W_0 = (S^z, S^x); W_1 = (N, N^2)^T or as in the last example, The [tenpyclass=tenpy.netw...
by Johannes
22 Jul 2022, 08:40
Forum: HowTos and FAQ for TeNPy
Topic: term_correlation_function_left for MPSEnvironment
Replies: 3
Views: 10713

Re: term_correlation_function_left for MPSEnvironment

You can also do SpIdSm = tenpy.networks.site.kron(s.Sp, s.Id, S.Sm, group=False) The tenpy.networks.site.kron function with n input onsite operators generates an operator acting on n consecutive sites at once, with n input and n output legs, e.g for n=3, p0*, p1*, p2*, p0, p1, p2 . The expectation_v...
by Johannes
19 Jul 2022, 10:22
Forum: HowTos and FAQ for TeNPy
Topic: reset environment
Replies: 1
Views: 23452

Re: reset environment

Since you fully re-initialize the TwoSiteDMRGEngine in the example you sent without passing the environment, you actually don't reuse the environment here. You define a new (random) product_state , but don't use it to initialize psi itself, I assume you also do that within the loop? And what exactly...
by Johannes
19 Jul 2022, 09:55
Forum: HowTos and FAQ for TeNPy
Topic: term_correlation_function_left for MPSEnvironment
Replies: 3
Views: 10713

Re: term_correlation_function_left for MPSEnvironment

Really, the proper functions is to adjust the *correlation_function methods of the MPS to the MPSEnvironment, see the new 173 . If you really just need the nearest-neighbor correlations, the expectation_value actually supports this: import tenpy s = tenpy.networks.site.SpinHalfSite() psi = tenpy.net...
by Johannes
18 Jul 2022, 16:09
Forum: HowTos and FAQ for TeNPy
Topic: Hermitian conjugate for coupled system
Replies: 1
Views: 4832

Re: Hermitian conjugate for coupled system

The first example adds terms b^\dagger_{x,0} b_{x,1} n_{x+1,1} + b^\dagger_{x,1} b_{x,0} n_{x+1,0} , which is not hermitian due to the switch in the n index. DMRG (or more precisely the Lanczos called by DMRG) always assumes a hermitian Hamiltonian! The "poorly conditioned Lanczos" is like...
by Johannes
18 Jul 2022, 15:48
Forum: HowTos and FAQ for TeNPy
Topic: Cell choice and long range correlations in a 2D iDMRG calculation
Replies: 2
Views: 6050

Re: Cell choice and long range correlations in a 2D iDMRG calculation

If you expect translation invariance along the cylinder direction (and you Hamiltonian itself is also translation invariant in x-direction), Lx=1 is certainly a natural choice. Using Lx=1 does not hinder the calculation of correlation lengths - in general, if you have an infinite MPS, it just implie...
by Johannes
18 Jul 2022, 15:11
Forum: HowTos and FAQ for TeNPy
Topic: Different Energy measures giving mixed results
Replies: 1
Views: 6898

Re: Different Energy measures giving mixed results

TEBD breaks translation invariance by performing the Trotterization of the evolution operator onto even/odd bonds. The direct way to reduce this effect is to do more, but smaller timesteps. You could also try to do higher-order evolution, but of course that doesn't make your algorithm higher-order i...
by Johannes
18 Jul 2022, 14:42
Forum: HowTos and FAQ for TeNPy
Topic: Newcomer of tenpy having an issue with my code
Replies: 1
Views: 37111

Re: Newcomer of tenpy having an issue with my code

It's correct behaviour that the state doesn't change: You start from the fully polarized all-up state, which is an eigenstate of the Hamiltonian! Try to start from another initial state, e.g. the Neel state: product_state = ["up", "down"] psi = MPS.from_product_state(M.lat.mps_si...
by Johannes
17 Jun 2022, 12:17
Forum: Implementations
Topic: Why can we set a low number of maximal Lanczos iterations in DMRG?
Replies: 0
Views: 99928

Why can we set a low number of maximal Lanczos iterations in DMRG?

Actually, I have a few more questions for you about lanczos in TeNPy. I notice that in TeNPy you set the default maximum number of iterations for lanczos (i.e. the attribute N_max) to be 20. However, when I tried to realize DMRG and lanczos algorithm on my own, I found that for a Hermitian matrix w...
by Johannes
17 Jun 2022, 12:02
Forum: HowTos and FAQ for TeNPy
Topic: add_multi_coupling vs. GroupedSite
Replies: 4
Views: 12805

Re: add_multi_coupling vs. GroupedSite

What bond dimensions did you try for the timing benchmarks? I'd expect it to become relevant only around chi >~500 or so, maybe even just with chi on the order of a thousands.
by Johannes
10 Jun 2022, 19:01
Forum: HowTos and FAQ for TeNPy
Topic: Linking against MKL
Replies: 1
Views: 6624

Re: Linking against MKL

It's documented in the conda-forge docs here . I think that's actually fine and properly linked against mkl. I've checked, and when I start from a fresh conda environment defined by TeNPy's environment.yml, I also get the # All requested packages already installed. Indeed, when I checked the install...