-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
self.s VS self.zs #74
Comments
Both Since At this time, the tool, |
In my lattice, all sites consist of identical I aim to calculate the expectation value of
After making this change, I re-ran the code, but the results did not change. -------------------------------------------I have another argument and I would be very thankful to you if kindly respond. Certainly your comments would be very useful to accomplish my project in which the main part of my investigations were done using TeNeS. I always find an inconsistency between the results obtained from the exact diagonalization (as well as DMRG) and that of obtained from the TeNeS. On the other hand, the TeNeS converts a typical lattice to an infinite tensor network. Here, I considered a 4 by 4 lattice shown in below figure. To my knowledge, the TeNeS calculates order parameters such as magnetization for an infinite lattice where the boundary conditions may not play important role. Please see my results in below figure and let me know that from where this difference originates. Is this difference reasonable? -- In above figure, I plotted the ED/DMRG results of the magnetization of my lattice with step-like mode, while smooth-mode for TeNeS has been used. As TeNeS considers the lattice as infinite regardless of the boundary conditions, one might expect that the results obtained from ED/DMRG and TeNeS would exhibit magnetization jumps and plateaus near the same critical magnetic field points. However, upon examining the above figure, it becomes evident that TeNeS produces notably different results for the upper-bound magnetic field of the one-half plateau and the saturation field when compared to ED/DMRG. It is worth mentioning that TeNeS and ED/DMRG results do coincide in some parts of spin-liquid region, and in the lower-bound magnetic field for the one-half plateau. -- I also attempted quasi-periodic boundary conditions (quasiPBC) along one of the directions |
In the main part of Line 1360 in f5c35c5
Thus, the change of the default value of the second argument General remarks:
@TsuyoshiOkubo |
Hi,
I newly installed last version (
v-1.3.3
) of TeNeS. I can run samples code in sample folder of TeNeS.In previous version (
v-1.2
), I introduced my lattice intenes_simple.py
file and it was working fine withself.z
.I just copied my lattice code from previous version to the tenes_simple of new version
v-1.3.3
and I faced an error after running the code, revealing thatself.z
should not be integer.I found that you replaced
self.z
withself.zs
in the lattice parts.For example for Kagome lattice introduced in the new version, you introduced
self.sz
as:self.zs = [[2, 2, 0], [4, 0, 0], [4, 2, 0]]
, while in previous version it wasself.z = 4
.Can you please specify what is the meaning of all elements of 2d array
self.zs
, in detail?For the lattice model shown below:
how the elements of
self.zs = [[]]
for above shown lattice should be selected?I selected them as:
self.zs = [[2, 1, 0], [0, 0, 0], [0, 0, 0]]
, is that right?Thanks!
The text was updated successfully, but these errors were encountered: