You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the implementation of the Heisenberg model, I have concerns regarding how flexible the model terms are. From playing around with it, I'm assuming I can only specify site and nearest neighbor interactions. This assumption comes from the implementation of the Heisenberg model where we see:
I also see that the user is able to specify their own terms through self._td = terms but its not clear to me how _td is used to build the Heisenberg model as its use is not documented.
This issue is brought up regarding on whether or not I can specify the J1-J2 Heisenberg model with this model. The J1-J2 model has nearest neighbor interaction and next nearest neighbor interaction terms. Given what is defined, it seems unsure whether or not it can be represented with this model.
The text was updated successfully, but these errors were encountered:
The Heisenberg model implementation is specific to nearest neighbors, however the more general LatticeInstanceshould provide the functionality you are looking for. The usage for td (term dictionary) is described in section 2.3 of this notebook, and an example using the LatticeInstance is described at the end of this notebook as a 'User-Defined Spin Model'. Improvements to the documentation are ongoing.
Given the implementation of the Heisenberg model, I have concerns regarding how flexible the model terms are. From playing around with it, I'm assuming I can only specify site and nearest neighbor interactions. This assumption comes from the implementation of the Heisenberg model where we see:
I also see that the user is able to specify their own terms through
self._td = terms
but its not clear to me how _td is used to build the Heisenberg model as its use is not documented.This issue is brought up regarding on whether or not I can specify the J1-J2 Heisenberg model with this model. The J1-J2 model has nearest neighbor interaction and next nearest neighbor interaction terms. Given what is defined, it seems unsure whether or not it can be represented with this model.
The text was updated successfully, but these errors were encountered: