44
Applications of Monte Carlo Methods to Statistical Physics Austin Howard & Chris Wohlgamuth April 28, 2009 This presentation is available at http://www.utdallas.edu/~ahoward/montecarlo

Applications of Monte Carlo Methods to Statistical Physics

  • Upload
    nedaa

  • View
    54

  • Download
    0

Embed Size (px)

DESCRIPTION

Applications of Monte Carlo Methods to Statistical Physics. Austin Howard & Chris Wohlgamuth April 28, 2009. This presentation is available at http://www.utdallas.edu/~ ahoward/montecarlo. What is a Monte Carlo Method?. An Introduction. Motivation: An Example . - PowerPoint PPT Presentation

Citation preview

Page 1: Applications of Monte Carlo Methods to Statistical Physics

Applications of Monte Carlo Methods to Statistical

PhysicsAustin Howard & Chris Wohlgamuth

April 28, 2009

This presentation is available at http://www.utdallas.edu/~ahoward/montecarlo

Page 2: Applications of Monte Carlo Methods to Statistical Physics

What is a Monte Carlo Method?

An Introduction

Page 3: Applications of Monte Carlo Methods to Statistical Physics

Consider calculation of an integral:

How can we calculate this?◦ Midpoint Method◦ Trapezoid Method

But these have problems…

Motivation: An Example

Page 4: Applications of Monte Carlo Methods to Statistical Physics

Why do the standard methods fail?

1 Dimensional Integral 2 Dimensional Integral

Page 5: Applications of Monte Carlo Methods to Statistical Physics

To prevent the so-called “curse of dimensionality,” we can randomly sample our space instead.

Example: Calculating π.

Solving the Problem using Randomness

Page 6: Applications of Monte Carlo Methods to Statistical Physics

Calculating π

Page 7: Applications of Monte Carlo Methods to Statistical Physics

Calculating π

Page 8: Applications of Monte Carlo Methods to Statistical Physics

There is not “one” Monte Carlo (MC) method!

MC simulations do not come in a well defined equation or package.

The MC method can better be thought of as a process or systematic approach.

An Important Point

Page 9: Applications of Monte Carlo Methods to Statistical Physics

PercolationAn example of Monte Carlo Methods in Action

Page 10: Applications of Monte Carlo Methods to Statistical Physics

PercolationWhat is Percolation?

Page 11: Applications of Monte Carlo Methods to Statistical Physics

Percolation describes the flow of a fluid through a porous material.

This is in contrast to diffusion, which is the spread of particulates through a fluid.

What is Percolation?

Image from Wikimedia Commons

Page 12: Applications of Monte Carlo Methods to Statistical Physics

To model percolation (in 2D), we represent the material by an n x n “lattice” of points, called nodes,

How Can We Model Percolation?

Page 13: Applications of Monte Carlo Methods to Statistical Physics

Connected by line segments called bonds.

POROSITY (pō•ros′i•ty): The ratio of the volume of a material’s pores to that of its solid content.

How Can We Model Percolation?

Webster’s New Universal Unabridged Dictionary

Page 14: Applications of Monte Carlo Methods to Statistical Physics

Then we go through and randomly assign the property of open of closed to each line segment. Let us say the probabilty a particular line is open is p.

How Can We Model Percolation?

Page 15: Applications of Monte Carlo Methods to Statistical Physics

And we see how many “paths” from top to bottom we can trace using only “open” line segments.

How Can We Model Percolation?

Page 16: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:

Determining the Number of Paths

Page 17: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Straightforward

“Brute Force” Method

Determining the Number of Paths

Page 18: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Straightforward

“Brute Force” Method

Determining the Number of Paths

Problems with this approach:

Far too many computations:◦ First, we have to

trace all possible paths from one node on the surface.

Page 19: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Straightforward

“Brute Force” Method

Determining the Number of Paths

Problems with this approach:

Far too many computations:◦ Then we have to

repeat for every one of the nodes.

Page 20: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Straightforward

“Brute Force” Method

Determining the Number of Paths

Problems with this approach:

Far too many computations:◦ In order to use the

MC method, we need many, many “runs" with the same probability, so we must repeat the whole process a number of times with the same value of p.

Page 21: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Straightforward

“Brute Force” Method

Determining the Number of Paths

Problems with this approach:

Far too many computations:◦ Finally, in order to

get the percolation P (p) as a function of p, we must repeat all of this many times for different values of p.

Page 22: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Straightforward

“Brute Force” Method

Determining the Number of Paths

Problems with this approach:

Net result: this method is far too inefficient to work in practice.

Page 23: Applications of Monte Carlo Methods to Statistical Physics

How do we count the number of paths which “span” the matrix?

There are a number of algorithms:◦ Hoshen-Kopelman

Algorithm

Determining the Number of Paths

Page 24: Applications of Monte Carlo Methods to Statistical Physics

First improvement is that we transform from a matrix of the bonds:

The Hoshen-Kopelman Algorithm

Page 25: Applications of Monte Carlo Methods to Statistical Physics

To one of the nodes.

Each node is given the property of open or closed, as before, and we consider percolation to occur between two open nodes.

The Hoshen-Kopelman Algorithm

Page 26: Applications of Monte Carlo Methods to Statistical Physics

Thus, our problem is reduced to finding the proportion of “clusters” of open nodes which are large enough that they span from the top edge to the bottom edge.

The Hoshen-Kopelman Algorithm

Page 27: Applications of Monte Carlo Methods to Statistical Physics

The Hoshen-Kopelman Algorithm (HKA) essentially labels clusters of adjoining elements of a matrix which have the same value

The Hoshen-Kopelman Algorithm

Page 28: Applications of Monte Carlo Methods to Statistical Physics

Specifically, HKA transforms a matrix of data to a matrix of labels, with a different label used for each cluster of adjoining elements of the data matrix which have the same value.

The Hoshen-Kopelman Algorithm

Page 29: Applications of Monte Carlo Methods to Statistical Physics

The Hoshen-Kopelman Algorithm

0 1 1 11 0 1 00 1 0 01 1 0 1

1 and 0 (essentially true and false) denote open and closed nodes, respectively.

12

34

0 1 1 12 0 1 00 3 0 03 3 0 4

Page 30: Applications of Monte Carlo Methods to Statistical Physics

Unfortunately, due to time constraints, we will not be able to discuss the specifics of HKA here.

However, it is discussed in our paper, available on WebCT, and on the internet with this presentation.

Operation of HKA

Page 31: Applications of Monte Carlo Methods to Statistical Physics

Consider the following example:◦ Grid is a 500 x 500 2D matrix◦ Generate 5,000 matrices for each value of p.◦ Calculate P(p) for values of p spaced a distance

0.05 apart. One obtains the following graph.

Results of HKA applied to a Model System

Page 32: Applications of Monte Carlo Methods to Statistical Physics

Results of HKA applied to a Model System

n

Key Points:• Percolation Threshold• Phase Transition• Appropriate Limiting

Behavior

Pc ≈ 0.6

Page 33: Applications of Monte Carlo Methods to Statistical Physics

Results of HKA applied to a Model System

(Number of clusters of size larger than 1)

Page 34: Applications of Monte Carlo Methods to Statistical Physics
Page 35: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

What is the Ising Model?-Simplified model for magnetic systems-Only two possible directions for spin-There are interactive forces between spins, but only neighbors

Page 36: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

A few equations for us to recall

E J i ji, j , i, j 1

P e E /T

Page 37: Applications of Monte Carlo Methods to Statistical Physics

Ising ModelThe Monte Carlo Approach

Page 38: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

Page 39: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

-Divide system into a lattice structure

-Set initial conditions spin direction and H

-Flip spin direction and calculate new energy (E*)

Page 40: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

Page 41: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

-If ∆E <0 we retain it-If ∆E >0 we perform the following

-Choose a random number between (0,1]

-Calculate the probability (P) of the system attaining this

state-If P>random number spin flip

retained-If P<random number spin not

flipped

Page 42: Applications of Monte Carlo Methods to Statistical Physics

Ising Model

Page 43: Applications of Monte Carlo Methods to Statistical Physics

Summary

- The key ingredient in a Monte Carlo method is random numbers.

- In both Ising Model and percolation, Monte Carlo method is a

valuable tool.

Page 44: Applications of Monte Carlo Methods to Statistical Physics

This presentation is available at http://www.utdallas.edu/~ahoward/montecarlo