ImpactX
Loading...
Searching...
No Matches
TaperedPL.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_TAPEREDPL_H
11#define IMPACTX_TAPEREDPL_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
29
30namespace impactx::elements
31{
32 struct TaperedPL
33 : public mixin::Named,
34 public mixin::BeamOptic<TaperedPL>,
35 public mixin::LinearTransport<TaperedPL>,
36 public mixin::Thin,
37 public mixin::Alignment,
39 // At least on Intel AVX512, there is a small overhead to vectorize this element, see
40 // https://github.com/BLAST-ImpactX/impactx/pull/1002
41 // public amrex::simd::Vectorized<amrex::simd::native_simd_size_particlereal>
42 {
43 static constexpr auto type = "TaperedPL";
45
62 amrex::ParticleReal k,
63 amrex::ParticleReal taper,
64 int unit,
65 amrex::ParticleReal dx = 0,
66 amrex::ParticleReal dy = 0,
67 amrex::ParticleReal rotation_degree = 0,
68 std::optional<std::string> name = std::nullopt
69 )
70 : Named(std::move(name)),
71 Alignment(dx, dy, rotation_degree),
72 m_k(k), m_taper(taper), m_unit(unit)
73 {
74 }
75
77 using BeamOptic::operator();
78
91 template<typename T_Real=amrex::ParticleReal, typename T_IdCpu=uint64_t>
94 T_Real & AMREX_RESTRICT x,
95 T_Real & AMREX_RESTRICT y,
96 T_Real & AMREX_RESTRICT t,
97 T_Real & AMREX_RESTRICT px,
98 T_Real & AMREX_RESTRICT py,
99 T_Real & AMREX_RESTRICT pt,
100 [[maybe_unused]] T_IdCpu & AMREX_RESTRICT idcpu,
101 RefPart const & AMREX_RESTRICT refpart
102 ) const
103 {
104 using namespace amrex::literals; // for _rt and _prt
105 using amrex::Math::powi;
106 using namespace std; // for cmath(float)
107
108 // shift due to alignment errors of the element
109 shift_in(x, y, px, py);
110
111 // normalize focusing strength units to MAD-X convention if needed
112 amrex::ParticleReal g = m_k;
113 if (m_unit == 1) {
114 g = m_k / refpart.rigidity_Tm();
115 }
116
117 // initialize output values
118 T_Real xout = x;
119 T_Real yout = y;
120 T_Real tout = t;
121 T_Real pxout = px;
122 T_Real pyout = py;
123 T_Real ptout = pt;
124
125 // advance position and momentum
126 xout = x;
127 pxout = px - g * ( x + m_taper*0.5_prt * (powi<2>(x) + powi<2>(y)) );
128
129 yout = y;
130 pyout = py - g * ( y + m_taper * x * y );
131
132 tout = t;
133 ptout = pt;
134
135 // assign updated values
136 x = xout;
137 y = yout;
138 t = tout;
139 px = pxout;
140 py = pyout;
141 pt = ptout;
142
143 // undo shift due to alignment errors of the element
144 shift_out(x, y, px, py);
145 }
146
148 using Thin::operator();
149
151 using LinearTransport::operator();
152
159 Map6x6
160 transport_map ([[maybe_unused]] RefPart const & AMREX_RESTRICT refpart) const
161 {
162 throw std::runtime_error(std::string(type) + ": Envelope tracking is not yet implemented!");
163 return Map6x6::Identity();
164 }
165
166 amrex::ParticleReal m_k;
167 amrex::ParticleReal m_taper;
168 int m_unit;
169 };
170
171} // namespace impactx
172
173#endif // IMPACTX_TAPEREDPL_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
@ 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::ParticleReal m_k
Definition TaperedPL.H:166
static constexpr auto type
Definition TaperedPL.H:43
ImpactXParticleContainer::ParticleType PType
Definition TaperedPL.H:44
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition TaperedPL.H:160
TaperedPL(amrex::ParticleReal k, amrex::ParticleReal taper, int unit, amrex::ParticleReal dx=0, amrex::ParticleReal dy=0, amrex::ParticleReal rotation_degree=0, std::optional< std::string > name=std::nullopt)
Definition TaperedPL.H:61
amrex::ParticleReal m_taper
linear focusing strength (field gradient)
Definition TaperedPL.H:167
int m_unit
horizontal taper parameter
Definition TaperedPL.H:168
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 TaperedPL.H:93
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 thin.H:24