10#ifndef IMPACTX_ELEMENT_LINEAR_MAP_H
11#define IMPACTX_ELEMENT_LINEAR_MAP_H
39 static constexpr auto type =
"LinearMap";
56 amrex::ParticleReal
ds = 0,
57 amrex::ParticleReal
dx = 0,
58 amrex::ParticleReal
dy = 0,
59 amrex::ParticleReal rotation_degree = 0,
60 std::optional<std::string>
name = std::nullopt
70 using BeamOptic::operator();
84 template<
typename T_Real=amrex::ParticleReal,
typename T_IdCpu=u
int64_t>
97 using namespace amrex::literals;
131 using namespace amrex::literals;
135 amrex::ParticleReal
const x = refpart.x;
136 amrex::ParticleReal
const px = refpart.px;
137 amrex::ParticleReal
const y = refpart.y;
138 amrex::ParticleReal
const py = refpart.py;
139 amrex::ParticleReal
const z = refpart.z;
140 amrex::ParticleReal
const pz = refpart.pz;
141 amrex::ParticleReal
const t = refpart.t;
142 amrex::ParticleReal
const pt = refpart.pt;
143 amrex::ParticleReal
const s = refpart.s;
146 amrex::ParticleReal
const slice_ds =
m_ds /
nslice();
149 amrex::ParticleReal
const step = slice_ds / std::sqrt(powi<2>(pt)-1.0_prt);
152 refpart.x = x + step*px;
153 refpart.y = y + step*py;
154 refpart.z = z + step*pz;
155 refpart.t =
t - step*pt;
158 refpart.s =
s + slice_ds;
178 amrex::ParticleReal
ds ()
const
184 using LinearTransport::operator();
#define AMREX_FORCE_INLINE
#define AMREX_GPU_HOST_DEVICE
T_ParticleType ParticleType
constexpr T powi(T x) noexcept
SmallMatrix< T, N, 1, Order::F, StartIndex > SmallVector
@ 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
Map6x6 m_transport_map
Definition LinearMap.H:201
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition LinearMap.H:193
amrex::ParticleReal m_ds
Definition LinearMap.H:202
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::ParticleReal ds() const
Definition LinearMap.H:178
static constexpr auto type
Definition LinearMap.H:39
ImpactXParticleContainer::ParticleType PType
Definition LinearMap.H:40
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 LinearMap.H:86
LinearMap(Map6x6 const &R, amrex::ParticleReal ds=0, amrex::ParticleReal dx=0, amrex::ParticleReal dy=0, amrex::ParticleReal rotation_degree=0, std::optional< std::string > name=std::nullopt)
Definition LinearMap.H:54
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE int nslice() const
Definition LinearMap.H:168
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