8.8 Exercises 279
whereδ∈{− 1 , 0 , 1 }andLis the length of the simulation box in thexdirection. This limits
the interaction range to half the system size, which is more than enough for our potential.
You should now have a working MD program for simulating bulk argon in its solid, liquid
and gas phases.
d) You probably notice that the force calculations are the most time consuming part of your
program. The number of force terms is^12 N(N− 1 )for each time step, which gives a workload
scaling∝N^2. We want to improve this by neglecting force terms for particles far apart. The
LJ interaction is short ranged and can be neglected for distances overrcut≈ 3 ε. A simple
and efficient way of achieving this is by implementing Verletlists.
Create arrays specifying the neighbours of all particles and a function to update this list
e.g. every 10th timestep. An atomineeds only to keep track of neighbour atoms with a
lower indexj. The force loops can now iterate over all atomsiand atomsjin the neighbour
list ofi. Compare the time usage of the program with and without Verlet lists for different
system sizes.
e) An MD simulation of bulk material enables the measurementof macroscopic quantities.
The ergodic hypothesis states that the time a system has one particular value of an observ-
ableAis proportional to the phase space volume whereAhas this value. This applies to
systems in equilibrium studied for a long period of time. As aresult, the time average and
ensemble average of a variable are equal. If we average over long enough periods of time,
we can predict equilibrium properties of real materials.
According to the central limit theorem, the velocity distribution of the particles will eventu-
ally evolve into a Maxwell-Boltzmann-distribution whatever the initial condition. Switch to
initializing the velocities with uniformly distributed random numbers in the interval[−v,v],
for a reasonablev. Investigate the velocity distribution after equilibration, e.g. by dumping
the velocities to a file and using the Matlabhist()function. Roughly how much time does
it take for the velocities to reach a MB-distribution?
The easiest quantity to calculate is the total energy of the system. Sum up the kinetic and
potential energies of all your argon atoms. Output the totalenergy for each time step of
a simulation. The energy should be conserved, but some fluctuations are inevitable as the
dynamics are discretized. How does the size of the fluctuations depend on the time step
∆t?
The temperature of a MD system is non-trivial to calculate for general potential forms. The
simplest estimate assumes equilibrium between the translational and potential degrees of
freedom. According to the equipartition principle, the total kinetic energy is
Ek=
3
2 NkBT (8.31)
whereNis the number of atoms andTis our estimate for the system temperature.
Invert the equation and measure the temperature for each time step. Don’t forget to equi-
libriate the system first. What mean temperature does the system settle on, and how does
this compare to the initial temperature? How does the temperature fluctuations vary with
the system size?
There are several ways of measuring the pressurePof a many-atom system. The method
we will use is derived from the virial equation for the pressure. In a volumeVwith particle
densityρ=N/V, the average pressure is
P=ρkBT+
1
3 V
〈∑
i<j
Fi j·ri j〉 (8.32)
where the sum runs over all interacting particle pairs. The vector products should be com-
puted and summed up inside the force loops for efficiency.