OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
LF2.hpp
Go to the documentation of this file.
1 //
2 // Class LF2
3 // Second order Leap-Frog time integrator
4 //
5 // Copyright (c) 2008 - 2020, Paul Scherrer Institut, Villigen PSI, Switzerland
6 // All rights reserved
7 //
8 // This file is part of OPAL.
9 //
10 // OPAL is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
17 //
18 #include "BorisPusher.h"
19 
20 template <typename FieldFunction, typename ... Arguments>
22  const size_t& i,
23  const double& t,
24  const double dt,
25  Arguments& ... args) const
26 {
27  bool flagNoDeletion = true;
28 
29  // push for first LF2 half step
30  push_m(bunch->R[i], bunch->P[i], 0.5 * dt * 1.0e-9); // ns --> s
31 
32  flagNoDeletion = kick_m(bunch, i, t, dt * 1.0e-9, args ...);
33 
34  // push for second LF2 half step
35  push_m(bunch->R[i], bunch->P[i], 0.5 * dt * 1.0e-9); // ns --> s
36 
37  return flagNoDeletion;
38 }
39 
40 
41 template <typename FieldFunction, typename ... Arguments>
43  const double& h) const
44 {
45  double const gamma = sqrt(1.0 + dot(P, P));
46  double const c_gamma = Physics::c / gamma;
47  Vector_t const v = P * c_gamma;
48  R += h * v;
49 }
50 
51 
52 template <typename FieldFunction, typename ... Arguments>
54  const double& t, const double& h,
55  Arguments& ... args) const
56 {
57  Vector_t externalE = Vector_t(0.0, 0.0, 0.0);
58  Vector_t externalB = Vector_t(0.0, 0.0, 0.0);
59 
60  bool outOfBound = this->fieldfunc_m(t, i, externalE, externalB, args ...);
61 
62  if ( outOfBound )
63  return false;
64 
65 
66  double const q = bunch->Q[0] / Physics::q_e; // For now all particles have the same charge
67  double const M = bunch->M[0] * 1.0e9; // For now all particles have the same rest energy
68 
69  BorisPusher pusher;
70 
71  pusher.kick(bunch->R[i], bunch->P[i],
72  externalE, externalB,
73  h, M, q);
74 
75  return true;
76 }
Tps< T > sqrt(const Tps< T > &x)
Square root.
Definition: TpsMath.h:91
double dot(const Vector3D &lhs, const Vector3D &rhs)
Vector dot product.
Definition: Vector3D.cpp:118
constexpr double q_e
The elementary charge in As.
Definition: Physics.h:75
constexpr double c
The velocity of light in m/s.
Definition: Physics.h:51
ParticlePos_t & R
ParticleAttrib< double > M
ParticleAttrib< Vector_t > P
ParticleAttrib< double > Q
void kick(const Vector_t &R, Vector_t &P, const Vector_t &Ef, const Vector_t &Bf, const double &dt) const
Definition: BorisPusher.h:65
bool doAdvance_m(PartBunchBase< double, 3 > *bunch, const size_t &i, const double &t, const double dt, Arguments &... args) const
Definition: LF2.hpp:21
bool kick_m(PartBunchBase< double, 3 > *bunch, const size_t &i, const double &t, const double &h, Arguments &... args) const
Definition: LF2.hpp:53
void push_m(Vector_t &R, const Vector_t &P, const double &h) const
Definition: LF2.hpp:42
Vektor< double, 3 > Vector_t
Definition: Vektor.h:6