OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
RK4.h
Go to the documentation of this file.
1 //
2 // Class RK4
3 // Fourth order Runge-Kutta 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 #ifndef RK4_H
19 #define RK4_H
20 
21 #include "Stepper.h"
22 #include "Physics/Physics.h"
23 
25 template <typename FieldFunction, typename ... Arguments>
26 class RK4 : public Stepper<FieldFunction, Arguments...> {
27 
28 public:
29 
30  RK4(const FieldFunction& fieldfunc) : Stepper<FieldFunction, Arguments ...>(fieldfunc) { }
31 
32 private:
34  const size_t& i,
35  const double& t,
36  const double dt,
37  Arguments& ... args) const;
38 
50  double *y,
51  const double& t,
52  double* yp,
53  const size_t& i,
54  Arguments& ... args) const;
55 
56 
57  void copyTo(const Vector_t& R, const Vector_t& P, double* x) const;
58 
59  void copyFrom(Vector_t& R, Vector_t& P, double* x) const;
60 
61  const double c_mmtns = Physics::c * 1.0e-6; // m/s --> mm/ns
62  const double c_mtns = Physics::c * 1.0e-9; // m/s --> m/ns
63  const double mass_coeff = 1.0e18 * Physics::q_e / Physics::c / Physics::c; // from GeV/c^2 to basic unit: GV*C*s^2/m^2
64 };
65 
66 #include "RK4.hpp"
67 
68 #endif
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
4-th order Runnge-Kutta stepper
Definition: RK4.h:26
bool derivate_m(PartBunchBase< double, 3 > *bunch, double *y, const double &t, double *yp, const size_t &i, Arguments &... args) const
Definition: RK4.hpp:88
const double c_mmtns
Definition: RK4.h:61
RK4(const FieldFunction &fieldfunc)
Definition: RK4.h:30
const double c_mtns
Definition: RK4.h:62
const double mass_coeff
Definition: RK4.h:63
bool doAdvance_m(PartBunchBase< double, 3 > *bunch, const size_t &i, const double &t, const double dt, Arguments &... args) const
Definition: RK4.hpp:20
void copyFrom(Vector_t &R, Vector_t &P, double *x) const
Definition: RK4.hpp:145
void copyTo(const Vector_t &R, const Vector_t &P, double *x) const
Definition: RK4.hpp:133