This is a 2D Monte Carlo simulation of the
Ising Model.
You can adjust the parameters of the simulation by changing the JavaScript code
below. Just hit the "Start" button to begin simulation. Note, the full simulation
runs within your web browser; nothing is done server side.
Steps: 0
Ising.run({
// size of the simulation
lateralSize: 100,
// pair interaction parameter (J, in kT),
pairInteraction: 3.0,
// external magnetic field (h, in kT),
externalField: 0.0,
// How frequently the visulaization is updated
visualizationRate: 100
});