OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
Degrader.cpp
Go to the documentation of this file.
1//
2// Class Degrader
3// Defines the abstract interface for a beam degrader.
4//
5// Copyright (c) 2000 - 2021, Paul Scherrer Institut, Villigen PSI, Switzerland
6// All rights reserved.
7//
8// This file is part of OPAL.
9//
10// OPAL is free software: you can redistribute it and/or modify
11// it under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// You should have received a copy of the GNU General Public License
16// along with OPAL. If not, see <https://www.gnu.org/licenses/>.
17//
19
22#include "Physics/Physics.h"
24#include "Utilities/Options.h"
25
26#include <memory>
27#include <string>
28
29extern Inform *gmsg;
30
31
33 Degrader("")
34{}
35
37 Component(right),
38 PosX_m(right.PosX_m),
39 PosY_m(right.PosY_m),
40 PosZ_m(right.PosZ_m),
41 MomentumX_m(right.MomentumX_m),
42 MomentumY_m(right.MomentumY_m),
43 MomentumZ_m(right.MomentumZ_m),
44 time_m(right.time_m),
45 id_m(right.id_m)
46{}
47
48Degrader::Degrader(const std::string& name):
50{}
51
53 if(online_m)
54 goOffline();
55}
56
57void Degrader::accept(BeamlineVisitor& visitor) const {
58 visitor.visitDegrader(*this);
59}
60
61inline bool Degrader::isInMaterial(double z) {
65 return ((z > 0.0) && (z <= getElementLength()));
66}
67
68bool Degrader::apply(const size_t& i, const double& t, Vector_t& /*E*/, Vector_t& /*B*/) {
69
70 const Vector_t& R = RefPartBunch_m->R[i];
71 const Vector_t& P = RefPartBunch_m->P[i];
72
73 if (isInMaterial(R(2))) {
74 //if particle was already marked as -1 (it means it should have gone into degrader but didn't)
75 //set the label to -2 (will not go into degrader and will be deleted when particles per core > 2)
76 if (RefPartBunch_m->Bin[i] < 0) {
77 RefPartBunch_m->Bin[i] = -2;
78 } else {
79 RefPartBunch_m->Bin[i] = -1;
80 }
81 const double& dt = RefPartBunch_m->dt[i];
82 const double recpgamma = Physics::c * dt / std::sqrt(1.0 + dot(P, P));
83 double frac = -R(2) / (P(2) * recpgamma);
84 PosX_m.push_back(R(0));
85 PosY_m.push_back(R(1));
86 PosZ_m.push_back(R(2));
87 MomentumX_m.push_back(P(0));
88 MomentumY_m.push_back(P(1));
89 MomentumZ_m.push_back(P(2));
90 time_m.push_back(t + frac * dt);
91 id_m.push_back(RefPartBunch_m->ID[i]);
92 }
93
94 return false;
95}
96
98 const Vector_t& P,
99 const double& /*t*/,
100 Vector_t& E,
101 Vector_t& /*B*/) {
102 if (!isInMaterial(R(2))) return false;
103
104 Vector_t updatedP = P;
106 double deltaP = euclidean_norm(updatedP) - euclidean_norm(P);
107 E(2) += deltaP * RefPartBunch_m->getM() / (RefPartBunch_m->getdT() * RefPartBunch_m->getQ() * Physics::c);
108
109 return isDead;
110}
111
112void Degrader::initialise(PartBunchBase<double, 3>* bunch, double& startField, double& endField) {
113 initialise(bunch);
114 endField = startField + getElementLength();
115}
116
118 RefPartBunch_m = bunch;
119}
120
122 *gmsg << "* Finalize degrader " << getName() << endl;
123}
124
125void Degrader::goOnline(const double&) {
126 Inform msg("Degrader::goOnline ");
127
128 int maximumSize = (int)(1.1 * RefPartBunch_m->getLocalNum());
129
130 PosX_m.reserve(maximumSize);
131 PosY_m.reserve(maximumSize);
132 PosZ_m.reserve(maximumSize);
133 MomentumX_m.reserve(maximumSize);
134 MomentumY_m.reserve(maximumSize);
135 MomentumZ_m.reserve(maximumSize);
136 time_m.reserve(maximumSize);
137 id_m.reserve(maximumSize);
138 online_m = true;
139}
140
142 Inform msg("Degrader::goOffline ");
143 online_m = false;
144 msg << " done..." << endl;
145}
146
147bool Degrader::bends() const {
148 return false;
149}
150
151void Degrader::getDimensions(double& zBegin, double& zEnd) const {
152 zBegin = 0.0;
153 zEnd = getElementLength();
154}
155
158}
double dot(const Vector3D &lhs, const Vector3D &rhs)
Vector dot product.
Definition: Vector3D.cpp:118
Inform * gmsg
Definition: Main.cpp:61
ElementType
Definition: ElementBase.h:88
Tps< T > sqrt(const Tps< T > &x)
Square root.
Definition: TpsMath.h:91
T euclidean_norm(const Vector< T > &)
Euclidean norm.
Definition: Vector.h:243
Inform & endl(Inform &inf)
Definition: Inform.cpp:42
const std::string name
constexpr double c
The velocity of light in m/s.
Definition: Physics.h:45
ParticlePos_t & R
ParticleAttrib< int > Bin
double getQ() const
Access to reference data.
size_t getLocalNum() const
ParticleAttrib< Vector_t > P
double getdT() const
ParticleAttrib< double > dt
ParticleIndex_t & ID
double getM() const
virtual void visitDegrader(const Degrader &)=0
Apply the algorithm to a degrader.
Interface for a single beam element.
Definition: Component.h:50
bool online_m
Definition: Component.h:192
PartBunchBase< double, 3 > * RefPartBunch_m
Definition: Component.h:191
virtual bool bends() const
Definition: Degrader.cpp:147
virtual bool applyToReferenceParticle(const Vector_t &R, const Vector_t &P, const double &t, Vector_t &E, Vector_t &B)
Definition: Degrader.cpp:97
std::vector< double > MomentumZ_m
Definition: Degrader.h:90
virtual void finalise()
Definition: Degrader.cpp:121
virtual void goOnline(const double &kineticEnergy)
Definition: Degrader.cpp:125
virtual bool apply(const size_t &i, const double &t, Vector_t &E, Vector_t &B)
Definition: Degrader.cpp:68
virtual ElementType getType() const
Get element type std::string.
Definition: Degrader.cpp:156
std::vector< double > time_m
Definition: Degrader.h:91
virtual bool isInMaterial(double z)
Definition: Degrader.cpp:61
virtual void getDimensions(double &zBegin, double &zEnd) const
Definition: Degrader.cpp:151
virtual void initialise(PartBunchBase< double, 3 > *bunch, double &startField, double &endField)
Definition: Degrader.cpp:112
std::vector< double > MomentumY_m
Definition: Degrader.h:89
Degrader()
Definition: Degrader.cpp:32
std::vector< double > PosY_m
Definition: Degrader.h:86
std::vector< double > PosX_m
Definition: Degrader.h:85
virtual ~Degrader()
Definition: Degrader.cpp:52
virtual void goOffline()
Definition: Degrader.cpp:141
std::vector< double > PosZ_m
Definition: Degrader.h:87
virtual void accept(BeamlineVisitor &) const
Apply visitor to Degrader.
Definition: Degrader.cpp:57
std::vector< int > id_m
Definition: Degrader.h:92
std::vector< double > MomentumX_m
Definition: Degrader.h:88
virtual const std::string & getName() const
Get element name.
virtual ParticleMatterInteractionHandler * getParticleMatterInteraction() const
Definition: ElementBase.h:482
virtual double getElementLength() const
Get design length.
Definition: ElementBase.h:414
virtual bool computeEnergyLoss(PartBunchBase< double, 3 > *bunch, Vector_t &P, const double deltat, bool includeFluctuations=true) const =0
Definition: Inform.h:42