Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 407
1
\documentclass{article}
2
\title{First Meeting: 2-Body Problem}
3
\author{DCI}
4
5
\begin{document}
6
\maketitle
7
\section*{Summary}
8
In the problem of N bodies we start from the idea that each particle undergoes an acceleration due to the gravitational attraction of all the other particles in the system. This is expressed in a system of N coupled differential equations of second order.
9
\begin{equation}
10
m_{i}\ddot{r}_{i}=F_{i}=-\sum_{j\neq i}\frac{G m_{i} m_{j}}{r^{3}_{ij}}r_{ij}, \;\;\;\; i=1,...,N \label{eq1}
11
\end{equation}
12
where $ m _ {i} $, $ _ {i} $ and $ F_ {i} $ are the mass, the position vector and the total force on the i-esima particle respectively, $r_{ij}=\vec{r}_{i}-\vec{r}_{j}$.
13
14
The resolution of the problem is completed by specifying the initial speeds and positions of the N particles. For resolution we divide the problem into two parts,
15
\begin{enumerate}
16
\item[1.] calculate the total force on each particle at a given time,
17
\item[2.] determine the new position and velocity of the particle in a new time $t+dt$.
18
\end{enumerate}
19
20
In the \underline{method of direct integration}, the force is calculated by solving the system of N equations (\ref{eq1}).
21
22
One of the problems encountered is when the distance tends to zero, which means that the force diverges, appearing nonphysical accelerations in close encounters between particles. In a real physical system, this does not happen. To prevent this divergence is assumed that the particles are extended objects.
23
\begin{equation}
24
F_{i}=-\sum_{j\neq i}\frac{G m_{i} m_{j}}{(\left|\vec{r}_{i}-\vec{r}_{j}\right|^{2} +\epsilon^2)^{3/2}}\; (\vec{r}_{i}-\vec{r}_{j}), \;\;\;\; i=1,...,N,
25
\end{equation}
26
where $\epsilon$ is the length of smoothing or radio dilution (is the typical distance at which the interaction is altered).
27
28
Although $\epsilon$ avoids the divergent forces, when $r_{ij}<\epsilon$, will mean that the force is modeled not for the force of Newtonian gravity of a point mass. Hence the choice of the value thereof can not be arbitrary. For example, this approach is not correct for systems in which the value of $\epsilon$ is greater than the average separation of a significant fraction of particle pairs in the system.
29
\section{Discussion on numerical methods}
30
The first resolution method presented is to Euler method (which apparently can not be used when have many particles) also is commented the Runge Kutta 4th order method (RK4). For this case the error is on the order of the interval, $h^{5} $, and the accumulated error is to the order $h^4$. It is necessary to control the interval and for that is necesary use an adaptive RK4.
31
\end{document}
32
33