Quantum annealing: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Widefox
 
Line 1: Line 1:
The '''kinetic Monte Carlo (KMC)''' method is a [[Monte Carlo method]] computer simulation intended to simulate the time evolution of some processes occurring in nature.  Typically these are processes that occur with a given known rate.  It is important to understand that these rates are inputs to the KMC algorithm, the method itself cannot predict them.
Alyson Meagher is the title her parents gave her but she doesn't like when people use her complete title. Office supervising is my occupation. To climb is something she would by no means give up. Kentucky is exactly where I've always been residing.<br><br>Look at my homepage tarot card readings ([http://165.132.39.93/xe/visitors/372912 talking to])
 
The KMC method is essentially the same as the [[dynamic Monte Carlo method]] and the [[Gillespie algorithm]].
 
==Algorithm==
[[Image:Transfer_rates.svg|thumb|240px|alt=Transfer rates between one initial and four final states|At each step, the system can jump into several ending states, the transfer rates between the initial state and all the possible ending states are supposed to be known.]]
 
The KMC algorithm for simulating the time evolution of a system where some processes can occur with known rates r can be written for instance as follows:
 
[[Image:State decision in KMC.svg|thumb|240px|Choice of the final state : a random var is chosen between 0 and Γ<sub>tot</sub>; the probability that the system jumps into state ''i'' is proportional to Γ<sub>i</sub>.]]
 
# Set the time <math>t = 0</math>.
# Form a list of all possible rates in the system <math>r_i</math>
# Calculate the cumulative function <math>R_i=\sum_{j=1}^i r_j</math> for <math>i=1,\ldots,N</math>, where ''N'' is the total number of transitions.
# Get a uniform random number <math>u \in (0, 1]</math>
# Find the event to carry out ''i'' by finding the ''i'' for which <math>R_{i-1} < u R_N \le R_i</math> (this can be achieved efficiently using [[binary search]]).
# Carry out event ''i''.
# Get a new uniform random number <math>u^\prime \in (0, 1]</math>.
# Update the time with <math>t = t + \Delta t</math>, where <math>\Delta t =  R_N^{-1} \ln(1/u^\prime)</math>
# Recalculate all rates <math>r_i</math> which may have changed due to the transition. If appropriate, remove or add new transitions ''i''. Update ''N'' and the list of events accordingly.
# Return to step 2.
 
(Note: because the average value of <math>\ln(1/u^\prime)</math> is equal to unity, the same ''average'' time scale can be obtained by instead using <math>\Delta t = R_N^{-1} </math> in step 8. In this case, however, the delay associated with transition ''i'' will not be drawn from the [[Poisson distribution]] described by <math>r_i</math>, but will instead be the mean of that distribution.)
 
This algorithm is known in different sources variously as the '''residence-time algorithm''' or the '''''n''-fold way''' or the '''Bortz-Kalos-Lebowitz  (BKL)''' algorithm or just the '''kinetic Monte Carlo (KMC)''' algorithm. It is important to note that the timestep involved is a function of the probability that all events ''i'', did not occur.
 
==Time-dependent Algorithms==
If the rates <math>r_i(t)</math> are time dependent, step 8 has to be modified by (Prados 1997):
:<math>\int_{0}^{\Delta t} R_i(t') dt' =  \ln(1/u^\prime)</math>.
The reaction (step 5) has to be chosen after this  by
:<math>R_{i-1}(\Delta t)  <  u  R_N( \Delta t ) \leq R_i(\Delta t)</math>
 
Another very similar algorithm is called the First Reaction Method (FRM). It consists of choosing the first-occurring reaction, meaning to choose the smallest time <math>\Delta t_i</math>, and the corresponding reaction number ''i'', from the formula
:<math>\int_{0}^{\Delta t_i} r_i(t') dt' =  \ln(1/u_i) </math>,
where the <math>u_i \in (0, 1]</math> are N random numbers.
 
==Comments on the algorithm==
The key property of the KMC algorithm (and of the FRM one) is that if the rates are correct, if the processes associated with the rates are of the [[Poisson process]] type, and if different processes are independent (i.e. not correlated) then the KMC algorithm gives the correct time scale for the evolution of the simulated system.
 
If furthermore the transitions follow [[detailed balance]], the KMC algorithm can be used to simulate thermodynamic equilibrium. However, KMC is widely used to simulate non-equilibrium processes (Meng 1994), in which case detailed balance need not be obeyed.
 
The KMC algorithm is efficient in the sense that every iteration is guaranteed to produce a transition. However, in the form presented above it requires <math>N</math> operations for each transition, which is not too efficient. In many cases this can be much improved on by binning the same kinds of transitions into bins, and/or forming a tree data structure of the events. A constant-time scaling algorithm of this type has recently been developed and tested in (Slepoy 2008).
 
The major disadvantage with KMC is that all possible rates <math>r_i</math> and reactions have to be known in advance. The method itself can do nothing about predicting them.
 
==Examples of use==
KMC has been used in simulations of the following physical systems:
# Surface diffusion
# Surface growth (Meng 1996)
# [[Vacancy defect|Vacancy]] diffusion in alloys (this was the original use in (Young 1966))
# Coarsening of domain evolution
# Defect mobility and clustering in ion or neutron irradiated solids including, but not limited to, damage accumulation and amorphization/recrystallization models.
# Viscoelasticity of physically crosslinked networks (Baeurle 2006)
 
To give an idea what the "objects" and "events" may be in practice, here is one concrete simple example, corresponding to example 2 above.
 
Consider a system where individual atoms are deposited on a surface one at a time (typical of [[physical vapor deposition]]), but also may migrate on the surface with some known jump rate <math>w</math>. In this case the "objects" of the KMC algorithm are simply the individual atoms.
 
If two atoms come right next to each other, they become immobile. Then the flux of incoming atoms determines a rate ''r''<sub>deposit</sub>, and the system can be simulated with KMC considering all deposited mobile atoms which have not (yet) met a counterpart and become immobile. This way there are the following events possible at each KMC step:
 
* A new atom comes in with rate 'r''<sub>deposit</sub>
* An already deposited atom jumps one step with rate ''w''.
 
After an event has been selected and carried out with the KMC algorithm, one then needs to check whether the new or just jumped atom has become immediately adjacent to some other atom. If this has happened, the atom(s) which are now adjacent needs to be moved away from the list of mobile atoms, and correspondingly their jump events removed from the list of possible events.
 
Naturally in applying KMC to problems in physics and chemistry, one has to first consider whether the real system follows the assumptions underlying KMC well enough.
Real processes do not necessarily have well-defined rates, the
transition processes may be correlated, in case of atom or particle jumps
the jumps may not occur in random directions, and so on. When simulating
widely disparate time scales one also needs to consider whether
new processes may be present at longer time scales. If any of these
issues are valid, the time scale and system evolution predicted by KMC
may be skewed or even completely wrong.
 
==History==
The first  publication which described the basic features of the KMC method (namely using a cumulative function to select an event and a time scale calculation of the form 1/''R'') was by Young and Elcock in 1966 (Young 1966). The residence-time algorithm was also published at about the same time in (Cox 1965).
 
Apparently independent of the work of Young and Elcock, Bortz, Kalos and Lebowitz (Bortz 1975) developed a KMC algorithm for simulating the [[Ising model]], which they called the ''n-fold way''. The basics of their algorithm is the same as that of (Young 1966), but they do provide much greater detail on the method.
 
The following year [[Dan Gillespie]] published what is now known as the [[Gillespie algorithm]] to describe chemical reactions (Gillespie 1976). The algorithm is similar and the time advancement scheme essentially the same as in KMC.
 
There is as of the writing of this (June 2006) no definitive treatise of the theory of KMC, but Fichthorn and Weinberg have discussed the theory for thermodynamic equilibrium KMC simulations in detail in (Fichthorn 1991). A good introduction is given also by Art Voter (Voter 2005),[http://www.ipam.ucla.edu/publications/matut/matut_5898_preprint.pdf] and by A.P.J. Jansen (Jansen 2003),[http://arxiv.org/abs/cond-mat/0303028],
and a recent review is (Chatterjee 2007) or (Chotia 2008).
 
In March, 2006 the, probably, first commercial software using Kinetic Monte Carlo to simulate the diffusion and activation/deactivation of dopants in Silicon and Silicon-like materials is released by [[Synopsys]], reported by Martin-Bragado et al. (Martin-Bragado 06).
 
==Varieties of KMC==
The KMC method can be subdivided by how the objects are moving or reactions
occurring. At least the following subdivisions are used:
 
* Lattice KMC ('''LKMC''') signifies KMC carried out on an atomic [[crystal structure|lattice]]. Often this variety is also called atomistic KMC, ('''AKMC'''). A typical example is simulation of [[vacancy (chemistry)|vacancy]] [[diffusion]] in [[alloy]]s, where a [[vacancy (chemistry)|vacancy]] is allowed to jump around the lattice with rates that depend on the local elemental composition
 
* Object KMC ('''OKMC''') means KMC carried out for [[crystallographic defect|defects]] or [[impurity|impurities]], which are jumping either in random or lattice-specific directions. Only the positions of the jumping objects are included in the simulation, not those of the 'background' lattice atoms. The basic KMC step is one object jump.
 
* Event KMC ('''EKMC''') or First-passage KMC ('''FPKMC''') signifies an OKMC variety where the following reaction between objects (e.g. clustering of two [[impurity|impurities]] or [[vacancy (chemistry)|vacancy]]-[[interstitial defect|interstitial]] annihilation) is chosen with the KMC algorithm, taking the object positions into account, and this event is then immediately carried out (Dalla Torre 2005, Oppelstrup 2006).
 
==External links==
* [http://www.roentzsch.org/RealBit/ 3D lattice kinetic Monte Carlo simulation in 'bit language']
* [http://www.roentzsch.org/Rayleigh/ KMC simulation of the Plateau-Rayleigh instability]
* [http://www.roentzsch.org/SurfDiff/ KMC simulation of f.c.c. vicinal (100)-surface diffusion]
 
==References==
* (Cox 1965): D.R. Cox and H.D. Miller, The Theory of Stochastic Processes (Methuen, London, 1965, pp 6–7.
 
* (Young 1966): W. M. Young and E. W. Elcock, Proceedings of the Physical Society  89 (1966) 735.
 
* (Bortz 1975): A. B. Bortz and M. H. Kalos and J. L. Lebowitz, Journal of Computational Physics 17 (1975) 10 [http://dx.doi.org/10.1016/0021-9991(75)90060-1 Journal of Computational Physics 17 (1975) 10] (needs subscription)
 
* (Gillespie 1976): D. T. Gillespie, Journal of Computational Physics 22 (1976) 403
 
* (Fichthorn 1991): K. A. Fichthorn and W. H. Weinberg, [http://dx.doi.org/10.1063/1.461138 Journal of Chemical Physics 95 (1991) 1090] (needs subscription)
 
* (Meng 1994): B. Meng and W. H. Weinberg, J. Chem. Phys. 100, 5280 (1994).
 
* (Meng 1996): B. Meng, W.H. Weinberg, Surface Science 364 (1996) 151-163.
 
* (Prados 1997): A. Prados, J. J. Brey and B. Sanchez-Rey, Journal of Statistical Physics 89, 709-734 (1997)
 
* (Jansen 2003): A.P.J. Jansen, An Introduction To Monte Carlo Simulations Of Surface Reactions, Condensed Matter, abstract [http://arxiv.org/abs/cond-mat/0303028 cond-mat/0303028].
 
* (Dalla Torre 2005): J. Dalla Torre, J.-L. Bocquet, N.V. Doan, E. Adam and A. Barbu, Phil. Mag. 85 (2005), p.&nbsp;549.
 
* (Voter 2005): A. F. Voter, Introduction to the Kinetic Monte Carlo Method, in Radiation Effects in Solids, edited by K. E. Sickafus and E. A. Kotomin (Springer, NATO Publishing Unit, Dordrecht, The Netherlands, 2005).
 
* (Opplestrup 2006): T. Opplestrup, V. V. Bulatov, G. H. Gilmer, M. H. Kalos, and B. Sadigh, First-Passage Monte Carlo Algorithm: Diffusion without All the Hops, Physical Review Letters 97, 230602 (2006)
 
* (Chatterjee 2007): A. Chatterjee and D. G. Vlachos, An overview of spatial microscopic and accelerated kinetic Monte Carlo methods, J. Computer-Aided Mater. Des. 14, 253 (2007).
 
* (Chotia 2008): A. Chotia, M. Viteau, T. Vogt, D. Comparat and P. Pillet, Kinetic Monte Carlo modelling of dipole blockade in Rydberg excitation experiment, New Journal of Physics 10 pages 045031 (2008)
 
* (Martinez 2008): E.Martinez, J.Marian, M.H.Kalos, J.M.Perlado, Synchronous Parallel Kinetic Monte Carlo for Continuum Diffusion-Reaction Systems, Journal of Computational Physics, Volume 227, Issue 8, 1 April 2008, Pages 3804-3823
 
* (Martin-Bragado 2008): I. Martin-Bragado, S. Tian, M. Johnson, P. Castrillo, R. Pinacho, J. Rubio and M. Jaraiz, Modeling charged defects, dopant diffusion and activation mechanisms for TCAD simulations using kinetic Monte Carlo. [http://dx.doi.org/10.1016/j.nimb.2006.10.035 Nuclear Instruments and Methods in Physics Research B, 253 (2006) 63-67 (needs subscription).]
 
* (Slepoy 2008): A. Slepoy, A. P. Thompson, and S. J. Plimpton, A constant-time kinetic Monte Carlo algorithm for simulation of large biochemical reaction networks, Journal of Chemical Physics, Volume 128, Issue 20, December 2007, Page 205101
 
* (Baeurle 2006): S.A. Baeurle, T. Usami and A.A. Gusev, Polymer 47 (2006) 8604 [http://dx.doi.org/10.1016/j.polymer.2006.10.017].
{{Use dmy dates|date=September 2010}}
 
* (Serebrinsky 2011): S.A. Serebrinsky, Physical time scale in kinetic Monte Carlo simulations of continuous-time Markov chains, Physical Review E, Volume 83, Issue 3, March 2011, Paper no. 037701 [http://pre.aps.org/abstract/PRE/v83/i3/e037701 [4<nowiki>]</nowiki>]
 
[[Category:Monte Carlo methods]]
[[Category:Statistical mechanics]]
[[Category:Stochastic simulation]]

Latest revision as of 20:26, 1 January 2015

Alyson Meagher is the title her parents gave her but she doesn't like when people use her complete title. Office supervising is my occupation. To climb is something she would by no means give up. Kentucky is exactly where I've always been residing.

Look at my homepage tarot card readings (talking to)