Advection Field finder
The operator implemented here is a previous step to the advection operator. It computes the advection field along the axes in the physical domain or the axes in the logical domain.
Currently, the implemented case is:
- Guiding centre equations system.
Guiding centre case
The studied equation system is of the following type :
with \(\rho\) the density, \(\phi\) the electrostatic potential and \(E\) the electrical field.
The AdvectionFieldFinder computes the advection field \(A\) from the electrical field \(\phi\) returned by the PolarSplineFEMPoissonLikeSolver.
It has two types of operator()
:
- one returning the advection field expressed on the vectors \((e_x, e_y)\) of the physical domain: \(A = A_x e_x + A_y e_y\)
- and another returning the advection field expressed on the vectors \((e^r, e^\theta)\) of the contravariant basis on the logical domain: \(A = A^r e_r + A^\theta e_\theta\).
The PolarSplineFEMPoissonLikeSolver can return the solution \(\phi\) of the PDE under two forms:
- a Field of values of the solution on the mesh points of the grid;
- a PolarSplineMem representation of the solution.
The AdvectionFieldFinder can handle as input the two forms. If a Field is given as input, it computes the spline representation (on the cross-product of two 1D bases) using a SplineBuilder2D. The spline representation is needed to compute the derivatives of the function \(\phi\). If the PolarSplineMem representation is given as input, it can directly compute the derivatives of the function \(\phi\).
Once the advection field computed, it is given as input to the BslAdvectionRTheta operator to advect the density \(\rho\) function. The BslAdvectionRTheta operator can handle the advection with an advection field along \((x,y)\) and with an advection field along \((r,\theta)\). But as the BslAdvectionRTheta operator advects in the physical domain, it is recommended to work with the advection field along \((x,y)\).
Advection field along the physical domain axis
Thanks to the spline representation, the derivatives \(\partial_r \phi\) and \(\partial_\theta \phi\) are computed. The computation of the electrical field can be ill-defined around the O-point, so we treat this area separately.
- If \(r > \varepsilon\), we use
with \(J\) the Jacobian matrix of the coordinate transformation (mapping) \(\mathcal{F}: (r,\theta)\mapsto(x,y)\) and G the tensor metric of the contravariant basis of the curvilinear coordinates \((r,\theta)\). Then the electric field is given by
and the advection field in the basis \((e_x, e_y)\) by
- If \(r \leq \varepsilon\), we linearise. The method is detailed in Zoni et al. (2019) 1. We use only the derivatives along \(r\) at two linearly independent directions of \(\theta\) : \(\theta_1\) and \(\theta_2\)
From these equations, we deduce the (unique) values of \(\partial_x\phi\) and \(\partial_y\phi\) at \((x,y) = (0,0)\),
Then we compute \(E\) at \((x,y) = (0,0)\) and \((x,y) = \mathcal{F}(\varepsilon,\theta)\) \(\forall \theta\) (for \(\varepsilon\neq 0\), we use the Jacobian matrix as previously) and we linearise
As previously, we compute the advection field by
(In the code, we chose \(\theta_1 = \frac{\pi}{4}\) and \(\theta_2 = - \frac{\pi}{4}\), and \(\varepsilon = 10^{-12}\).)
Advection field along the logical domain axis
Firstly, the derivatives \(\partial_r \phi\) and \(\partial_\theta \phi\) are also computed here.
General coordinates system
- In a general coordinate system, the gradient of a scalar function in the logical domain is given in the covariant basis by
with
- \(J\) the Jacobian matrix associated with the mapping function of the system \(\mathcal{F}:(q_1,..., q_N)\mapsto(x_1, ..., x_N)\),
- and \(b^j\) the unnormalised local covariant vectors.
In 2D with \((q_1, q_2) = (r,\theta)\) and \((x_1, x_2) = (x,y)\), it can be rewritten as the following matrix system
With the composants linked by the following relation,
Application to the advection field
The gradient is expressed in the covariant basis. We express the advection field in the contravariant basis to use the nice property \(e_r\cdot e^r = 1\) and \(e_\theta\cdot e^\theta = 1\).
- In the contravariant basis \((e_r, e_\theta)\), we compute the electric field,
with \(G^{-1}\) the inverse metric tensor.
Then the advection field is given by
with in contravariant basis,
So,
with \(J_{ij}\) the elements of the matrix J.
Warning, the matrix \(G^{-1}\) can be ill-defined for \(r = 0\).
Example: circular mapping:
In the code, the O-point is differently treated. The domain is split between a domain without the O-point (\((0,\theta), \forall \theta\)) and the domain containing only the O-point. For the first domain, we compute the advection field along the logical axis as explain previously. On the second domain, we compute the unique value of the advection field along the physical axis using the linearisation done in the Advection field along the physical domain axis section.
Contents
- advection_field_rtheta.hpp : containing AdvectionFieldFinder with the advection field computation for the guiding centre simulation.
References
-
Edoardo Zoni, Yaman Güçlü, "Solving hyperbolic-elliptic problems on singular mapped disk-like domains with the method of characteristics and spline finite elements", https://doi.org/10.1016/j.jcp.2019.108889, Journal of Computational Physics, 2019. ↩