Understanding autocorrelations in 2D Ising model

In summary, the conversation is about an individual's struggle with implementing an autocorrelation code in their project. They have a 10x10 square lattice system and have tried several methods to calculate the autocorrelation, but are getting unexpected results. They have also discovered a discrepancy in the formula they are using for the autocorrelation and are seeking clarification on what might be causing the issue.
  • #1
Al X
7
0
I wasn't sure where to post this, I hope this was the right section.

I've been struggling quite a bit with implementing an autocorrelation code into my current project. The autocorrelation as it is now, is increasing exponentially from 1 at the start of my MC run, and hitting 2 halfway through the MC simulation regardless of how many sweeps I do through the lattice.

The system

10x10 square lattice with no external magnetic field and ferromagnetic coupling. The reason for 10x10 is for fast execution of the code in order to build it.

Here is what I've done so far:

1. Letting the Metropolis Monte Carlo work until the system is in equilibrium (checking this by running two different initial states with different random seeds).
2. Then I start sweeping through the lattice, updating the energies and magnetization for each attempt at flipping one spin. When I've done one sweep over the lattice, the last value of the energy and magnetization gets stored. Then it continues to the next sweep and updating the values further. Thus, the energies and magnetization only gets stored once per sweep.
3. When I've done, say 2000 sweeps, I calculate the autocorrelation for the system according to Newman & Barkema (Eq 3.21 in http://itf.fys.kuleuven.be/~fpspXIII/material/Barkema_FPSPXIII.pdf). The formula reads: $$\chi(t)=\frac{1}{t_{max}-t}\sum_{t'=0}^{t_{max}-t}m(t')m(t'+t)-\frac{1}{t_{max}-t}\sum_{t'=0}^{t_{max}-t}m(t')\times\frac{1}{t_{max}-t}\sum_{t'=0}^{t_{max}-t}m(t'+t)$$ where t defines number of sweeps of the lattice, i.e the displacement/lag from some value.

My problem
From my simulation at $k_{b}T/J$, where $k_{b}$ is set to 1, $J=1$ is the ferromagnetic coupling, and $T=1$ the autocorrelation function grows. I've tried to normalize it by dividing by the first value resulting in a start at 1, but it acts strange as stated. Thus, I started to calculate by hand trying to see if I had coded something wrong. I worked with a system where each spin in the lattice had spin 1 for every $t\Rightarrow m(t')=m(t'+t)=\langle m \rangle=1$. I then cutoff the autocorrelation at $t$=1000 when running 2000 sweeps. The formula then reduces down to $$\chi(t)=\frac{1}{2000-t}\sum_{t'=0}^{2000-t}1-\frac{1}{2000-t}\sum_{t'=0}^{2000-t}1\times\frac{1}{2000-t}\sum_{t'=0}^{2000-t}1$$. Then for some values: $$\chi(0)=\frac{1}{2000}\sum_{t'=0}^{2000}1-\frac{1}{2000}\sum_{t'=0}^{2000}1\times\frac{1}{2000}\sum_{t'=0}^{2000}1$$
$$=\frac{2001}{2000}-\left(\frac{2001}{2000}\right)^{2}\approx-5\cdot10^{-4}$$
$$\chi(500)=\frac{1501}{1500}-\left(\frac{1501}{1500}\right)^{2}\approx-6.6\cdot10^{-4}$$
$$\chi(1000)=\frac{1001}{1000}-\left(\frac{1001}{1000}\right)^{2}\approx-1\cdot10^{-3}$$
As we see, the autocorrelation value has doubled when check for half of the number of sweeps through the lattice.

Questions:

1. I'd expect that the correlation function would behave as an exponentially decaying function like $$e^{-t/\tau}$$ where $\tau$ is the correlation time, but rather, the plots show exponential growth with values as calculated above.
2. The expression for the autocorrelation as stated in this post is a discretization of $$\chi(t)=\int dt'(m(t')-\langle m\rangle)(m(t'+t)-\langle m \rangle)$$ which implies that if all values are 1, the integral should 0, not an increasing function. What went wrong?
 
Physics news on Phys.org
  • #2
The problem was solved.
 

1. What is the 2D Ising model?

The 2D Ising model is a mathematical model used in statistical mechanics to study the behavior of a system of interacting particles arranged on a 2-dimensional lattice. It is often used to model ferromagnetism and phase transitions in materials.

2. What is autocorrelation?

Autocorrelation is a measure of the similarity between a signal or data set and a lagged version of itself over successive time intervals. In the context of the 2D Ising model, it refers to the correlation between the spin values of particles at different lattice sites over time.

3. Why is understanding autocorrelations important in the 2D Ising model?

Understanding autocorrelations in the 2D Ising model is important because it can provide insight into the behavior of the system and can help identify phase transitions. It also allows for the calculation of important physical quantities, such as the correlation length and critical exponents.

4. How are autocorrelations calculated in the 2D Ising model?

Autocorrelations in the 2D Ising model are typically calculated using Monte Carlo simulations, which involve randomly updating the spin values of particles on the lattice according to a specific algorithm. The correlation between spin values at different lattice sites is then measured over multiple iterations of the simulation.

5. What factors can affect autocorrelations in the 2D Ising model?

The main factors that can affect autocorrelations in the 2D Ising model include the temperature of the system, the size of the lattice, and the type of interactions between particles. Additionally, the specific algorithm used for the Monte Carlo simulations and the length of the simulation can also impact the autocorrelations.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Introductory Physics Homework Help
Replies
13
Views
743
  • Atomic and Condensed Matter
Replies
3
Views
874
Replies
0
Views
2K
  • Atomic and Condensed Matter
Replies
5
Views
3K
  • Atomic and Condensed Matter
Replies
1
Views
2K
  • Atomic and Condensed Matter
Replies
1
Views
1K
  • Advanced Physics Homework Help
Replies
0
Views
243
  • Quantum Physics
Replies
26
Views
1K
  • High Energy, Nuclear, Particle Physics
Replies
3
Views
692
Back
Top