finished (?) bo
[lectures/latex.git] / posic / thesis / basics.tex
1 \chapter{Basic principles of utilized simulation techniques}
2 \label{chapter:basics}
3
4 In the following the simulation methods used within the scope of this study are introduced.
5 Enabling the investigation of the evolution of structure on the atomic scale, molecular dynamics (MD) simulations are chosen for modeling the behavior and precipitation of C introduced into an initially crystalline Si environment.
6 To be able to model systems with a large amount of atoms computational efficient classical potentials to describe the interaction of the atoms are most often used in MD studies.
7 For reasons of flexibility in executing this non-standard task and in order to be able to use a novel interaction potential \cite{albe_sic_pot} an appropriate MD code called {\textsc posic}\footnote{{\textsc posic} is an abbreviation for {\bf p}recipitation {\bf o}f {\bf SiC}}\footnote{Source code: http://www.physik.uni-augsburg.de/\~{}zirkelfr/posic/posic.tar.bz2} including a library collecting respective MD subroutines was developed from scratch.
8 The basic ideas of MD in general and the adopted techniques as implemented in {\textsc posic} in particular are outlined in section \ref{section:md}, while the functional form and derivative of the employed classical potential is presented in appendix \ref{app:d_tersoff}.
9 An overview of the most important tools within the MD package is given in appendix \ref{app:code}.
10 Although classical potentials are often most successful and at the same time computationally efficient in calculating some physical properties of a particular system, not all of its properties might be described correctly due to the lack of quantum-mechanical effects.
11 Thus, in order to obtain more accurate results quantum-mechanical calculations from first principles based on density functional theory (DFT) were performed.
12 The Vienna {\em ab initio} simulation package ({\textsc vasp}) \cite{kresse96} is used for this purpose.
13 The relevant basics of DFT are described in section \ref{section:dft} while an overview of utilities mainly used to create input or parse output data of {\textsc vasp} is given in appendix \ref{app:code}.
14 The gain in accuracy achieved by this method, however, is accompanied by an increase in computational effort constraining the simulated system to be much smaller in size.
15 Thus, investigations based on DFT are restricted to single defects or combinations of two defects in a rather small Si supercell, their structural relaxation as well as some selected diffusion processes.
16 Next to the structure, defects can be characterized by the defect formation energy, a scalar indicating the costs necessary for the formation of the defect, which is explained in section \ref{section:basics:defects}.
17 The method used to investigate migration pathways to identify the prevalent diffusion mechanism is introduced in section \ref{section:basics:migration} and modifications to the {\textsc vasp} code implementing this method are presented in appendix \ref{app:patch_vasp}.
18
19 \section{Molecular dynamics simulations}
20 \label{section:md}
21
22 % todo
23 % rewrite!
24
25 \begin{quotation}
26 \dq We may regard the present state of the universe as the effect of the past and the cause of the future. An intellect which at any given moment knew all of the forces that animate nature and the mutual positions of the beings that compose it, if this intellect were vast enough to submit the data to analysis, could condense into a single formula the movement of the greatest bodies of the universe and that of the lightest atom; for such an intellect nothing could be uncertain and the future just like the past would be present before its eyes.\dq{}
27 \begin{flushright}
28 {\em Marquis Pierre Simon de Laplace, 1814.} \cite{laplace}
29 \end{flushright}
30 \end{quotation}
31
32 \noindent
33 Pierre Simon de Laplace phrased this vision in terms of a controlling, omniscient instance - the {\em Laplace demon} - which would be able to look into the future as well as into the past due to the deterministic nature of processes, governed by the solution of differential equations.
34 Although Laplace's vision is nowadays corrected by chaos theory and quantum mechanics, it expresses two main features of classical mechanics, the determinism of processes and time reversibility of the fundamental equations.
35 This understanding was one of the first ideas for doing molecular dynamics simulations, considering an isolated system of particles, the behaviour of which is fully determined by the solution of the classical equations of motion.
36
37 \subsection{Introduction to molecular dynamics simulations}
38
39 Molecular dynamics (MD) simulation is a technique to compute a system of particles, referred to as molecules, with their positions, volocities and forces among each other evolving in time.
40 The MD method was first introduced by Alder and Wainwright in 1957 \cite{alder57,alder59} to study the interactions of hard spheres.
41 The basis of the approach are Newton's equations of motion to describe classicaly the many-body system.
42 MD is the numerical way of solving the $N$-body problem which cannot be solved analytically for $N>3$.
43 A potential is necessary describing the interaction of the particles.
44 By MD a complete description of the system in the sense of classical mechanics on the microscopic level is obtained.
45 The microscopic information can then be translated to macroscopic observables by means of statistical mechanics.
46
47 The basic idea is to assume that the particles can be described classically by Newton's equations of motion, which are integrated numerically.
48 A system of $N$ particles of masses $m_i$ ($i=1,\ldots,N$) at positions ${\bf r}_i$ and velocities $\dot{{\bf r}}_i$ is given by
49 \begin{equation}
50 %m_i \frac{d^2}{dt^2} {\bf r}_i = {\bf F}_i \Leftrightarrow
51 %m_i \frac{d}{dt} {\bf r}_i = {\bf p}_i\textrm{ , } \quad
52 %\frac{d}{dt} {\bf p}_i = {\bf F}_i\textrm{ .}
53 m_i \ddot{{\bf r}_i} = {\bf F}_i \Leftrightarrow
54 m_i \dot{{\bf r}_i} = {\bf p}_i\textrm{, }
55 \dot{{\bf p}_i} = {\bf F}_i\textrm{ .}
56 \end{equation}
57 The forces ${\bf F}_i$ are obtained from the potential energy $U(\{{\bf r}\})$:
58 \begin{equation}
59 {\bf F}_i = - \nabla_{{\bf r}_i} U({\{\bf r}\}) \, \textrm{.}
60 \end{equation}
61 Given the initial conditions ${\bf r}_i(t_0)$ and $\dot{{\bf r}}_i(t_0)$ the equations can be integrated by a certain integration algorithm.
62 The solution of these equations provides the complete information of a system evolving in time.
63 The following sections cover the tools of the trade necessary for the MD simulation technique.
64 Three ingredients are required for a MD simulation:
65 \begin{enumerate}
66 \item A model for the interaction between system constituents is needed.
67       Interaction potentials and their accuracy for describing certain systems of elements will be outlined in section \ref{subsection:interact_pot}.
68 \item An integrator is needed, which propagtes the particle positions and velocities from time $t$ to $t+\delta t$, realised by a finite difference scheme which moves trajectories discretely in time.
69       This is explained in section \ref{subsection:integrate_algo}.
70 \item A statistical ensemble has to be chosen, which allows certain thermodynamic quantities to be controlled or to stay constant.
71       This is discussed in section \ref{subsection:statistical_ensembles}.
72 \end{enumerate}
73 These ingredients will be outlined in the follwoing.
74 The discussion is restricted to methods employed within this study.
75
76 \subsection{Interaction potentials for silicon and carbon}
77 \label{subsection:interact_pot}
78
79 The potential energy of $N$ interacting atoms can be written in the form
80 \begin{equation}
81 U(\{{\bf r}\}) = \sum_i U_1({\bf r}_i) + \sum_i \sum_{j>i} U_2({\bf r}_i,{\bf r}_j) + \sum_i \sum_{j>i} \sum_{k>j>i} U_3({\bf r}_i,{\bf r}_j,{\bf r}_k) \ldots
82 \end{equation}
83 where $U$ is the total potential energy.
84 $U_1$ is a single particle potential describing external forces.
85 Examples of single particle potentials are the gravitational force or an electric field.
86 $U_2$ is a two body pair potential which only depends on the distance $r_{ij}$ between the two atoms $i$ and $j$.
87 If not only pair potentials are considered, three body potentials $U_3$ or multi body potentials $U_n$ can be included.
88 Usually these higher order terms are avoided since they are not easy to model and it is rather time consuming to evaluate potentials and forces originating from these many body terms.
89 Ordinary pair potentials have a close-packed structure like face-centered cubic (FCC) or hexagonal close-packed (HCP) as a ground state.
90 A pair potential is, thus, unable to describe properly elements with other structures than FCC or HCP.
91 Silicon and carbon for instance, have a diamand and zincblende structure with four covalently bonded neighbors, which is far from a close-packed structure.
92 A three body potential has to be included for these types of elements.
93
94 \subsubsection{The Tersoff bond order potential}
95
96 Tersoff proposed an empirical interatomic potential for covalent systems \cite{tersoff_si1,tersoff_si2}.
97 The Tersoff potential explicitly incorporates the dependence of bond order on local environments, permitting an improved description of covalent materials.
98 Due to the covalent character Tersoff restricted the interaction to nearest neighbor atoms accompanied by an increases in computational efficiency for the evaluation of forces and energy based on the short-range potential.
99 Tersoff applied the potential to silicon \cite{tersoff_si1,tersoff_si2,tersoff_si3}, carbon \cite{tersoff_c} and also to multicomponent systems like silicon carbide \cite{tersoff_m}.
100 The basic idea is that, in real systems, the bond order, i.e. the strength of the bond, depends upon the local environment \cite{abell85}.
101 Atoms with many neighbors form weaker bonds than atoms with only a few neighbors.
102 Although the bond strength intricately depends on geometry the focus on coordination, i.e. the number of neighbors forming bonds, is well motivated qualitatively from basic chemistry since for every additional formed bond the amount of electron pairs per bond and, thus, the strength of the bonds is decreased.
103 If the energy per bond decreases rapidly enough with increasing coordination the most stable structure will be the dimer.
104 In the other extreme, if the dependence is weak, the material system will end up in a close-packed structure in order to maximize the number of bonds and likewise minimize the cohesive energy.
105 This suggests the bond order to be a monotonously decreasing function with respect to coordination and the equilibrium coordination being determined by the balance of bond strength and number of bonds.
106 Based on pseudopotential theory the bond order term $b_{ijk}$ limitting the attractive pair interaction is of the form $b_{ijk}\propto Z^{-\delta}$ where $Z$ is the coordination number and $\delta$ a constant \cite{abell85}, which is $\frac{1}{2}$ in the seond-moment approximation within the tight binding scheme \cite{horsfield96}.
107
108 Tersoff incorporated the concept of bond order in a three-body potential formalism.
109 The interatomic potential is taken to have the form
110 \begin{eqnarray}
111 E & = & \sum_i E_i = \frac{1}{2} \sum_{i \ne j} V_{ij} \textrm{ ,} \\
112 V_{ij} & = & f_C(r_{ij}) [ f_R(r_{ij}) + b_{ij} f_A(r_{ij}) ] \textrm{ .}
113 \end{eqnarray}
114 $E$ is the total energy of the system, constituted either by the sum over the site energies $E_i$ or by the bond energies $V_{ij}$.
115 The indices $i$ and $j$ correspond to the atoms of the system with $r_{ij}$ being the distance from atom $i$ to atom $j$.
116 The functions $f_R$ and $f_A$ represent a repulsive and an attractive pair potential.
117 The repulsive part is due to the orthogonalization energy of overlapped atomic wave functions.
118 The attractive part is associated with the bonding.
119 \begin{eqnarray}
120 f_R(r_{ij}) & = & A_{ij} \exp (- \lambda_{ij} r_{ij} ) \\
121 f_A(r_{ij}) & = & -B_{ij} \exp (- \mu_{ij} r_{ij} )
122 \end{eqnarray}
123 The function $f_C$ is the a cutoff function to limit the range of interaction to nearest neighbors.
124 It is designed to have a smooth transition of the potential at distances $R_{ij}$ and $S_{ij}$.
125 \begin{equation}
126 f_C(r_{ij}) = \left\{
127   \begin{array}{ll}
128     1, & r_{ij} < R_{ij} \\
129     \frac{1}{2} + \frac{1}{2} \cos \Big[ \pi (r_{ij} - R_{ij})/(S_{ij} - R_{ij}) \Big], & R_{ij} < r_{ij} < S_{ij} \\
130     0, & r_{ij} > S_{ij}
131   \end{array} \right.
132 \label{eq:basics:fc}
133 \end{equation}
134 As discussed above, $b_{ij}$ represents a measure of the bond order, monotonously decreasing with the coordination of atoms $i$ and $j$.
135 It is of the form:
136 \begin{eqnarray}
137 b_{ij} & = & \chi_{ij} (1 + \beta_i^{n_i} \zeta^{n_i}_{ij})^{-1/2n_i} \\
138 \zeta_{ij} & = & \sum_{k \ne i,j} f_C (r_{ik}) \omega_{ik} g(\theta_{ijk}) \\
139 g(\theta_{ijk}) & = & 1 + c_i^2/d_i^2 - c_i^2/[d_i^2 + (h_i - \cos \theta_{ijk})^2]
140 \end{eqnarray}
141 where $\theta_{ijk}$ is the bond angle between bonds $ij$ and $ik$.
142 This is illustrated in Figure \ref{img:tersoff_angle}.
143 \begin{figure}[t]
144 \begin{center}
145 \includegraphics[width=8cm]{tersoff_angle.eps}
146 \end{center}
147 \caption{Angle between bonds of atoms $i,j$ and $i,k$.}
148 \label{img:tersoff_angle}
149 \end{figure}
150 The angular dependence does not give a fixed minimum angle between bonds since the expression is embedded inside the bond order term.
151 The relation to the above discussed bond order potential becomes obvious if $\chi=1, \beta=1, n=1, \omega=1$ and $c=0$.
152 Parameters with a single subscript correspond to the parameters of the elemental system \cite{tersoff_si3,tersoff_c} while the mixed parameters are obtained by interpolation from the elemental parameters by the arithmetic or geometric mean.
153 The elemental parameters were obtained by fit with respect to the cohesive energies of real and hypothetical bulk structures and the bulk modulus and bond length of the diamond structure.
154 New parameters for the mixed system are $\chi$, which is used to finetune the strength of heteropolar bonds, and $\omega$, which is set to one for the C-Si interaction but is available as a feature to permit the application of the potential to more drastically different types of atoms in the future.
155
156 The force acting on atom $i$ is given by the derivative of the potential energy.
157 For a three body potential ($V_{ij} \neq V{ji}$) the derivation is of the form
158 \begin{equation}
159 \nabla_{{\bf r}_i} E = \frac{1}{2} \big[ \sum_j ( \nabla_{{\bf r}_i} V_{ij} + \nabla_{{\bf r}_i} V_{ji} ) + \sum_k \sum_j \nabla_{{\bf r}_i} V_{jk} \big] \textrm{ .}
160 \end{equation}
161 The force is then given by
162 \begin{equation}
163 F^i = - \nabla_{{\bf r}_i} E \textrm{ .}
164 \end{equation}
165 Details of the Tersoff potential derivative are presented in appendix \ref{app:d_tersoff}.
166
167 \subsubsection{Improved analytical bond order potential}
168
169 Although the Tersoff potential is one of the most widely used potentials there are some shortcomings.
170 Describing the Si-Si interaction Tersoff was unable to find a single parameter set to describe well both, bulk and surface properties.
171 Due to this and since the first approach labeled T1 \cite{tersoff_si1} turned out to be unstable \cite{dodson87}, two further parametrizations exist, T2 \cite{tersoff_si2} and T3 \cite{tersoff_si3}.
172 While T2 describes well surface properties, T3 yields improved elastic constants and should be used for describing bulk properties.
173 However, T3, which is used in the Si/C potential, suffers from an underestimation of the dimer binding energy.
174 Similar behavior is found for the C-C interaction.
175
176 For this reason, Erhart and Albe provide a reparametrization of the Tersoff potential based on three independently fitted parameter sets for the Si-Si, C-C and Si-C interaction \cite{albe_sic_pot}.
177 The functional form is similar to the one proposed by Tersoff.
178 Differences in the energy functional and the force evaluation routine are pointed out in appendix \ref{app:d_tersoff}.
179 Concerning Si the elastic properties of the diamond phase as well as the structure and energetics of the dimer are reproduced very well.
180 The new parameter set for the C-C interaction yields improved dimer properties while at the same time delivers a description of the bulk phase similar to the Tersoff potential.
181 The potential succeeds in the description of the low as well as high coordinated structures.
182 The description of elastic properties of SiC is improved with respect to the potentials available in literature.
183 Defect properties are only fairly reproduced but the description is comparable to previously published potentials.
184 It is claimed that the potential enables modeling of widely different configurations and transitions among these and has recently been used to simulate the inert gas condensation of Si-C nanoparticles \cite{erhart04}.
185 Therefore the Erhart/Albe (EA) potential is considered the superior analytical bond order potential to study the SiC precipitation and associated processes in Si.
186
187 \subsection{Verlet integration}
188 \label{subsection:integrate_algo}
189
190 A numerical method to integrate Newton's equation of motion was presented by Verlet in 1967 \cite{verlet67}.
191 The idea of the so-called Verlet and a variant, the velocity Verlet algorithm, which additionaly generates directly the velocities, is explained in the following.
192 Starting point is the Taylor series for the particle positions at time $t+\delta t$ and $t-\delta t$
193 \begin{equation}
194 \vec{r}_i(t+\delta t)=
195 \vec{r}_i(t)+\delta t\vec{v}_i(t)+\frac{\delta t^2}{2m_i}\vec{f}_i(t)+
196 \frac{\delta t^3}{6}\vec{b}_i(t) + \mathcal{O}(\delta t^4)
197 \label{basics:verlet:taylor1}
198 \end{equation}
199 \begin{equation}
200 \vec{r}_i(t-\delta t)=
201 \vec{r}_i(t)-\delta t\vec{v}_i(t)+\frac{\delta t^2}{2m_i}\vec{f}_i(t)-
202 \frac{\delta t^3}{6}\vec{b}_i(t) + \mathcal{O}(\delta t^4)
203 \label{basics:verlet:taylor2}
204 \end{equation}
205 where $\vec{v}_i=\frac{d}{dt}\vec{r}_i$ are the velocities, $\vec{f}_i=m\frac{d}{dt^2}\vec{r}_i$ are the forces and $\vec{b}_i=\frac{d}{dt^3}\vec{r}_i$ are the third derivatives of the particle positions with respect to time.
206 The Verlet algorithm is obtained by summarizing and substracting equations \eqref{basics:verlet:taylor1} and \eqref{basics:verlet:taylor2}
207 \begin{equation}
208 \vec{r}_i(t+\delta t)=
209 2\vec{r}_i(t)-\vec{r}_i(t-\delta t)+\frac{\delta t^2}{m_i}\vec{f}_i(t)+
210 \mathcal{O}(\delta t^4)
211 \end{equation}
212 \begin{equation}
213 \vec{v}_i(t)=\frac{1}{2\delta t}[\vec{r}_i(t+\delta t)-\vec{r}_i(t-\delta t)]+
214 \mathcal{O}(\delta t^3)
215 \end{equation}
216 the truncation error of which is of order $\delta t^4$ for the positions and $\delta t^3$ for the velocities.
217 The velocities, although not used to update the particle positions, are not synchronously determined with the positions but drag behind one step of discretization.
218 The Verlet algorithm can be rewritten into an equivalent form, which updates the velocities and positions in the same step.
219 The so-called velocity Verlet algorithm is obtained by combining \eqref{basics:verlet:taylor1} with equation \eqref{basics:verlet:taylor2} displaced in time by $+\delta t$
220 \begin{equation}
221 \vec{v}_i(t+\delta t)=
222 \vec{v}_i(t)+\frac{\delta t}{2m_i}[\vec{f}_i(t)+\vec{f}_i(t+\delta t)]
223 \end{equation}
224 \begin{equation}
225 \vec{r}_i(t+\delta t)=
226 \vec{r}_i(t)+\delta t\vec{v}_i(t)+\frac{\delta t^2}{2m_i}\vec{f}_i(t) \text{ .}
227 \end{equation}
228 Since the forces for the new positions are required to update the velocity the determination of the forces has to be carried out within the integration algorithm.
229
230 \subsection{Statistical ensembles}
231 \label{subsection:statistical_ensembles}
232
233 Using the above mentioned algorithms the most basic type of MD is realized by simply integrating the equations of motion of a fixed number of particles ($N$) in a closed volume $V$ realized by periodic boundary conditions (PBC).
234 Providing a stable integration algorithm the total energy $E$, i.e. the kinetic and configurational energy of the paticles, is conserved.
235 This is known as the $NVE$, or microcanonical ensemble, describing an isolated system composed of microstates, among which the number of particles, volume and energy are held constant.
236
237 However, the successful formation of SiC dictates precise control of temperature by external heating.
238 While the temperature of such a system is well defined, the energy is no longer conserved.
239 The microscopic states of a system, which is in thermal equilibrium with an external thermal heat bath, are represented by the $NVT$ ensemble.
240 In the so-called canonical ensemble the temperature $T$ is related to the expactation value of the kinetic energy of the particles, i.e.
241 \begin{equation}
242 \langle E_{\text{kin}}\rangle = \frac{3}{2}Nk_{\text{B}}T \text{, }
243 E_{\text{kin}}=\sum_i \frac{\vec{p}^2_i}{2m_i} \text{ .}
244 \label{eq:basics:ts}
245 \end{equation}
246 The volume of the synthesized material can hardly be controlled in experiment.
247 Instead the pressure can be adjusted.
248 Holding constant the pressure in addition to the temperature of the system its states are represented by the isothermal-isobaric $NpT$ ensemble.
249 The expression for the pressure of a system derived from the equipartition theorem is given by
250 \begin{equation}
251 pV=Nk_{\text{B}}T+\langle W\rangle\text{, }W=-\frac{1}{3}\sum_i\vec{r}_i\nabla_{\vec{r}_i}U
252 \text{, }
253 \label{eq:basics:ps}
254 \end{equation}
255 where $W$ is the virial and $U$ is the configurational energy.
256
257 Berendsen~et~al.~\cite{berendsen84} proposed a method, which is easy to implement, to couple the system to an external bath with constant temperature $T_0$ or pressure $p_0$ with adjustable time constants $\tau_T$ and $\tau_p$ determining the strength of the coupling.
258 Control of the respective variable is based on the relations given in equations \eqref{eq:basics:ts} and \eqref{eq:basics:ps}.
259 The thermostat is achieved by scaling the velocities of all atoms in every time step $\delta t$ from $\vec{v}_i$ to $\lambda \vec{v}_i$, with
260 \begin{equation}
261 \lambda=\left[1+\frac{\delta t}{\tau_T}(\frac{T_0}{T}-1)\right]^\frac{1}{2}
262 \text{ ,}
263 \end{equation}
264 where $T$ is the current temperature according to equation \eqref{eq:basics:ts}.
265 The barostat adjusts the pressure by changing the virial through scaling of the particle positions $\vec{r}_i$ to $\mu \vec{r}_i$ and the volume $V$ to $\mu^3 V$, with
266 \begin{equation}
267 \mu=\left[1-\frac{\beta\delta t}{\tau_p}(p_0-p)\right]^\frac{1}{3}\text{ ,}
268 \end{equation}
269 where $\beta$ is the isothermal compressibility and $p$ corresponds to the current pressure, which is determined by equation \eqref{eq:basics:ps}.
270
271 Using this method the system does not behave like a true $NpT$ ensemble.
272 On average $T$ and $p$ correspond to the expected values.
273 For large enough time constants, i.e. $\tau > 100 \delta t$, the method shows realistic fluctuations in $T$ and $p$.
274 The advantage of the approach is that the coupling can be decreased to minimize the disturbance of the system and likewise be adjusted to suit the needs of a given application.
275 It provides a stable algorithm that allows smooth changes of the system to new values of temperature or pressure, which is ideal for the investigated problem.
276
277 \section{Denstiy functional theory}
278 \label{section:dft}
279
280 Dirac declared that chemistry has come to an end, its content being entirely contained in the powerul equation published by Schr\"odinger in 1926 \cite{schroeder26} marking the beginning of wave mechanics.
281 Following the path of Schr\"odinger the problem in quantum-mechanical modeling of describing the many-body problem, i.e. a system of a large amount of interacting particles, is manifested in the high-dimensional Schr\"odinger equation for the wave function $\Psi({\vec{R}},{\vec{r}})$ that depends on the coordinates of all nuclei and electrons.
282 The Schr\"odinger equation contains the kinetic energy of the ions and electrons as well as the electron-ion, ion-ion and electron-electron interaction.
283 This cannot be solved exactly and finding approximate solutions requires several layers of simplification in order to reduce the number of free parameters.
284 Approximations that consider a truncated Hilbert space of single-particle orbitals yield promising results, however, with increasing complexity and demand for high accuracy the amount of Slater determinats to be evaluated massively increases.
285
286 In contrast, instead of using the description by the many-body wave function, the key point in density functional theory (DFT) is to recast the problem to a description utilizing the charge density $n(\vec{r})$, which constitutes a quantity in real space depending only on the three spatial coordinates.
287 In the following sections the basic idea of DFT will be outlined.
288 As will be shown, DFT can formally be regarded as an exactification of the Thomas Fermi theory \cite{thomas27,fermi27} and the self-consistent Hartree equations \cite{hartree28}.
289
290 \subsection{Born-Oppenheimer approximation}
291
292 Born and Oppenheimer proposed a simplification enabling the effective decoupling of the electronic and ionic degrees of freedom \cite{born27}.
293 Within the Born-Oppenheimer (BO) approximation the light electrons are assumed to move much faster and, thus, follow adiabatically to the motion of the heavy nuclei, if the latter are only slightly deflected from their equilibrium positions.
294 Thus, on the timescale of electronic motion the ions appear at fixed positions.
295 On the other way round, on the timescale of nuclear motion the electrons appear blurred in space adding an extra term to the ion-ion potential.
296 The simplified Schr\"odinger equation no longer contains the kinetic energy of the ions.
297 The momentary positions of the ions enter as fixed parameters and, therefore, the ion-ion interaction may be regarded as a constant added to the electronic energies.
298 The Schr\"odinger equation describing the remaining electronic problem reads
299 \begin{equation}
300 \left[-\frac{\hbar^2}{2m}\sum_j\nabla^2_j-
301 \sum_{j,l} \frac{Z_le^2}{|\vec{r}_j-\vec{R}_l|}+
302 \frac{1}{2}\sum_{j\neq j'}\frac{e^2}{|\vec{r}_j-\vec{r}_{j'}|}
303 \right] \Psi = E \Psi
304 \text{ ,}
305 \end{equation}
306 where $Z_l$ are the atomic numbers of the nuclei and $\Psi$ is the many-electron wave function, which depends on the positions and spins of the electrons.
307 There is only a parametrical dependence on the ionic coordinates $\vec{R}_l$.
308
309 \subsection{Bloch theorem}
310
311 \subsection{Hohenberg-Kohn theorem}
312
313 \subsection{Effective potential}
314
315 \subsection{Kohn-Sham system}
316
317 \subsection{Approximations for exchange and correlation}
318
319 \subsection{Pseudopotentials}
320
321 \section{Modeling of defects}
322 \label{section:basics:defects}
323
324 \section{Migration paths and diffusion barriers}
325 \label{section:basics:migration}
326