10#ifndef IMPACTX_EXACTSBEND_H
11#define IMPACTX_EXACTSBEND_H
43 static constexpr auto type =
"ExactSbend";
71 amrex::ParticleReal
ds,
72 amrex::ParticleReal phi,
73 amrex::ParticleReal B,
74 amrex::ParticleReal
dx = 0,
75 amrex::ParticleReal
dy = 0,
76 amrex::ParticleReal rotation_degree = 0,
80 std::optional<std::string>
name = std::nullopt
94 using namespace amrex::literals;
100 using BeamOptic::operator();
112 using namespace amrex::literals;
115 Alignment::compute_constants(refpart);
147 template<
typename T_Real=amrex::ParticleReal,
typename T_IdCpu=u
int64_t>
160 using namespace amrex::literals;
169 T_Real
const xout = x;
170 T_Real
const yout = y;
171 T_Real
const tout =
t;
181 T_Real
const inv_pzden = 1_prt / sqrt(
204 T_Real
const pperp2 = powi<2>(pt)-2.0_prt *
m_ibeta * pt - powi<2>(py)+1.0_prt;
205 T_Real
const px2 = powi<2>(px);
207 auto const mask = pperp2 <= px2;
210 T_Real
const pperp = sqrt(pperp2);
211 T_Real
const pzi = sqrt(powi<2>(pperp) - powi<2>(px));
212 T_Real
const rho =
m_rc + xout;
220 T_Real
const px2f = powi<2>(pxout);
222 auto const mask2 = pperp2 <= px2f;
225 T_Real
const pzf = sqrt(powi<2>(pperp)-powi<2>(pxout));
226 T_Real
const theta =
m_slice_phi + asin(px/pperp) - asin(pxout/pperp);
230 y = yout + theta *
m_rc * py;
255 using namespace amrex::literals;
259 amrex::ParticleReal
const x = refpart.x;
260 amrex::ParticleReal
const px = refpart.px;
261 amrex::ParticleReal
const y = refpart.y;
262 amrex::ParticleReal
const py = refpart.py;
263 amrex::ParticleReal
const z = refpart.z;
264 amrex::ParticleReal
const pz = refpart.pz;
265 amrex::ParticleReal
const t = refpart.t;
266 amrex::ParticleReal
const pt = refpart.pt;
267 amrex::ParticleReal
const s = refpart.s;
270 amrex::ParticleReal
const slice_ds =
m_ds /
nslice();
275 amrex::ParticleReal
const step = slice_ds /std::sqrt(powi<2>(pt)-1.0_prt);
276 refpart.x = x + step*px;
277 refpart.y = y + step*py;
278 refpart.z = z + step*pz;
279 refpart.t =
t - step*pt;
284 amrex::ParticleReal
const rc = (
m_B != 0_prt) ? refpart.rigidity_Tm() /
m_B :
m_ds /
m_phi;
285 amrex::ParticleReal
const B = refpart.beta_gamma() /
rc;
286 amrex::ParticleReal
const bend_sign =
m_ds *
rc / std::abs(
m_ds *
rc);
287 amrex::ParticleReal
const theta = bend_sign * std::abs(
m_phi) /
nslice();
293 refpart.px = px*cos_theta - pz*sin_theta;
295 refpart.pz = pz*cos_theta + px*sin_theta;
298 refpart.x = x + (refpart.pz - pz)/B;
299 refpart.y = y + (theta/B)*py;
300 refpart.z = z - (refpart.px - px)/B;
301 refpart.t =
t - (theta/B)*pt;
306 refpart.s =
s + slice_ds;
310 using LinearTransport::operator();
321 throw std::runtime_error(std::string(
type) +
": Envelope tracking is not yet implemented!");
#define AMREX_FORCE_INLINE
#define AMREX_GPU_HOST_DEVICE
T_ParticleType ParticleType
static constexpr amrex::Real pi
__host__ __device__ std::pair< double, double > sincos(double x)
constexpr T powi(T x) noexcept
@ 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
__host__ __device__ void make_invalid() const noexcept
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 rigidity_Tm() const
Definition ReferenceParticle.H:203
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal beta() const
Definition ReferenceParticle.H:94
amrex::ParticleReal m_rc
Definition ExactSbend.H:331
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition ExactSbend.H:319
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal rc(RefPart const &refpart) const
Definition ExactSbend.H:92
amrex::ParticleReal m_cos_phi
Definition ExactSbend.H:331
amrex::ParticleReal m_slice_ds
magnetic field in T
Definition ExactSbend.H:331
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 ExactSbend.H:149
amrex::ParticleReal m_sin_phi
Definition ExactSbend.H:331
ImpactXParticleContainer::ParticleType PType
Definition ExactSbend.H:45
ExactSbend(amrex::ParticleReal ds, amrex::ParticleReal phi, amrex::ParticleReal B, 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 ExactSbend.H:70
static constexpr amrex::ParticleReal degree2rad
Definition ExactSbend.H:44
amrex::ParticleReal m_ibetagam2
Definition ExactSbend.H:331
amrex::ParticleReal m_ibeta
Definition ExactSbend.H:331
void compute_constants(RefPart const &refpart)
Definition ExactSbend.H:110
amrex::ParticleReal m_slice_phi
Definition ExactSbend.H:331
static constexpr auto type
Definition ExactSbend.H:43
amrex::ParticleReal m_B
bend angle in radians
Definition ExactSbend.H:326
amrex::ParticleReal m_phi
Definition ExactSbend.H:325
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
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
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