1 / 27

8. Selected Applications

8. Selected Applications. Applications of Monte Carlo Method. Structural and thermodynamic properties of matter [gas, liquid, solid, polymers, (bio)-macro-molecules] Ising model as an example. Equilibrium Statistical Mechanics.

neil
Download Presentation

8. Selected Applications

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 8. Selected Applications

  2. Applications of Monte Carlo Method • Structural and thermodynamic properties of matter [gas, liquid, solid, polymers, (bio)-macro-molecules] • Ising model as an example

  3. Equilibrium Statistical Mechanics • Interactions between atoms or molecules (at a classical mechanical level) are described by inter-molecular potentials

  4. A Quick Introduction to Statistical Mechanics • When a system has a fixed energy E and number of particles N, each microstate has equal probability consistent with the constraints • Entropy S = kB log W W is the number of microstates and kB is Boltzmann constant.

  5. Boltzmann Distribution In canonical ensemble (fixed temperature T, volume V, and particle number N), the distribution of a (micro) state is P(X)  e—E(X)/(kT) Ludwig Boltzmann, 1844-1906

  6. Partition Function and Free Energy • We define partition function Z = ∑X exp(-βE(X)), β = 1/(kBT) • Free energy is F = -kBT log Z, we have F = U – TS, dF = - S dT + P dV • Thus

  7. Force Field -Van der Waals • Lennard-Jones potential, useful to representing van der Waals force and model for noble gases

  8. Embedded-Atom Potential for Metal • where density is a complicated function of local coordinates and

  9. Potential for Bio-molecules • V = (bonding) + (angle and torsion angle) + (Coulomb) + (van der Waals) + … • E.g., the bonding is usually modeled by an elastic spring:

  10. Equilibrium Properties and Minimum Energy Configuration • All of them can be determined by the configuration integral • Simulated annealing let T -> 0 gradually

  11. Properties of Interests • Average energy, specific heat, free energy • Pair correlation functions • Equation of state (pressure) • Temperature?

  12. Pair Correlation • Let ρ(r) = ∑iδ(r-ri), we define the pair correlation function as g(r) = < ρ(r’) ρ(r’+r) > • Both the average potential energy and pressure can be expressed in terms of g(r) (for system with pair-wise potentials).

  13. “Configuration” Temperature • We can also sample the temperature from the configuration based on virial theorem: kBT = < u • H> • where u is any vector satisfies •u =1 (u and  are in the space of all momentum p and coordinates q)

  14. Use Locality for Efficient Calculation of ΔE • The most time-consuming part in MC is calculating ΔE:

  15. Most Recent Work on 2D Hard disks The hexatic phase of the two-dimensional hard disk system A. Jaster Published in Phys. Lett. A 330 (2004) 120 We report Monte Carlo results for the two-dimensional hard disk system in the transition region. Simulations were performed in the NVT ensemble with up to 10242 disks. The scaling behaviour of the positional and bond-orientational order parameter as well as the positional correlation length prove the existence of a hexatic phase as predicted by the Kosterlitz-Thouless-Halperin-Nelson-Young theory. The analysis of the pressure shows that this phase is outside a possible first-order transition. Cond-mat/0305239 The article can be downloaded from http://arxiv.gov/

  16. The Ising Model - - - - + + The energy of configuration σ is E(σ) = - J ∑<ij>σiσj where i and j run over a lattice, <ij> denotes nearest neighbors, σ = ±1 - - - + + - + + - - - + - + + - + + + - - - - + + + - - - + σ = {σ1, σ2, …, σi, … }

  17. Periodic Boundary Condition • To minimize the effect of edges, we usually use periodic boundary condition • The neighbor of the site at coordinates [I,J] is at [ (I±1) mod L, J] and [I, (J±1) mod L] I or J takes value 0, 1, 2, …, L-1.

  18. General Ising Model • E(σ) = -B ∑σi - ∑Jijσiσj - ∑Kijkσiσjσk+ … • A general Ising model can be used to understand variety of problems such as phase transitions, molecular adsorption on surfaces, image processing, classification problems

  19. Single Spin Flip • The basic move we can do in an Ising model is a spin flip, σi -> -σi • One possible choice of the T matrix is

  20. Compute ΔE where summation over j is over the nearest neighbors of current site i.

  21. C Program for Nearest Neighbor Ising Model montecarlo( ) { int k, i, e, nn[Z]; for(k=0; k<N; ++k) { i = drand48() * ( (double) N); neighbor(i,nn); for(e=0, j=0; j < Z; ++j) e += s[nn[j]]; e *= 2*s[i]; if(e <= 0 || drand48() < exp(-e/T) ) { s[i] = - s[i]; } } } where Z, N, T are constants.

  22. Quantities to Sample • Average energy <E(σ)> • Specific heat by the formula: 3. Magnetization <M> = <|∑iσi|>

  23. Quantities to Sample • Susceptibility by kBT = <M2>-<M>2 5. Binder’s 4-th order cumulant U = 1 - <M4>/(3<M2>2) • Spin correlation function <σi σj> • Time-dependent correlation function, e.g., <E(t’)E(t’+t)>

  24. Specific Heat of 2D Ising Model From D P Landau, Phys Rev B 13 (1976) 2997.

  25. Finite-Size Scaling • Singular part of free-energy has the scaling form: F(L,T) = L-(2-α)/ν ĝ( (T-Tc)/TcL1/ν) This implies at Tc for large size L, M L-β/ν,  Lγ/ν, C  Lα/ν

  26. Shift of Tc Tc(L) = Tc(∞) + aL-1/ν By considering the shift of Tc with respect to sizes, Ferrenberg and Landau determined highly accurate 1/Tc = 0.2216595±0.0000026 for the 3D Ising model. From A M Ferrenberg and D P Landau, Phys Rev B 44 (1991) 5081

  27. Accurate Exponent Ratio Finite-size scaling   Lγ/νat Tc=0 for the three-state anti-ferromagnetic Potts model: E(σ) = J ∑<i,j>δ(σi, σj) Where σ = 1,2,3 and δ is Kronecker delta function. We found numerically that γ/ν = 1.666 ± 0.002 From J S Wang, R H Swendsen, and R Kotecký, Phys Rev. B, 42 (1990) 2465.

More Related