Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 84e9e3b6 authored by ext-calvo_p's avatar ext-calvo_p
Browse files

Resolve "Wrong equation name"

parent fa15e306
No related branches found
No related tags found
No related merge requests found
...@@ -284,65 +284,71 @@ More details will be given in Version 2.0.0. ...@@ -284,65 +284,71 @@ More details will be given in Version 2.0.0.
[[sec.fieldsolvers.p3m]] [[sec.fieldsolvers.p3m]]
=== Particle-Particle-Particle-Mesh (latexmath:[P^3M]) Solver === Particle-Particle-Particle-Mesh (latexmath:[P^3M]) Solver
The latexmath:[P^3M] solver of Hockney and Eastwood <<bib.hockneyandeastwood>> The latexmath:[P^3M] solver of Hockney and Eastwood <<bib.hockneyandeastwood>>
takes into account collisions between particles in an electrostatic takes into account collisions between particles in an electrostatic
one-one PIC simulation (every simulation particle is a one-one PIC simulation (every simulation particle is a real particle) in an
real particle) in an efficient manner compared to PIC with excessive mesh refinement or efficient manner compared to PIC with excessive mesh refinement or a direct
a direct N-body summation. The main idea behind this approach is a splitting of the N-body summation. The main idea behind this approach is a splitting of the
total force latexmath:[F] into two components total force latexmath:[F] into two components
[latexmath#eq-oneterm] [latexmath#eq-p3mForce]
++++ ++++
F = F_{sr} + F_{lr} F = F_{sr} + F_{lr}
++++ ++++
where latexmath:[F_{sr}] is the short-range component which can be where latexmath:[F_{sr}] is the short-range component which can be computed
computed efficiently in the real-space with a small cut-off radius by direct summation, efficiently in the real-space with a small cut-off radius by direct summation,
whereas latexmath:[F_{lr}] is the long-range component and this can be calculated efficiently whereas latexmath:[F_{lr}] is the long-range component and this can be
in the Fourier space with a few Fourier modes due to its rapid spectral decay. Consequently, calculated efficiently in the Fourier space with a few Fourier modes due to its
we split the Green's function latexmath:[G] also into two components as rapid spectral decay. Consequently, we split the Green's function
latexmath:[G] also into two components as
[latexmath#eq-oneterm] [latexmath#eq-p3mGreen]
++++ ++++
G(r) = \psi(r) + \phi(r) = \frac{1 - f(r)}{r} + \frac{f(r)}{r} G(r) = \psi(r) + \phi(r) = \frac{1 - f(r)}{r} + \frac{f(r)}{r}
++++ ++++
where latexmath:[\psi(r)] is the short-range or the particle-particle Green's function and where latexmath:[\psi(r)] is the short-range or the particle-particle
latexmath:[\phi(r)] is the long range or the particle-mesh Green's function. Apart from certain Green's function and latexmath:[\phi(r)] is the long range or the
smoothness conditions there is a lot of flexibility in the choice of latexmath:[f(r)] and this particle-mesh Green's function. Apart from certain smoothness conditions
leads to different screening shapes for the particles. The standard choice from the Ewald there is a lot of flexibility in the choice of latexmath:[f(r)] and this
summation corresponds to <<bib.p3mulmerthesis>>, <<bib.p3mhuenenberger>> leads to different screening shapes for the particles. The standard choice
from the Ewald summation corresponds to <<bib.p3mulmerthesis>>, <<bib.p3mhuenenberger>>
[latexmath#eq-oneterm] [latexmath#eq-p3mEwald]
++++ ++++
f(r) = erf(\alpha r) f(r) = erf(\alpha r)
++++ ++++
where latexmath:[\alpha] is the interaction splitting parameter which determines the relative where latexmath:[\alpha] is the interaction splitting parameter which
significance of the particle-particle part to the particle-mesh part. It is usually chosen as determines the relative significance of the particle-particle part to the
latexmath:[\alpha = C/r_c], where latexmath:[r_c] is the cut-off or interaction radius and latexmath:[C] is particle-mesh part. It is usually chosen as latexmath:[\alpha = C/r_c], where
a postive constant. This choice of Green's function corresponds to Gaussian shaped screening latexmath:[r_c] is the cut-off or interaction radius and latexmath:[C] is
charges. In OPAL, the `P3M` solver uses this Green's function when the option is a postive constant. This choice of Green's function corresponds to Gaussian
specifed as `STANDARD`. shaped screening charges. In OPAL, the `P3M` solver uses this Green's function
when the option is specifed as `STANDARD`.
Another popular choice for latexmath:[f(r)] corresponds to truncated polynomials of different orders Another popular choice for latexmath:[f(r)] corresponds to truncated polynomials
as given in Table I of appendix B in <<bib.p3mhuenenberger>>. The lowest order function in the table corresponds to of different orders as given in Table I of appendix B in <<bib.p3mhuenenberger>>.
The lowest order function in the table corresponds to
[latexmath#eq-oneterm] [latexmath#eq-p3mLowFunc]
++++ ++++
f(r) = \frac{\xi(3 - \xi^2)}{2} f(r) = \frac{\xi(3 - \xi^2)}{2}
++++ ++++
where latexmath:[\xi = r/r_c]. We use the integrated version of this Green's function when we specify the option where latexmath:[\xi = r/r_c]. We use the integrated version of this Green's
for Green's function as `INTEGRATED` in the `P3M` solver in OPAL. The reason to use this one instead of the integrated function when we specify the option for Green's function as `INTEGRATED` in the
version of the standard Green's function described before is the availability of a closed form expression when performing `P3M` solver in OPAL. The reason to use this one instead of the integrated
the integration. version of the standard Green's function described before is the availability
of a closed form expression when performing the integration.
[[sec.fieldsolvers.P3M.use]] [[sec.fieldsolvers.P3M.use]]
==== Use of latexmath:[P^3M] solver ==== Use of latexmath:[P^3M] solver
At the moment, the `P3M` solver is only available in _OPAL-T_ when emission is not active. It uses `OPEN` At the moment, the `P3M` solver is only available in _OPAL-T_ when emission
boundary conditions. The interaction splitting parameter latexmath:[\alpha] is used only for the `STANDARD` is not active. It uses `OPEN` boundary conditions. The interaction splitting
Green's function option. We can specify the solver in the input file as follows parameter latexmath:[\alpha] is used only for the `STANDARD` Green's function
option. We can specify the solver in the input file as follows
[source] [source]
---- ----
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment