Chapter II: Diffusion and Growth Processes

Size: px
Start display at page:

Download "Chapter II: Diffusion and Growth Processes"

Transcription

1 Chapter II: Diffusion and Growth Processes Modelling and Simulation, M.Biehl, Diffusion Limited Aggregation See also the more detailed description in the additional hand-out, and in: W. Kinzel and G. Reents, Physics by Computer (Springer, 1998). Further information and related Mathematica and C programs as well as Java applets are available at (square lattice DLA cluster of mass M = 10000)

2 Diffusion Limited Aggregation motivation (I): diffusion limited growth the basic algorithm (Witten-Sander) implementation and improvements fractal properties of DLA clusters self-similarity and fractal dimension variations and universality Electrostatic analogon Dielectric Breakdown Model (DBM) motivation (II): examples from a broader context

3 Diffusion Limited Aggregation (DLA) Growth of a snowflake (very much simplifying) immediate vicinity of the flake contains almost no water molecules molecules have to cross the water poor region by means of Brownian motion attachment to the growing flake is essentially irreversible Witten and Sander (1981): diffusion of single particles (low density limit) approaching the growing cluster from infinity diffusing particles stick to the cluster and becomes immobile by irreversible sticking DLA... is defined as a very simple process (algorithm) is studied almost exclusively by computer simulations displays the emergence of very complex behavior from simple rules is topic of on-going research

4 Basic algorithm: DLA on a square lattice 1. Initialize start with an immobile seed particle in the center of an otherwise empty square lattice (cluster mass M = 1, cluster radius R max = 1) 2. Launch a new particle place a single particle with equal probability on a circle with radius R start > R max about the center (as small as possible, e.g. R start = R max + 1) 3. Diffusion move the particle from its current position to a randomly chosen nearest neighbor (NN) site. Repeat 3 until a NN site of a cluster particle is reached, then go to step 4 4. Aggregation add the particle to the cluster, increase M by one and re-evaluate R max. stop if the desired mass M is reached, else go to step 2. Remark: positions on a circle have to be approximated in the square lattice

5 problems: particles can drift arbitrarily far away form the cluster particles hop around in empty regions of the lattice most of the time replace step 3 by the modified procedure 3. Diffusion (shortcuts) calculate the current distance r of the particle from the origin. If r < R jump : If R kill >r R jump : move the particle from its current position to a randomly chosen nearest neighbor site. move the particle with equal probability anywhere on a circle with radius (r R start ) around its current position. If r R kill : remove the particle from the lattice, go to step 2. repeat 3 until a nearest neighbor of a cluster site is reached, then go to 4.

6 Remarks: R jump R start should be large enough (e.g. > 10) to justify the assumption of a spherically symmetric jump Deleted particles would return to R kill or R start, eventually, the correct prob. for reaching a certain site should be used for the re-launch the simple, uncorrelated re-launch is justified for R kill (here R kill 10 R start ) Fig. 1: Illustration of the implementation of the Witten Sander algorithm. Particles start at R start, within R jump explicit diffusion hops are performed. Outside of this region shortcut jumps are implemented. Particles which reach R kill are simply removed from the lattice, dlanim(m) generates an animation.

7 DLA algorithm function cluster = dla(maxmass) % dla(m); generates a DLA cluster of mass M, % cls = dla(m) outputs the cluster, try small M first % lattice size and center site position latt = 601; cr = floor(latt/2); % use greylevel col1 for 3/4 of the cluster, then col2 col1 = -0.5; col2 = -1; rm=1; m=1; coor=zeros(latt,latt); coor(cr,cr) =col1; for ipart = 1: maxmass-1 check=0; rstart= max(rm+2,4); rkill=10*rm+10; rjump= rstart + 10; % launch particle at radius rstart pos= circle(rstart,cr,cr); ix= pos(1); iy= pos(2); check= coor(ix-1,iy)+coor(ix+1,iy)+... coor(ix,iy-1)+coor(ix,iy+1); while check == 0 % check becomes nonzero at aggregation sites ract2 =(ix-cr)*(ix-cr)+(iy-cr)*(iy-cr); % if actual radius larger rkill, re-launch particle if ract2 > rkill*rkill pos=circle(rstart,cr,cr); ix=pos(1); iy=pos(2); ract2 = rstart*rstart; end if ract2 <= rjump*rjump % explicit hop zz = floor(4*rand(1,1)); switch(zz) case 0, ix = ix+1; case 1, ix = ix-1; case 2, iy = iy+1; case 3, iy = iy-1; end else % giant jump pos = circle(sqrt(ract2)-rstart, ix,iy); ix = pos(1); iy = pos(2); end % set check<0 if a NN site of cluster is reached if (ract2 <= rstart*rstart) check= coor(ix-1,iy)+coor(ix+1,iy)+... coor(ix,iy-1)+coor(ix,iy+1); end end % end of while(check==0) % aggregate the new particle, determine mass,rm m = m+1; coor(ix,iy) = col1; if (m > floor(0.75*maxmass)) coor(ix,iy) = col2; end rm = max(rm,sqrt((ix-cr)*(ix-cr)+(iy-cr)*(iy-cr))); end % display the cluster, output mass, radius and fract. dim. cluster = coor; imshow(coor,[-1 0], notruesize ); axis([ cr-rm-3 cr+rm+3 cr-rm-3 cr+rm+3]); title([ M=,num2str(m, %3.0f ), R=,num2str(rm, %2.2f ),... D=,num2str(log(m)/log(rm), %2.2f )],... fontsize,16); function pos = circle(r,cx,cy) % function circle(rstart) returns the coordinates % (nearest lattice site) of a random position % on a circle of radius r about (cx,cy) phi = 2*pi*rand(1,1); x = cx + round(r*sin(phi)); y = cy + round(r*cos(phi)); pos = [x y];

8 Fig. 2: Growth of a square lattice DLA cluster (sizes rescaled), in each plot the 25% particles which aggregated most recently are displayed darker

9 Properties of DLA clusters branching and screening the random growth process leads to the formation of small tips tips are likely to capture diffusing particles they screen their surroundings screening self-stabilizes the tip it grows even larger..., new tips form... delicate, branched, tree like object scale invariance, lack of a typical length-scale one observes with growing M : hierarchy of arms, branches, twigs, sprouts,... fjord like empty regions of all sizes characteristic sizes cannot be defined! (apart from lattice constant and R max )

10 stochastic self similarity Fig. 4: An M = cluster and three of its branches (rescaled). Substructures of the cluster look pretty much alike, i.e. statistical properties are reproduced after proper rescaling. Fig. 5: The so called Sierpinsky gasket Note: in deterministic self-similar fractals, structures repeat exactly on all possible length scales.

11 Fractal dimension Fig. 6: Scaling behavior of areas and lines. The mass (volume, area) of a regular D dim. object grows by a factor b D, when its linear extension R is scaled to b R. Areas grow like A R 2, lengths grow like l R 1. generalization: assume the mass of an object grows according to M = a R D M D M is called the fractal dimension (with respect to the mass) estimate for a given object: ln M ln R D M ( + ln a ) ln R (the correction term becomes irrelevant with R ) NOTE: THE ABOVE IS NOT A PROPER MATHEMATICAL DEFINITION! (see literature, additional hand-out and assignment 2 for details)

12 Fig. 7: Six clusters with M = 1000 or 5000, the simple estimate D = ln M/ln R of the fractal dimension D M 1.75 is obtained using R = R max.

13 more systematic determination of D M : Fig. 8: Typical cluster radius R = R max as a function of M. Dots represent the result of averaging log 2 R max over 100 clusters for each of the six values of M between 125 and Error bars would be smaller than the symbols, the solid line corresponds to a least square linear fit. Here: R max 0.98 M 0.575, i.e. D M 1/ further improvement: use the mean square radius R ms = 1 M (R ms should fluctuate less then the extreme R max ) determine R max or R ms with respect to the center of mass of the cluster (compensates for random, overall offsets) radial mass density, see assignment 2 boxcounting dimension, see assignment 2 M i ri 2 1/2

14 Possible modifications (see the additional hand-out for more examples) Delayed aggregation A particle that reaches an aggregation site is only considered immobile if the next RW step would be onto the cluster ( diff. boundary conditions in DBM-models) Next Nearest Neighbor (NNN) sticking Consider also NNN-sites of the cluster (diagonal neighbors) as aggregation sites Different lattices Use other regular lattice structures for diffusion and aggregation. The coordination number s denotes the # of NN each site has in the lattice. For example, s = 4 in the square and s = 6 in the triangular lattice Off lattice DLA Diffusion takes place in a continuous coordinate space (x, y). The elementary step is a random displacement by on one particle diameter. Whenever a particle touches the aggregate it is moved backward until particles do not overlap anymore Fig. 9: Off-lattice cluster with 10 7 particles source: book97/chapter2.html

15 Universality (?) Shape and other properties of DLA clusters vary with the model modifications But: up to cluster masses on the order of one finds always the same D M assumption: a universality class of two dimensional DLA exists which is characterized by the fractal dimension D M 1.71 THE SMALL PRINT: the study of larger clusters revealed some problems for instance, square lattice DLA seems to play a special role: lattice anisotropy: large clusters grow mainly along the lattice axes the fractal dimension measured in very large square lattice clusters is close to D M = 3/2 with very slowly vanishing corrections (Meakin, 1988): R max a M 2/3 (1 + b M 0.12) There are probably at least two universality classes one for small coordination number s, including s = 4 one for larger s and off lattice DLA (with D M 1.71) More subtleties concern the fractal properties and self similarity of DLA clusters...

16 Growth site probabilities diffusing particles are very unlikely to wander into one of the inner fords with high probability they attach to the protruding tips already visible from the marking of most recent particles growth occurs essentially only in a small active zone with r R max measurement of the growth site probabilities for a given cluster: Method of test particles Launch non-interacting particles, let them diffuse to the aggregation sites i, only register their frequency p i without actual growth (remove the particles) Problem: even for very many particles, most sites i will register no particles (p i 0) Electrostatic analogon Denote the probability to find a Random Walker at time t at site (x, y) of an otherwise empty lattice by p t (x, y). According to Sec. 2.1, its temporal evolution follows p t+ t (x, y) = 1 4 ( with the lattice constant a. ) p t (x + a, y) + p t (x a, y) + p t (x, y a) + p t (x, y + a) Determine the stationary p(x, y) = p t (x, y) by means of a simple iteration (Relaxation Method) under appropriate boundary conditions

17 Fig. 10: Boundary conditions: a) on all sites occupied by the cluster p t (x, y) = 0, the cluster acts as a trap for the RW b) very far from the cluster (in the origin), p t (x, y) must be spherically symmetric, i.e. it depends only on (x 2 + y 2 ) realization: set p t (x, y) = const. for (x 2 + y 2 ) R out (the const. is irrelevant normalization of p t (x, y)) Mathematical structure: discretized Laplace equation 2 p(x, y) = 0, using p t (x, y) p t+ t(x, y) p t (x, y) t t 2 p x p y 2 1 ( ) a 2 p(x + a, y) + p(x a, y) + p(x, y a) + p(x, y + a) 4 p(x, y) apart from normalization, p(x, y) can be interpreted as the, e.g., electrostatic potential between two electrodes: the cluster at zero potential a circular electrode with radius R out at constant non-zero potential The growth site probability p i is proportional to p(x, y) at the NN sites of the cluster

18 Aggregation probability function ag = aggprob(m) % function ag = aggprob(m) % calls dla(m) and evaluates for the cluster the % stationary p(x,y) and normalized aggr. probability coor= sign(dla(m)); l= max(size(coor)); cr= floor(l/2); rad2 =0; % determine rad for ii=1:l, for jj=1:l rad2 = max(rad2,-coor(ii,jj)*... ((ii-cr)*(ii-cr)+(jj-cr)*(jj-cr))); end; end; rad= round(sqrt(rad2))+4; clus= -coor(cr-rad : cr+rad, cr-rad : cr+rad); p= -clus + 1; l= max(size(p)); cr = rad+1; itmax = 1000; jj=0; dev= 1; while( jj < itmax & dev > 1.e-8 ) jj = jj+1; palt = p; pwest = [p(l,:); p(1:l-1,:)]; peast = [p(2:l,:); p(1,:)]; pnorth= [p(:,l), p(:,1:l-1)]; psouth= [p(:,2:l), p(:,1)]; p = (pwest + peast + pnorth + psouth) / 4; for kx =2:l-1, for ky =2:l-1 if ((kx-cr)*(kx-cr)+(ky-cr)*(ky-cr) >= rad*rad) p(kx,ky)= 1; end if (clus(kx,ky) ~= 0), p(kx,ky)= 0; end end; end for kx=1:l p(kx,1)= 1; p(kx,l)= 1; p(1,kx)= 1; p(l,kx)= 1; end dev= sum(sum((p-palt).*(p-palt))); end % end while(...) % display the "electrostatic potential" imshow(-p-clus,[-1,0], notruesize ); axis([1 l 1 l]); % evaluate and display normalized aggregation % probability at NN sites of the cluster norm = 0; for kx =2:l-1, for ky =2:l-1 if ((clus(kx+1,ky)+clus(kx-1,ky)+... clus(kx,ky-1) +clus(kx,ky+1)) ==0) p(kx,ky) = 0; end norm = norm + p(kx,ky); end; end for kx =2:l-1, for ky =2:l-1 if ((clus(kx+1,ky)+clus(kx-1,ky)+... clus(kx,ky-1)+clus(kx,ky+1)) ==0) p(kx,ky) = p(kx,ky)/norm; end end; end figure; pagg = - p(2:l-1,2:l-1); imshow(pagg,[min(min(pagg)) 0], notruesize ); axis([1 l 1 l]);

19 Examples Fig. 11: Top row: full stationary p(x, y) for clusters of mass M = 100, 500, and 1000 Bottom: corresponding normalized growth site probability at NN sites of the cluster Note: the growth site prob. distribution is a highly non-trivial multi fractal

20 Fig. 12: stationary p(x, y) and growth site probabilities p i for a cluster of M = Lowest/highest probabilities correspond to white/black lattice sites. Left, the cluster is displayed in black for clarity

21 Dielectric Breakdown Model (DBM) stochastic model of a gaseous discharge pattern (lightning) assume the probability q(x, y) for growth of the ionization channel (zero pot. cluster) at (x, y) increases with the local field or potential p(x, y): q(x, y) [p(x, y)] η DBM growth algorithm 1. given the current cluster, evaluate p(x, y) and q(x, y) by means of the relaxation method under appropriate boundary conditions 2. choose one of the aggregation sites with prob. q(x, y) and occupy site (x, y) update boundary conditions and go to 1 The role of parameter η η = 0 : growth with equal probability at all NN sites of the cluster η = 1 : (a version of the so-called Eden model) q(x, y) = p(x, y) is identical with the DLA growth site probability (apart from subtle difference in the boundary conditions) η : growth occurs only at the sites of maximal p(x, y), i.e. at the tips of the cluster one-dimensional growth Note: the fractal dimension of DBM-clusters depends on η

22 Examples from a broader context many physical, chemical, biological growth or branching processes are more or less accurately described by a Laplace equation with moving boundary conditions among others: solidification in a melt or vapor (snow flakes) viscous fingering, mixing of different fluids aggregation of monolayer islands on a crystal surface electrochemical deposition crack propagation in a solid growth of bacteria colonies Shape and (fractal) properties of the clusters may depend on the degree of randomness in the progress for instance: expect more regular, compact clusters for, e.g., DLA growth with additional diffusion of particles along the cluster edge parallel occupation of all growth sites according to q(x, y) or p(x, y) in the DBM/DLA

23 example: aggregation of Pt atoms on a Pt(111) surface (hexagonal lattice) Fig. 13: Pt island formation at temperatures T = 300K (left) and T = 400K (right) c/o T. Michely, Univ. Aachen/Germany At low temperatures, islands resemble DLA clusters, at higher T diffusion along edges smoothens the shape Fig. 14: Various growth or branching processes, from left to right: electrochemical deposition, mineralization pattern, Triacontane on SiO x,bacteria, termite colonies source: and ( )

24 Selected Literature P. Meakin, The Growth of Fractal Aggregates in: C.Domb and J.L.Lebowitz (eds.), Phase Transitions and Critical Phenomena Volume 12, Academic Press (London) 1988 L.M. Sander, Growth and aggregation far from equilibrium in: C. Godrèche (ed.), Solids far from equilibrium Cambridge University Press (Cambridge) 1991 T. Vicsek, Fractal Growth Phenomena World Scientific (Singapore) 1992 A.-L. Barabási and H.E. Stanley, Fractal Concepts in Surface Growth Cambridge University Press (Cambridge) 1995 A. Bunde and S. Havlin (eds), Fractals and Disordered Systems Springer (Berlin) 2nd ed. 1996

1.1.6 Island Shapes (see Michely / Krug book, Chapter 3)

1.1.6 Island Shapes (see Michely / Krug book, Chapter 3) 1 1.1.6 Island Shapes (see Michely / Krug book, Chapter 3) The last section was concerned with nucleation, which determines the number density of islands. This section is concerned with their shape. The

More information

Lattice gas models. - Lattice gas - Diffusion Limited Aggregates

Lattice gas models. - Lattice gas - Diffusion Limited Aggregates Lattice gas models - Lattice gas - Diffusion Limited Aggregates M. Peressi - UniTS - Laurea Magistrale in Physics Laboratory of Computational Physics - Unit X Random Walks Dependence of R 2 (t) on t :

More information

Diffusion Limited Aggregation with modified local rules

Diffusion Limited Aggregation with modified local rules Diffusion Limited Aggregation with modified local rules Bogdan Ranguelov 1, Desislava Goranova 1, Vesselin Tonchev 1, Rositsa Yakimova 2 1 Institute of Physical Chemistry Bulgarian Academy of Sciences

More information

Diffusion-limited aggregation: A relationship between surface thermodynamics and crystal morphology

Diffusion-limited aggregation: A relationship between surface thermodynamics and crystal morphology PHYSICAL REVIEW E VOLUME 61, NUMBER 2 FEBRUARY 2000 Diffusion-limited aggregation: A relationship between surface thermodynamics and crystal morphology Vladislav A. Bogoyavlenskiy* and Natasha A. Chernova

More information

The Vold-Sutherland and Eden Models of Cluster Formation 1

The Vold-Sutherland and Eden Models of Cluster Formation 1 The Vold-Sutherland and Eden Models of Cluster Formation 1 PAUL MEAKIN Central Research and Development Department, E. L du Pont de Nemours and Company, Experimental Station, Wilmington, Delaware 19898

More information

Monte Carlo simulation of thin-film growth on a surface with a triangular lattice

Monte Carlo simulation of thin-film growth on a surface with a triangular lattice Vacuum 52 (1999) 435 440 Monte Carlo simulation of thin-film growth on a surface with a triangular lattice Wei Helin*, Liu Zuli, Yao Kailun Department of Physics, Huazhong University of Science and Technology,

More information

Disordered Structures. Part 2

Disordered Structures. Part 2 Disordered Structures Part 2 Composites and mixtures Consider inhomogeneities on length scales > 10-20 Å Phase separation two (or multi-) phase mixtures Mixtures of particles of different kinds - solids,

More information

A New Model for Biological Pattern Formation. 1. Introduction

A New Model for Biological Pattern Formation. 1. Introduction Z theor BioL (1986) 118, 101-113 A New Model for Biological Pattern Formation PAUL MEAKIN Central Research and Development Department, E. L du Pont de Nemours and Company, Wilmington, DE 19898, U.S.A.

More information

Segregation of two seed growth patterns with fractal geometry. Department of Physics, University of Pune, Pune , India

Segregation of two seed growth patterns with fractal geometry. Department of Physics, University of Pune, Pune , India Segregation of two seed growth patterns with fractal geometry Deepak N. Bankar 1, P. M. Gade 2, A.V. Limaye 1 and A. G. Banpurkar 1* 1 Center for Advanced Studies in Materials Science and Solid State Physics,

More information

Fractals in Science. Armin Bunde Shlomo Havlin (Eds.) Springer-Verlag Berlin Heidelberg New York London Paris Tokyo HongKong Barcelona Budapest

Fractals in Science. Armin Bunde Shlomo Havlin (Eds.) Springer-Verlag Berlin Heidelberg New York London Paris Tokyo HongKong Barcelona Budapest Armin Bunde Shlomo Havlin (Eds.) Fractals in Science With a MS-DOS Program Diskette, 120 Figures and 10 Color Plates Springer-Verlag Berlin Heidelberg New York London Paris Tokyo HongKong Barcelona Budapest

More information

Renormalization Group for the Two-Dimensional Ising Model

Renormalization Group for the Two-Dimensional Ising Model Chapter 8 Renormalization Group for the Two-Dimensional Ising Model The two-dimensional (2D) Ising model is arguably the most important in statistical physics. This special status is due to Lars Onsager

More information

FRACTAL CONCEPT S IN SURFACE GROWT H

FRACTAL CONCEPT S IN SURFACE GROWT H FRACTAL CONCEPT S IN SURFACE GROWT H Albert-Läszlö Barabäs i H. Eugene Stanley Preface Notation guide x v xi x PART 1 Introduction 1 1 Interfaces in nature 1 1.1 Interface motion in disordered media 3

More information

Complex Systems. Shlomo Havlin. Content:

Complex Systems. Shlomo Havlin. Content: Complex Systems Content: Shlomo Havlin 1. Fractals: Fractals in Nature, mathematical fractals, selfsimilarity, scaling laws, relation to chaos, multifractals. 2. Percolation: phase transition, critical

More information

Universality class of triad dynamics on a triangular lattice

Universality class of triad dynamics on a triangular lattice Universality class of triad dynamics on a triangular lattice Filippo Radicchi,* Daniele Vilone, and Hildegard Meyer-Ortmanns School of Engineering and Science, International University Bremen, P. O. Box

More information

Diffusion and Reactions in Fractals and Disordered Systems

Diffusion and Reactions in Fractals and Disordered Systems Diffusion and Reactions in Fractals and Disordered Systems Daniel ben-avraham Clarkson University and Shlomo Havlin Bar-llan University CAMBRIDGE UNIVERSITY PRESS Preface Part one: Basic concepts page

More information

Interface Roughening in a Hydrodynamic Lattice- Gas Model with Surfactant

Interface Roughening in a Hydrodynamic Lattice- Gas Model with Surfactant Wesleyan University WesScholar Division III Faculty Publications Natural Sciences and Mathematics 1996 Interface Roughening in a Hydrodynamic Lattice- Gas Model with Surfactant Francis Starr Wesleyan University

More information

Simulation of Prebreakdown Phenomena in Air Gaps of Rod Plane Configuration of Electrodes

Simulation of Prebreakdown Phenomena in Air Gaps of Rod Plane Configuration of Electrodes Simulation of Prebreakdown Phenomena in Air s of Rod Plane Configuration of Electrodes V. P. CHARALAMBAKOS, C. P. STAMATELATOS, D. P. AGORIS, E. C. PYRGIOTI Department of Electrical and Computer Engineering

More information

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 13 Apr 1999

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 13 Apr 1999 Optimal Path in Two and Three Dimensions Nehemia Schwartz, Alexander L. Nazaryev, and Shlomo Havlin Minerva Center and Department of Physics, Jack and Pearl Resnick Institute of Advanced Technology Bldg.,

More information

LECTURE 11: Monte Carlo Methods III

LECTURE 11: Monte Carlo Methods III 1 LECTURE 11: Monte Carlo Methods III December 3, 2012 In this last chapter, we discuss non-equilibrium Monte Carlo methods. We concentrate on lattice systems and discuss ways of simulating phenomena such

More information

The universality class of diffusion-limited aggregation and viscous fingering

The universality class of diffusion-limited aggregation and viscous fingering EUROPHYSICS LETTERS 15 October 2006 Europhys. Lett., 76 (2), pp. 257 263 (2006) DOI: 10.1209/epl/i2006-10246-x The universality class of diffusion-limited aggregation and viscous fingering J. Mathiesen

More information

Complexity, Parallel Computation and Statistical Physics

Complexity, Parallel Computation and Statistical Physics Complexity, Parallel Computation and Statistical Physics Jon Machta! Measures of Complexity workshop Santa Fe Institute January 13, 2011 Outline Overview and motivation: What aspect of natural complexity

More information

The basic concept. Back to Table of Contents. November Features: From Quantum Cheating to Quantum Security. Thomas C. Halsey

The basic concept. Back to Table of Contents. November Features: From Quantum Cheating to Quantum Security. Thomas C. Halsey 1 of 10 19/11/2008 15:19 Back to Table of Contents November Features: From Quantum Cheating to Quantum Security Technologies to Reduce Carbon Dioxide Emissions Diffusion-Limited Aggregation: A Model for

More information

In#uence of microstructure of substrate surface on early stage of thin "lm growth

In#uence of microstructure of substrate surface on early stage of thin lm growth Vacuum 56 (2000) 185}190 In#uence of microstructure of substrate surface on early stage of thin "lm growth Helin Wei*, Zuli Liu, Kailun Yao Department of Physics, Huazhong University of Science and Technology.

More information

Determination of a correlation between applied voltage and fractal dimension of an electrodeposited aggregate formed by DLA-based clustering

Determination of a correlation between applied voltage and fractal dimension of an electrodeposited aggregate formed by DLA-based clustering Determination of a correlation between applied voltage and fractal dimension of an electrodeposited aggregate formed by DLA-based clustering John Enns Science One Program University of British Columia

More information

1. Introductory Examples

1. Introductory Examples 1. Introductory Examples We introduce the concept of the deterministic and stochastic simulation methods. Two problems are provided to explain the methods: the percolation problem, providing an example

More information

Chapter 5. Effects of Photonic Crystal Band Gap on Rotation and Deformation of Hollow Te Rods in Triangular Lattice

Chapter 5. Effects of Photonic Crystal Band Gap on Rotation and Deformation of Hollow Te Rods in Triangular Lattice Chapter 5 Effects of Photonic Crystal Band Gap on Rotation and Deformation of Hollow Te Rods in Triangular Lattice In chapter 3 and 4, we have demonstrated that the deformed rods, rotational rods and perturbation

More information

A Moving Boundary Model Motivated by Electric Breakdown Chiu-Yen Kao

A Moving Boundary Model Motivated by Electric Breakdown Chiu-Yen Kao A Moving Boundary Model Motivated by Electric Breakdown Chiu-Yen Kao Department of Mathematics, The Ohio State University; Department of Mathematics and Computer Science, Claremont McKenna College Workshop

More information

Chapter 4. RWs on Fractals and Networks.

Chapter 4. RWs on Fractals and Networks. Chapter 4. RWs on Fractals and Networks. 1. RWs on Deterministic Fractals. 2. Linear Excitation on Disordered lattice; Fracton; Spectral dimension 3. RWs on disordered lattice 4. Random Resistor Network

More information

VII. Porous Media Lecture 32: Percolation

VII. Porous Media Lecture 32: Percolation VII. Porous Media Lecture 32: Percolation April 25 th, 2011 Notes by John Casey (and MZB) References: S. Torquato, Random Heterogeneous Materials (Springer 2002) D. Stauffer, Introduction to Percolation

More information

arxiv: v1 [nlin.ps] 9 May 2015

arxiv: v1 [nlin.ps] 9 May 2015 Scaling properties of generalized two-dimensional Kuramoto-Sivashinsky equations V. Juknevičius Institute of Theoretical Physics and Astronomy, Vilnius University, A. Goštauto 2, LT-008 Vilnius, Lithuania

More information

QLE. Jason Miller and Scott Sheffield. August 1, 2013 MIT. Jason Miller and Scott Sheffield (MIT) QLE August 1, / 37

QLE. Jason Miller and Scott Sheffield. August 1, 2013 MIT. Jason Miller and Scott Sheffield (MIT) QLE August 1, / 37 QLE Jason Miller and Scott Sheffield MIT August 1, 2013 Jason Miller and Scott Sheffield (MIT) QLE August 1, 2013 1 / 37 Surfaces, curves, metric balls: how are they related? FPP: first passage percolation.

More information

Motivation. Evolution has rediscovered several times multicellularity as a way to build complex living systems

Motivation. Evolution has rediscovered several times multicellularity as a way to build complex living systems Cellular Systems 1 Motivation Evolution has rediscovered several times multicellularity as a way to build complex living systems Multicellular systems are composed by many copies of a unique fundamental

More information

Diffusion-Limited Aggregation with Polygon Particles

Diffusion-Limited Aggregation with Polygon Particles Commun. Theor. Phys. 58 (2012) 895 901 Vol. 58, No. 6, December 15, 2012 Diffusion-Limited Aggregation with Polygon Particles DENG Li ( Ö), WANG Yan-Ting ( ), and OU-YANG Zhong-Can ( ) State Key Laboratory

More information

Computer Modeling of Binary Dipolar Monolayers

Computer Modeling of Binary Dipolar Monolayers Proceedings of the 8 th International Conference on Applied Informatics Eger, Hungary, January 27 30, 2010. Vol. 1. pp. 329 336. Computer Modeling of Binary Dipolar Monolayers Imre Varga a, Ferenc Kun

More information

Thermodynamically reversible generalization of diffusion limited aggregation

Thermodynamically reversible generalization of diffusion limited aggregation PHYSICAL REVIEW E VOLUME 60, NUMBER 1 JULY 1999 Thermodynamically reversible generalization of diffusion limited aggregation Raissa M. D Souza Department of Physics, Massachusetts Institute of Technology,

More information

The dynamics of small particles whose size is roughly 1 µmt or. smaller, in a fluid at room temperature, is extremely erratic, and is

The dynamics of small particles whose size is roughly 1 µmt or. smaller, in a fluid at room temperature, is extremely erratic, and is 1 I. BROWNIAN MOTION The dynamics of small particles whose size is roughly 1 µmt or smaller, in a fluid at room temperature, is extremely erratic, and is called Brownian motion. The velocity of such particles

More information

Laplacian Growth and Diffusion Limited Aggregation: Different Universality Classes

Laplacian Growth and Diffusion Limited Aggregation: Different Universality Classes University of Massachusetts Amherst From the SelectedWorks of Benny Davidovitch 2001 Laplacian Growth and Diffusion Limited Aggregation: Different Universality Classes Felipe Barra Benny Davidovitch, University

More information

arxiv: v1 [cond-mat.stat-mech] 6 Mar 2008

arxiv: v1 [cond-mat.stat-mech] 6 Mar 2008 CD2dBS-v2 Convergence dynamics of 2-dimensional isotropic and anisotropic Bak-Sneppen models Burhan Bakar and Ugur Tirnakli Department of Physics, Faculty of Science, Ege University, 35100 Izmir, Turkey

More information

DIFFUSION-LIMITED AGGREGATION: A MODEL FOR PATTERN FORMATION

DIFFUSION-LIMITED AGGREGATION: A MODEL FOR PATTERN FORMATION DIFFUSION-LIMITED AGGREGATION: A MODEL FOR PATTERN FORMATION Nature confronts us at every turn with patterns whether the stately spiral shapes of galaxies and hurricanes or the beautiful symmetries of

More information

Scaling limits of planar random growth models

Scaling limits of planar random growth models Amanda Turner Department of Mathematics and Statistics Lancaster University (Joint work with James Norris, and with Alan Sola and Fredrik Johansson Viklund) Conformal mapping and planar random growth Motivation

More information

Physics and phase transitions in parallel computational complexity

Physics and phase transitions in parallel computational complexity Physics and phase transitions in parallel computational complexity Jon Machta University of Massachusetts Amherst and Santa e Institute Physics of Algorithms August 31, 2009 Collaborators Ray Greenlaw,

More information

arxiv:nlin/ v1 [nlin.ps] 4 Sep 2004

arxiv:nlin/ v1 [nlin.ps] 4 Sep 2004 arxiv:nlin/0409008v1 [nlin.ps] 4 Sep 2004 Classification of KPZQ and BDP models by multiaffine analysis Hiroaki Katsuragi and Haruo Honjo Department of Applied Science for Electronics and Materials, Interdisciplinary

More information

Limiting shapes of Ising droplets, fingers, and corners

Limiting shapes of Ising droplets, fingers, and corners Limiting shapes of Ising droplets, fingers, and corners Pavel Krapivsky Boston University Plan and Motivation Evolving limiting shapes in the context of Ising model endowed with T=0 spin-flip dynamics.

More information

arxiv:math/ v1 [math.pr] 21 Dec 2001

arxiv:math/ v1 [math.pr] 21 Dec 2001 Monte Carlo Tests of SLE Predictions for the 2D Self-Avoiding Walk arxiv:math/0112246v1 [math.pr] 21 Dec 2001 Tom Kennedy Departments of Mathematics and Physics University of Arizona, Tucson, AZ, 85721

More information

"Enhanced Layer Coverage of Thin Films by Oblique Angle Deposition"

Enhanced Layer Coverage of Thin Films by Oblique Angle Deposition Mater. Res. Soc. Symp. Proc. Vol. 859E 2005 Materials Research Society JJ9.5.1 "Enhanced Layer Coverage of Thin Films by Oblique Angle Deposition" * karabt@rpi.edu Tansel Karabacak *, Gwo-Ching Wang, and

More information

J07M.1 - Ball on a Turntable

J07M.1 - Ball on a Turntable Part I - Mechanics J07M.1 - Ball on a Turntable J07M.1 - Ball on a Turntable ẑ Ω A spherically symmetric ball of mass m, moment of inertia I about any axis through its center, and radius a, rolls without

More information

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 29 Nov 2006

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 29 Nov 2006 NOVEL TYPE OF PHASE TRANSITION IN A SYSTEM arxiv:cond-mat/0611743v1 [cond-mat.stat-mech] 9 Nov 006 OF SELF-DRIVEN PARTICLES Tamás Vicsek, a,b András Czirók, a Eshel Ben-Jacob, c Inon Cohen, c and Ofer

More information

Universal scaling behavior of directed percolation and the pair contact process in an external field

Universal scaling behavior of directed percolation and the pair contact process in an external field Journal of Physics A 35, 005, (00) Universal scaling behavior of directed percolation and the pair contact process in an external field S. Lübeck, and R. D. Willmann,3 Weizmann Institute, Department of

More information

Monte Carlo simulation of submonolayer vapor-deposition polymerization

Monte Carlo simulation of submonolayer vapor-deposition polymerization PHYSICAL REVIEW E VOLUME 60, NUMBER 4 OCTOBER 1999 Monte Carlo simulation of submonolayer vapor-deposition polymerization Y.-P. Zhao, 1 A. R. Hopper, 2 G.-C. Wang, 1 and T.-M. Lu 1 1 Department of Physics,

More information

EE650R: Reliability Physics of Nanoelectronic Devices Lecture 18: A Broad Introduction to Dielectric Breakdown Date:

EE650R: Reliability Physics of Nanoelectronic Devices Lecture 18: A Broad Introduction to Dielectric Breakdown Date: EE650R: Reliability Physics of Nanoelectronic Devices Lecture 18: A Broad Introduction to Dielectric Breakdown Date: Nov 1, 2006 ClassNotes: Jing Li Review: Sayeef Salahuddin 18.1 Review As discussed before,

More information

Coarsening process in the 2d voter model

Coarsening process in the 2d voter model Alessandro Tartaglia (LPTHE) Coarsening in the 2d voter model May 8, 2015 1 / 34 Coarsening process in the 2d voter model Alessandro Tartaglia LPTHE, Université Pierre et Marie Curie alessandro.tartaglia91@gmail.com

More information

Any live cell with less than 2 live neighbours dies. Any live cell with 2 or 3 live neighbours lives on to the next step.

Any live cell with less than 2 live neighbours dies. Any live cell with 2 or 3 live neighbours lives on to the next step. 2. Cellular automata, and the SIRS model In this Section we consider an important set of models used in computer simulations, which are called cellular automata (these are very similar to the so-called

More information

Deterministic chaos and diffusion in maps and billiards

Deterministic chaos and diffusion in maps and billiards Deterministic chaos and diffusion in maps and billiards Rainer Klages Queen Mary University of London, School of Mathematical Sciences Mathematics for the Fluid Earth Newton Institute, Cambridge, 14 November

More information

Center for Theoretical Physics, Department of Applied Physics, Twente University, P.O. Box 217, 7500 AE Enschede, The Netherlands

Center for Theoretical Physics, Department of Applied Physics, Twente University, P.O. Box 217, 7500 AE Enschede, The Netherlands Physica A 193 (1993) 413-420 North-Holland Distribution of ions around a charged sphere P. Strating and F.W. Wiegel Center for Theoretical Physics, Department of Applied Physics, Twente University, P.O.

More information

Quasi-Stationary Simulation: the Subcritical Contact Process

Quasi-Stationary Simulation: the Subcritical Contact Process Brazilian Journal of Physics, vol. 36, no. 3A, September, 6 685 Quasi-Stationary Simulation: the Subcritical Contact Process Marcelo Martins de Oliveira and Ronald Dickman Departamento de Física, ICEx,

More information

First Menu of Projects (for Project II)

First Menu of Projects (for Project II) First Menu of Projects (for Project II) A region with four walls. So far, our mechanics example has had very little interesting physics in it. Now we ask you to turn to some more interesting examples.

More information

4.1) General Considerations and Classification of Growth Modes

4.1) General Considerations and Classification of Growth Modes 1 4) Growth Sources: T. Michely and J. Krug, Islands, Mounds, and Atoms: Patterns and Processes in Crystal Growth Far from Equilibrium (Springer 2004) A. Pimpinelli and J. Villain, Physics of Crystal Growth

More information

KINETIC THEORIES FOR STOCHASTIC MODELS OF LIQUIDS WITH HIGHLY COOPERATIVE DYNAMICS

KINETIC THEORIES FOR STOCHASTIC MODELS OF LIQUIDS WITH HIGHLY COOPERATIVE DYNAMICS KINETIC THEORIES FOR STOCHASTIC MODELS OF LIQUIDS WITH HIGHLY COOPERATIVE DYNAMICS A DISSERTATION SUBMITTED TO THE DEPARTMENT OF CHEMICAL ENGINEERING AND THE COMMITTEE ON GRADUATE STUDIES OF STANFORD UNIVERSITY

More information

For slowly varying probabilities, the continuum form of these equations is. = (r + d)p T (x) (u + l)p D (x) ar x p T(x, t) + a2 r

For slowly varying probabilities, the continuum form of these equations is. = (r + d)p T (x) (u + l)p D (x) ar x p T(x, t) + a2 r 3.2 Molecular Motors A variety of cellular processes requiring mechanical work, such as movement, transport and packaging material, are performed with the aid of protein motors. These molecules consume

More information

Clusters and Percolation

Clusters and Percolation Chapter 6 Clusters and Percolation c 2012 by W. Klein, Harvey Gould, and Jan Tobochnik 5 November 2012 6.1 Introduction In this chapter we continue our investigation of nucleation near the spinodal. We

More information

INTRODUCTION. Introduction. Discrete charges: Electric dipole. Continuous charge distributions. Flux of a vector field

INTRODUCTION. Introduction. Discrete charges: Electric dipole. Continuous charge distributions. Flux of a vector field Chapter 2 THE ELECTRC FELD ntroduction Discrete charges: Electric dipole Continuous charge distributions Flux of a vector field Flux of an electric field for a spherical Gaussian surface concentric to

More information

Modeling and Simulating Gold Nanoparticle Interactions on a Liquid-Air Interface

Modeling and Simulating Gold Nanoparticle Interactions on a Liquid-Air Interface Modeling and Simulating Gold Nanoparticle Interactions on a Liquid-Air Interface Jennifer Jin 1 and Dr. Jacques Amar 2 1 Mary Baldwin College, 2 Department of Physics & Astronomy, University of Toledo

More information

Diffusion limited aggregation: generation of a fractal

Diffusion limited aggregation: generation of a fractal Teresa Łuczak, Andrzej Molski Experiment 3 Diffusion limited aggregation: generation of a fractal Key concepts: fractal, fractal dimension, Sierpiński triangle, diffusion limited aggregation (DLA), electrolysis

More information

http://www.math.uah.edu/stat/markov/.xhtml 1 of 9 7/16/2009 7:20 AM Virtual Laboratories > 16. Markov Chains > 1 2 3 4 5 6 7 8 9 10 11 12 1. A Markov process is a random process in which the future is

More information

Growth activity during fingering in a porous Hele-Shaw cell

Growth activity during fingering in a porous Hele-Shaw cell PHYSICAL REVIEW E 70, 026301 (2004) Growth activity during fingering in a porous Hele-Shaw cell Grunde Løvoll, 1,2 Yves Méheust, 3,2,1 Renaud Toussaint, 1,3 Jean Schmittbuhl, 2 and Knut Jørgen Måløy 1

More information

Modeling urban growth patterns with correlated percolation

Modeling urban growth patterns with correlated percolation PHYSICAL REVIEW E VOLUME 58, NUMBER 6 DECEMBER 1998 Modeling urban growth patterns with correlated percolation Hernán A. Makse, 1 José S. Andrade, Jr., 1,2 Michael Batty, 3 Shlomo Havlin, 1,4 and H. Eugene

More information

Cellular Automata. Jason Frank Mathematical Institute

Cellular Automata. Jason Frank Mathematical Institute Cellular Automata Jason Frank Mathematical Institute WISM484 Introduction to Complex Systems, Utrecht University, 2015 Cellular Automata Game of Life: Simulator: http://www.bitstorm.org/gameoflife/ Hawking:

More information

Fractals: A Mathematical Framework

Fractals: A Mathematical Framework Fractals: A Mathematical Framework John E Hutchinson Department of Mathematics School of Mathematical Sciences Australian National University (e-mail: JohnHutchinson@anueduau) Abstract We survey some of

More information

Scaling during shadowing growth of isolated nanocolumns

Scaling during shadowing growth of isolated nanocolumns Scaling during shadowing growth of isolated nanocolumns T. Karabacak, J. P. Singh, Y.-P. Zhao, G.-C. Wang, and T.-M. Lu Department of Physics, Applied Physics and Astronomy, Rensselaer Polytechnic Institute,

More information

MODELLING OF LIGHTNING DISCHARGE PATTERNS AS OBSERVED FROM SPACE

MODELLING OF LIGHTNING DISCHARGE PATTERNS AS OBSERVED FROM SPACE MODELLING OF LIGHTNING DISCHARGE PATTERNS AS OBSERVED FROM SPACE J. Cannons and W. Kinsner Department of Electrical & Computer Engineering Signal & Data Compression Laboratory University of Manitoba Winnipeg,

More information

Dependence of conductance on percolation backbone mass

Dependence of conductance on percolation backbone mass PHYSICAL REVIEW E VOLUME 61, NUMBER 4 APRIL 2000 Dependence of conductance on percolation backbone mass Gerald Paul, 1, * Sergey V. Buldyrev, 1 Nikolay V. Dokholyan, 1, Shlomo Havlin, 2 Peter R. King,

More information

arxiv: v2 [cond-mat.stat-mech] 24 Oct 2007

arxiv: v2 [cond-mat.stat-mech] 24 Oct 2007 arxiv:0707434v2 [cond-matstat-mech] 24 Oct 2007 Matrix Product Steady States as Superposition of Product Shock Measures in D Driven Systems F H Jafarpour and S R Masharian 2 Bu-Ali Sina University, Physics

More information

Scaling limits of anisotropic random growth models

Scaling limits of anisotropic random growth models Scaling limits of anisotropic random growth models Amanda Turner Department of Mathematics and Statistics Lancaster University (Joint work with Fredrik Johansson Viklund and Alan Sola) Overview 1 Generalised

More information

The Proof and Illustration of the Central Limit Theorem by Brownian Numerical Experiments in Real Time within the Java Applet

The Proof and Illustration of the Central Limit Theorem by Brownian Numerical Experiments in Real Time within the Java Applet The Proof and Illustration of the Central Limit Theorem by Brownian Numerical Experiments in Real Time within the Java Applet Monika Gall, Ryszard Kutner, and Wojciech Wesela Institute of Experimental

More information

Monte Carlo Simulation of the Ising Model. Abstract

Monte Carlo Simulation of the Ising Model. Abstract Monte Carlo Simulation of the Ising Model Saryu Jindal 1 1 Department of Chemical Engineering and Material Sciences, University of California, Davis, CA 95616 (Dated: June 9, 2007) Abstract This paper

More information

4. The Green Kubo Relations

4. The Green Kubo Relations 4. The Green Kubo Relations 4.1 The Langevin Equation In 1828 the botanist Robert Brown observed the motion of pollen grains suspended in a fluid. Although the system was allowed to come to equilibrium,

More information

arxiv:cond-mat/ v1 1 Jan 1993

arxiv:cond-mat/ v1 1 Jan 1993 Effect of Loops on the Vibrational Spectrum of Percolation Network Hisao Nakanishi HLRZ, KFA Jülich, Postfach 1913 W-5170 Jülich, Germany arxiv:cond-mat/9301001v1 1 Jan 1993 Present and permanent address:

More information

Physics of disordered materials. Gunnar A. Niklasson Solid State Physics Department of Engineering Sciences Uppsala University

Physics of disordered materials. Gunnar A. Niklasson Solid State Physics Department of Engineering Sciences Uppsala University Physics of disordered materials Gunnar A. Niklasson Solid State Physics Department of Engineering Sciences Uppsala University Course plan Familiarity with the basic description of disordered structures

More information

Loewner Evolution. Maps and Shapes in two Dimensions. presented by. Leo P. Kadanoff University of Chicago.

Loewner Evolution. Maps and Shapes in two Dimensions. presented by. Leo P. Kadanoff University of Chicago. Loewner Evolution Maps and Shapes in two Dimensions presented by Leo P. Kadanoff University of Chicago e-mail: LeoP@UChicago.edu coworkers Ilya Gruzberg, Bernard Nienhuis, Isabelle Claus, Wouter Kager,

More information

Renormalization Group analysis of 2D Ising model

Renormalization Group analysis of 2D Ising model Renormalization Group analysis of D Ising model Amir Bar January 7, 013 1 Introduction In this tutorial we will see explicitly how RG can be used to probe the phase diagram of d > 1 systems, focusing as

More information

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 13 May 2005

arxiv:cond-mat/ v1 [cond-mat.stat-mech] 13 May 2005 arxiv:cond-mat/0505350v1 [cond-mat.stat-mech] 13 May 2005 Voter model on Sierpinski fractals Krzysztof Suchecki and Janusz A. Ho lyst Faculty of Physics and Center of Excellence for Complex Systems Research,

More information

arxiv: v1 [hep-ph] 5 Sep 2017

arxiv: v1 [hep-ph] 5 Sep 2017 A First Step Towards Effectively Nonperturbative Scattering Amplitudes in the Perturbative Regime Neil Christensen, Joshua Henderson, Santiago Pinto, and Cory Russ Department of Physics, Illinois State

More information

Chaos, Complexity, and Inference (36-462)

Chaos, Complexity, and Inference (36-462) Chaos, Complexity, and Inference (36-462) Lecture 10: Cellular Automata Cosma Shalizi 12 February 2009 Some things you can read: Poundstone (1984) is what got me interested in the subject; Toffoli and

More information

Diffusion and cellular-level simulation. CS/CME/BioE/Biophys/BMI 279 Nov. 7 and 9, 2017 Ron Dror

Diffusion and cellular-level simulation. CS/CME/BioE/Biophys/BMI 279 Nov. 7 and 9, 2017 Ron Dror Diffusion and cellular-level simulation CS/CME/BioE/Biophys/BMI 279 Nov. 7 and 9, 2017 Ron Dror 1 Outline How do molecules move around in a cell? Diffusion as a random walk (particle-based perspective)

More information

Simple lattice-gas model for water

Simple lattice-gas model for water Simple lattice-gas model for water A. Ciach, W. T. Góźdź and A. Perera Motivation H-bonds and packing of molecules Construction of the lattice model Results in mean-field approximation Water molecule and

More information

Lecture notes for /12.586, Modeling Environmental Complexity. D. H. Rothman, MIT September 24, Anomalous diffusion

Lecture notes for /12.586, Modeling Environmental Complexity. D. H. Rothman, MIT September 24, Anomalous diffusion Lecture notes for 12.086/12.586, Modeling Environmental Complexity D. H. Rothman, MIT September 24, 2014 Contents 1 Anomalous diffusion 1 1.1 Beyond the central limit theorem................ 2 1.2 Large

More information

arxiv: v1 [cond-mat.dis-nn] 25 Mar 2010

arxiv: v1 [cond-mat.dis-nn] 25 Mar 2010 Chaos in Small-World Networks arxiv:034940v1 [cond-matdis-nn] 25 Mar 20 Xin-She Yang Department of Applied Mathematics and Department of Fuel and Energy, University of Leeds, LEEDS LS2 9JT, UK Abstract

More information

Weak Ergodicity Breaking WCHAOS 2011

Weak Ergodicity Breaking WCHAOS 2011 Weak Ergodicity Breaking Eli Barkai Bar-Ilan University Bel, Burov, Korabel, Margolin, Rebenshtok WCHAOS 211 Outline Single molecule experiments exhibit weak ergodicity breaking. Blinking quantum dots,

More information

Diffusion-Limited Aggregation on Curved Surfaces

Diffusion-Limited Aggregation on Curved Surfaces Diffusion-Limited Aggregation on Curved Surfaces The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation As Published Publisher Choi,

More information

2. As gas P increases and/or T is lowered, intermolecular forces become significant, and deviations from ideal gas laws occur (van der Waal equation).

2. As gas P increases and/or T is lowered, intermolecular forces become significant, and deviations from ideal gas laws occur (van der Waal equation). A. Introduction. (Section 11.1) CHAPTER 11: STATES OF MATTER, LIQUIDS AND SOLIDS 1. Gases are easily treated mathematically because molecules behave independently. 2. As gas P increases and/or T is lowered,

More information

Computational Simulation of the Hydraulic Fracturing Process

Computational Simulation of the Hydraulic Fracturing Process Computational Simulation of the Hydraulic Fracturing Process Sergio Andrés Galindo Torrres Jose Daniel Muñoz Castaño Simulation of Physical Systems Group Universidad Nacional de Colombia sagalindot@unal.edu.co

More information

Chapter 7. Chemical Bonding I: Basic Concepts

Chapter 7. Chemical Bonding I: Basic Concepts Chapter 7. Chemical Bonding I: Basic Concepts Chemical bond: is an attractive force that holds 2 atoms together and forms as a result of interactions between electrons found in combining atoms We rarely

More information

Ch. 10 Vector Quantization. Advantages & Design

Ch. 10 Vector Quantization. Advantages & Design Ch. 10 Vector Quantization Advantages & Design 1 Advantages of VQ There are (at least) 3 main characteristics of VQ that help it outperform SQ: 1. Exploit Correlation within vectors 2. Exploit Shape Flexibility

More information

TSP Water Project Report Snowflakes and Fractals

TSP Water Project Report Snowflakes and Fractals TSP Water Project Report Snowflakes and Fractals Group Leader: Group Members: David Curtin Thomas Clement Julian Gibbons Jeff Gordon Enoch Lau Ozan Onay John Sun Due Date: Thursday, 20 May 2004 Word Count:

More information

33 Electric Fields and Potential. An electric field is a storehouse of energy.

33 Electric Fields and Potential. An electric field is a storehouse of energy. An electric field is a storehouse of energy. The space around a concentration of electric charge is different from how it would be if the charge were not there. If you walk by the charged dome of an electrostatic

More information

Biased activated random walks

Biased activated random walks Joint work with Leonardo ROLLA LAGA (Université Paris 3) Probability seminar University of Bristol 23 April 206 Plan of the talk Introduction of the model, results 2 Elements of proofs 3 Conclusion Plan

More information

ON ALGORITHMS FOR BROWNIAN DYNAMICS COMPUTER SIMULATIONS

ON ALGORITHMS FOR BROWNIAN DYNAMICS COMPUTER SIMULATIONS COMPUTATIONAL METHODS IN SCIENCE AND TECHNOLOGY 4,35-42 (1998) ON ALGORITHMS FOR BROWNIAN DYNAMICS COMPUTER SIMULATIONS ARKADIUSZ C. BRAŃKA Institute of Molecular Physics, Polish Academy of Sciences, Smoluchowskiego

More information

Introduction to the mathematical modeling of multi-scale phenomena

Introduction to the mathematical modeling of multi-scale phenomena Introduction to the mathematical modeling of multi-scale phenomena Diffusion Brownian motion Brownian motion (named after botanist Robert Brown) refers to the random motion of particles suspended in a

More information

Efficient Observation of Random Phenomena

Efficient Observation of Random Phenomena Lecture 9 Efficient Observation of Random Phenomena Tokyo Polytechnic University The 1st Century Center of Excellence Program Yukio Tamura POD Proper Orthogonal Decomposition Stochastic Representation

More information

Lecture 13. Drunk Man Walks

Lecture 13. Drunk Man Walks Lecture 13 Drunk Man Walks H. Risken, The Fokker-Planck Equation (Springer-Verlag Berlin 1989) C. W. Gardiner, Handbook of Stochastic Methods (Springer Berlin 2004) http://topp.org/ http://topp.org/species/mako_shark

More information