ImpactX
Loading...
Searching...
No Matches
Buncher.H
Go to the documentation of this file.
1/* Copyright 2022-2026 The Regents of the University of California, through Lawrence
2 * Berkeley National Laboratory (subject to receipt of any required
3 * approvals from the U.S. Dept. of Energy). All rights reserved.
4 *
5 * This file is part of ImpactX.
6 *
7 * Authors: Chad Mitchell, Axel Huebl
8 * License: BSD-3-Clause-LBNL
9 */
10#ifndef IMPACTX_BUNCHER_H
11#define IMPACTX_BUNCHER_H
12
14#include "mixin/alignment.H"
15#include "mixin/beamoptic.H"
16#include "mixin/thin.H"
18#include "mixin/named.H"
19#include "mixin/nofinalize.H"
20
21#include <AMReX_Extension.H>
22#include <AMReX_Math.H>
23#include <AMReX_REAL.H>
24#include <AMReX_SIMD.H>
25
26#include <cmath>
27#include <stdexcept>
28
29namespace impactx::elements
30{
31 struct Buncher
32 : public mixin::Named,
33 public mixin::BeamOptic<Buncher>,
34 public mixin::LinearTransport<Buncher>,
35 public mixin::Thin,
36 public mixin::Alignment,
38 // At least on Intel AVX512, there is a small overhead to vectorize this element, see
39 // https://github.com/BLAST-ImpactX/impactx/pull/1002
40 // public amrex::simd::Vectorized<amrex::simd::native_simd_size_particlereal>
41 {
42 static constexpr auto type = "Buncher";
44
60 std::optional<std::string> name = DEFAULT_name
61 )
62 : Named(std::move(name)),
63 Alignment(dx, dy, rotation_degree),
64 m_V(V), m_k(k)
65 {
66 }
67
69 void reverse () { m_V = -m_V; }
70
72 using BeamOptic::operator();
73
81 void compute_constants (RefPart const & refpart)
82 {
83 using namespace amrex::literals; // for _rt and _prt
85
86 Alignment::compute_constants(refpart);
87
88 // find beta*gamma^2
89 amrex::ParticleReal const betgam2 = powi<2>(refpart.pt) - 1.0_prt;
90
91 m_neg_kV = -m_k * m_V;
92 m_kV_r2bg2 = -m_neg_kV / (2.0_prt * betgam2);
93 }
94
109 template<typename T_Real=amrex::ParticleReal, typename T_IdCpu=uint64_t>
112 T_Real const & AMREX_RESTRICT x,
113 T_Real const & AMREX_RESTRICT y,
114 T_Real const & AMREX_RESTRICT t,
115 T_Real & AMREX_RESTRICT px,
116 T_Real & AMREX_RESTRICT py,
117 T_Real & AMREX_RESTRICT pt,
118 [[maybe_unused]] T_IdCpu const & AMREX_RESTRICT idcpu,
119 [[maybe_unused]] RefPart const & AMREX_RESTRICT refpart
120 ) const
121 {
122 using namespace amrex::literals; // for _rt and _prt
123
124 // initialize output values of momenta
125 T_Real pxout = px;
126 T_Real pyout = py;
127 T_Real ptout = pt;
128
129 // advance position and momentum
130 // xout = x;
131 pxout = px + m_kV_r2bg2 * x;
132 // yout = y;
133 pyout = py + m_kV_r2bg2 * y;
134 // tout = t;
135 ptout = pt + m_neg_kV * t;
136
137 // assign updated momenta
138 px = pxout;
139 py = pyout;
140 pt = ptout;
141 }
142
144 using Thin::operator();
145
147 using LinearTransport::operator();
148
155 Map6x6
156 transport_map ([[maybe_unused]] RefPart const & AMREX_RESTRICT refpart) const
157 {
158 using namespace amrex::literals; // for _rt and _prt
159 using amrex::Math::powi;
160
161 // find beta*gamma^2
162 amrex::ParticleReal const betgam2 = powi<2>(refpart.pt) - 1.0_prt;
163
164 amrex::ParticleReal const neg_kV = -m_k * m_V;
165 amrex::ParticleReal const kV_r2bg2 = -neg_kV / (2.0_prt * betgam2);
166
167 // initialize linear map matrix elements
169
170 // off-identity matrix elements
171 R(2,1) = kV_r2bg2;
172 R(4,3) = kV_r2bg2;
173 R(6,5) = neg_kV;
174
175 // apply the transverse rotation (roll) alignment error
176 return rotate_aligned_map(R);
177 }
178
181
182 private:
183 // constants that are independent of the individually tracked particle,
184 // see: compute_constants() to refresh
187 };
188
189} // namespace impactx
190
192
193#endif // IMPACTX_BUNCHER_H
#define AMREX_FORCE_INLINE
#define AMREX_RESTRICT
#define AMREX_GPU_HOST_DEVICE
#define AMREX_GPU_HOST
#define IMPACTX_PUSH_EXTERN_TEMPLATE(ElementType)
Definition PushAll.H:78
amrex_particle_real ParticleReal
constexpr T powi(T x) noexcept
Definition All.H:55
@ t
fixed t as the independent variable
Definition ImpactXParticleContainer.H:38
amrex::SmallMatrix< amrex::ParticleReal, 6, 6, amrex::Order::F, 1 > Map6x6
Definition CovarianceMatrix.H:20
static constexpr __host__ __device__ SmallMatrix< T, NRows, NCols, ORDER, StartIndex > Identity() noexcept
Definition ReferenceParticle.H:33
amrex::ParticleReal pt
energy, normalized by rest energy
Definition ReferenceParticle.H:42
Definition Buncher.H:41
ImpactXParticleContainer::ParticleType PType
Definition Buncher.H:43
amrex::ParticleReal m_kV_r2bg2
-m_k*m_V
Definition Buncher.H:186
void reverse()
Definition Buncher.H:69
amrex::ParticleReal m_k
normalized (max) RF voltage drop.
Definition Buncher.H:180
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void operator()(T_Real const &AMREX_RESTRICT x, T_Real const &AMREX_RESTRICT y, T_Real const &AMREX_RESTRICT t, T_Real &AMREX_RESTRICT px, T_Real &AMREX_RESTRICT py, T_Real &AMREX_RESTRICT pt, T_IdCpu const &AMREX_RESTRICT idcpu, RefPart const &AMREX_RESTRICT refpart) const
Definition Buncher.H:111
Buncher(amrex::ParticleReal V, amrex::ParticleReal k, amrex::ParticleReal dx=DEFAULT_dx, amrex::ParticleReal dy=DEFAULT_dy, amrex::ParticleReal rotation_degree=DEFAULT_rotation_degree, std::optional< std::string > name=DEFAULT_name)
Definition Buncher.H:54
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition Buncher.H:156
static constexpr auto type
Definition Buncher.H:42
void compute_constants(RefPart const &refpart)
Definition Buncher.H:81
amrex::ParticleReal m_V
Definition Buncher.H:179
amrex::ParticleReal m_neg_kV
RF wavenumber in 1/m.
Definition Buncher.H:185
Definition alignment.H:29
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal dy() const
Definition alignment.H:193
static constexpr amrex::ParticleReal DEFAULT_dy
Definition alignment.H:34
static constexpr amrex::ParticleReal DEFAULT_dx
Definition alignment.H:33
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal dx() const
Definition alignment.H:183
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 rotate_aligned_map(Map6x6 const &R) const
Definition alignment.H:267
Alignment(amrex::ParticleReal dx, amrex::ParticleReal dy, amrex::ParticleReal rotation_degree)
Definition alignment.H:43
static constexpr amrex::ParticleReal DEFAULT_rotation_degree
Definition alignment.H:35
Definition beamoptic.H:567
Definition lineartransport.H:50
Definition named.H:29
static constexpr std::nullopt_t DEFAULT_name
Definition named.H:30
AMREX_GPU_HOST Named(std::optional< std::string > name)
Definition named.H:59
AMREX_FORCE_INLINE std::string name() const
Definition named.H:124
Definition nofinalize.H:22
Definition thin.H:24