ImpactX
Loading...
Searching...
No Matches
ExactDrift.H
Go to the documentation of this file.
1/* Copyright 2022-2023 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_EXACTDRIFT_H
11#define IMPACTX_EXACTDRIFT_H
12
14#include "mixin/alignment.H"
15#include "mixin/pipeaperture.H"
16#include "mixin/beamoptic.H"
17#include "mixin/thick.H"
19#include "mixin/named.H"
20#include "mixin/nofinalize.H"
21
22#include <AMReX_Extension.H>
23#include <AMReX_Math.H>
24#include <AMReX_REAL.H>
25#include <AMReX_SIMD.H>
26
27#include <cmath>
28#include <stdexcept>
29
30
31namespace impactx::elements
32{
34 : public mixin::Named,
35 public mixin::BeamOptic<ExactDrift>,
36 public mixin::LinearTransport<ExactDrift>,
37 public mixin::Thick,
38 public mixin::Alignment,
40 public mixin::NoFinalize,
41 public amrex::simd::Vectorized<amrex::simd::native_simd_size_particlereal>
42 {
43 static constexpr auto type = "ExactDrift";
45
58 amrex::ParticleReal ds,
59 amrex::ParticleReal dx = 0,
60 amrex::ParticleReal dy = 0,
61 amrex::ParticleReal rotation_degree = 0,
62 amrex::ParticleReal aperture_x = 0,
63 amrex::ParticleReal aperture_y = 0,
64 int nslice = 1,
65 std::optional<std::string> name = std::nullopt
66 )
67 : Named(std::move(name)),
68 Thick(ds, nslice),
69 Alignment(dx, dy, rotation_degree),
71 {
72 }
73
75 using BeamOptic::operator();
76
84 void compute_constants (RefPart const & refpart)
85 {
86 using namespace amrex::literals; // for _rt and _prt
88
89 Alignment::compute_constants(refpart);
90
91 // length of the current slice
93
94 // access reference particle values to find beta, 1/(beta*gamma)**2
95 m_ibeta = 1_prt / refpart.beta();
96 m_ibetagam2 = 1_prt / powi<2>(refpart.beta_gamma());
97 }
98
113 template<typename T_Real=amrex::ParticleReal, typename T_IdCpu=uint64_t>
116 T_Real & AMREX_RESTRICT x,
117 T_Real & AMREX_RESTRICT y,
118 T_Real & AMREX_RESTRICT t,
119 T_Real & AMREX_RESTRICT px,
120 T_Real & AMREX_RESTRICT py,
121 T_Real & AMREX_RESTRICT pt,
122 T_IdCpu & AMREX_RESTRICT idcpu,
123 [[maybe_unused]] RefPart const & AMREX_RESTRICT refpart
124 ) const
125 {
126 using namespace amrex::literals; // for _rt and _prt
127 using namespace std; // for cmath(float)
128 using amrex::Math::powi;
129
130 // shift due to alignment errors of the element
131 shift_in(x, y, px, py);
132
133 // initialize output values
134 T_Real const xout = x;
135 T_Real const yout = y;
136 T_Real const tout = t;
137
138 // initialize output values of momenta
139 T_Real const pxout = px;
140 T_Real const pyout = py;
141 T_Real const ptout = pt;
142
143 // compute the radical in the denominator (= pz):
144 T_Real const inv_pzden = 1_prt / sqrt(
145 powi<2>(pt - m_ibeta) -
147 powi<2>(px) -
148 powi<2>(py)
149 );
150
151 // advance position and momentum (exact drift)
152 x = xout + m_slice_ds * px * inv_pzden;
153 // pxout = px;
154 y = yout + m_slice_ds * py * inv_pzden;
155 // pyout = py;
156 t = tout - m_slice_ds * (m_ibeta + (pt - m_ibeta) * inv_pzden);
157 // ptout = pt;
158
159 // assign updated momenta
160 px = pxout;
161 py = pyout;
162 pt = ptout;
163
164 // apply transverse aperture
165 apply_aperture(x, y, idcpu);
166
167 // undo shift due to alignment errors of the element
168 shift_out(x, y, px, py);
169 }
170
176 void operator() (RefPart & AMREX_RESTRICT refpart) const
177 {
178 using namespace amrex::literals; // for _rt and _prt
179 using amrex::Math::powi;
180
181 // assign input reference particle values
182 amrex::ParticleReal const x = refpart.x;
183 amrex::ParticleReal const px = refpart.px;
184 amrex::ParticleReal const y = refpart.y;
185 amrex::ParticleReal const py = refpart.py;
186 amrex::ParticleReal const z = refpart.z;
187 amrex::ParticleReal const pz = refpart.pz;
188 amrex::ParticleReal const t = refpart.t;
189 amrex::ParticleReal const pt = refpart.pt;
190 amrex::ParticleReal const s = refpart.s;
191
192 // length of the current slice
193 amrex::ParticleReal const slice_ds = m_ds / nslice();
194
195 // assign intermediate parameter
196 amrex::ParticleReal const step = slice_ds /std::sqrt(powi<2>(pt)-1.0_prt);
197
198 // advance position and momentum (drift)
199 refpart.x = x + step*px;
200 refpart.y = y + step*py;
201 refpart.z = z + step*pz;
202 refpart.t = t - step*pt;
203
204 // advance integrated path length
205 refpart.s = s + slice_ds;
206 }
207
209 using LinearTransport::operator();
210
217 Map6x6
218 transport_map ([[maybe_unused]] RefPart const & AMREX_RESTRICT refpart) const
219 {
220 throw std::runtime_error(std::string(type) + ": Envelope tracking is not yet implemented!");
221 return Map6x6::Identity();
222 }
223
224 private:
225 // constants that are independent of the individually tracked particle,
226 // see: compute_constants() to refresh
227 amrex::ParticleReal m_slice_ds;
228 amrex::ParticleReal m_ibeta, m_ibetagam2;
229 };
230
231} // namespace impactx
232
233#endif // IMPACTX_EXACTDRIFT_H
#define AMREX_FORCE_INLINE
#define AMREX_RESTRICT
#define AMREX_GPU_HOST_DEVICE
#define AMREX_GPU_HOST
constexpr T powi(T x) noexcept
Definition All.H:54
@ s
fixed s as the independent variable
Definition ImpactXParticleContainer.H:37
@ 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:31
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal beta_gamma() const
Definition ReferenceParticle.H:110
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal beta() const
Definition ReferenceParticle.H:94
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void operator()(T_Real &AMREX_RESTRICT x, T_Real &AMREX_RESTRICT y, T_Real &AMREX_RESTRICT t, T_Real &AMREX_RESTRICT px, T_Real &AMREX_RESTRICT py, T_Real &AMREX_RESTRICT pt, T_IdCpu &AMREX_RESTRICT idcpu, RefPart const &AMREX_RESTRICT refpart) const
Definition ExactDrift.H:115
static constexpr auto type
Definition ExactDrift.H:43
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition ExactDrift.H:218
amrex::ParticleReal m_slice_ds
Definition ExactDrift.H:227
ImpactXParticleContainer::ParticleType PType
Definition ExactDrift.H:44
void compute_constants(RefPart const &refpart)
Definition ExactDrift.H:84
amrex::ParticleReal m_ibetagam2
Definition ExactDrift.H:228
amrex::ParticleReal m_ibeta
m_ds / nslice();
Definition ExactDrift.H:228
ExactDrift(amrex::ParticleReal ds, amrex::ParticleReal dx=0, amrex::ParticleReal dy=0, amrex::ParticleReal rotation_degree=0, amrex::ParticleReal aperture_x=0, amrex::ParticleReal aperture_y=0, int nslice=1, std::optional< std::string > name=std::nullopt)
Definition ExactDrift.H:57
Definition alignment.H:27
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void shift_out(T_Real &AMREX_RESTRICT x, T_Real &AMREX_RESTRICT y, T_Real &AMREX_RESTRICT px, T_Real &AMREX_RESTRICT py) const
Definition alignment.H:109
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal dy() const
Definition alignment.H:146
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal dx() const
Definition alignment.H:136
Alignment(amrex::ParticleReal dx, amrex::ParticleReal dy, amrex::ParticleReal rotation_degree)
Definition alignment.H:36
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void shift_in(T_Real &AMREX_RESTRICT x, T_Real &AMREX_RESTRICT y, T_Real &AMREX_RESTRICT px, T_Real &AMREX_RESTRICT py) const
Definition alignment.H:78
Definition beamoptic.H:219
Definition lineartransport.H:29
Definition named.H:29
AMREX_GPU_HOST Named(std::optional< std::string > name)
Definition named.H:57
AMREX_FORCE_INLINE std::string name() const
Definition named.H:122
Definition nofinalize.H:22
Definition pipeaperture.H:26
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void apply_aperture(T_Real &AMREX_RESTRICT x, T_Real &AMREX_RESTRICT y, T_IdCpu &AMREX_RESTRICT idcpu) const
Definition pipeaperture.H:59
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal aperture_x() const
Definition pipeaperture.H:90
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal aperture_y() const
Definition pipeaperture.H:101
PipeAperture(amrex::ParticleReal aperture_x, amrex::ParticleReal aperture_y)
Definition pipeaperture.H:32
Definition thick.H:24
Thick(amrex::ParticleReal ds, int nslice)
Definition thick.H:30
amrex::ParticleReal m_ds
Definition thick.H:58
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal ds() const
Definition thick.H:53
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE int nslice() const
Definition thick.H:43