1 / 13

Monte Carlo Simulation

Monte Carlo Simulation. Wednesday, 9/11/2002. Ensemble sampling Markov Chain Metropolis Sampling. Stochastic simulations consider particle interactions. Deterministic vs. Stochastic. Newton’s equation of motion. F = m a. Random Walk. Brownian motion. n = 200 s = .02

jeb
Download Presentation

Monte Carlo Simulation

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. Monte Carlo Simulation Wednesday, 9/11/2002 • Ensemble sampling • Markov Chain • Metropolis Sampling Stochastic simulations consider particle interactions.

  2. Deterministic vs. Stochastic Newton’s equation of motion F = ma Random Walk

  3. Brownian motion n = 200 s = .02 x = rand(n,1)-0.5; y = rand(n,1)-0.5; h = plot(x,y,'.'); axis([-2 2 -2 2]) axis square grid off set(h,'EraseMode','xor','MarkerSize',18) while 1 drawnow x = x + s*randn(n,1); y = y + s*randn(n,1); set(h,'XData',x,'YData',y) end Animations

  4. Lennard-Jones Potential force potential

  5. Measuring elastic constants

  6. Replace the time average with ensemble average An ensemble is a collection of systems. The probability for a system in state s is Ps. If you average the velocity of one molecule of the air in your room, as it collides from one molecule to the next, that average comes out the same as for all molecules in the room at one instant.

  7. Thought experiment Let’s pretend that our universe really is replicated over and over -- that our world is just one realization along with all the others. We're formed in a thousand undramatic day-by-day choices. Parallel universes ensembles

  8. Canonical Ensemble Fixed number of atoms, system energy, and system volume. Partition function

  9. Finite number of microstates Importance sampling

  10. Metropolis Sampling I 1. Current configuration: C(n) 2. Generate a trial configuration by selecting an atom at random and move it. 3. Calculate the change in energy for the trial configuration, DU.

  11. Metropolis Sampling II If DU < 0, accept the move, so that the trial configuration becomes the (n+1) configuration, C(n+1). If DU >= 0, generate a random number r between 0 and 1; If r <= exp( -DU/kBT ), accept the move, C(n+1) = C(t); If r > exp( -DU/kBT ), reject the trial move. C(n+1) = C(n). A sequence of configurations can be generated by using the above steps repeatedly. Properties from the system can be obtained by simply averaging the properties of a large number of these configurations.

  12. Markov Chain A sequence X1, X2, …, of random variable is called Markov if, for any n, i.e., if the conditional distribution F of Xn assuming Xn-1, Xn-2, …, X1 equals the conditional distribution F of Xn assuming of only Xn-1.

  13. Markov Process Dart hit-or-miss Random Walk (RW) Self-Avoiding Walk (SAW) Growing Self-Avoiding Walk (GSAW) Diffusion Limited Aggregation http://apricot.polyu.edu.hk/~lam/dla/dla.html

More Related