OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
Corrector.cpp
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2// $RCSfile: Corrector.cpp,v $
3// ------------------------------------------------------------------------
4// $Revision: 1.1.1.1 $
5// ------------------------------------------------------------------------
6// Copyright: see Copyright.readme
7// ------------------------------------------------------------------------
8//
9// Class: Corrector
10// Defines the abstract interface for a orbit corrector.
11//
12// ------------------------------------------------------------------------
13// Class category: AbsBeamline
14// ------------------------------------------------------------------------
15//
16// $Date: 2000/03/27 09:32:31 $
17// $Author: fci $
18//
19// ------------------------------------------------------------------------
20
24#include "Physics/Physics.h"
26#include "Utilities/Util.h"
27
28
29// Class Corrector
30// ------------------------------------------------------------------------
31
33 Corrector("")
34{ }
35
36
38 Component(right),
39 kickX_m(right.kickX_m),
40 kickY_m(right.kickY_m),
41 designEnergy_m(right.designEnergy_m),
42 designEnergyChangeable_m(right.designEnergyChangeable_m),
43 kickFieldSet_m(right.kickFieldSet_m),
44 kickField_m(right.kickField_m)
45{ }
46
47
48Corrector::Corrector(const std::string &name):
50 kickX_m(0.0),
51 kickY_m(0.0),
52 designEnergy_m(0.0),
53 designEnergyChangeable_m(true),
54 kickFieldSet_m(false),
55 kickField_m(0.0)
56{ }
57
58
60{ }
61
62
63void Corrector::accept(BeamlineVisitor &visitor) const {
64 visitor.visitCorrector(*this);
65}
66
67bool Corrector::apply(const size_t &i, const double &t, Vector_t &E, Vector_t &B) {
69 Vector_t &P = RefPartBunch_m->P[i];
70
71 return apply(R, P, t, E, B);
72}
73
75 const Vector_t &P,
76 const double &/*t*/,
77 Vector_t &/*E*/,
78 Vector_t &B) {
79
80 if (R(2) >= 0.0 && R(2) < getElementLength()) {
82
83 double tau = 1.0;
84 const double &dt = RefPartBunch_m->getdT();
85 const double stepSize = dt * Physics::c * P(2) / Util::getGamma(P);
86
87 if (R(2) < stepSize) {
88 tau = R(2) / stepSize + 0.5;
89 }
90 if (getElementLength() - R(2) < stepSize) {
91 tau += (getElementLength() - R(2)) / stepSize - 0.5;
92 }
93
94 B += kickField_m * tau;
95 }
96
97 return false;
98}
99
100void Corrector::initialise(PartBunchBase<double, 3> *bunch, double &startField, double &endField) {
101 endField = startField + getElementLength();
102 RefPartBunch_m = bunch;
103}
104
106{ }
107
108void Corrector::goOnline(const double &) {
109 const double pathLength = getGeometry().getElementLength();
110 const double minLength = Physics::c * RefPartBunch_m->getdT();
111 if (pathLength < minLength) {
112 throw GeneralClassicException("Corrector::goOnline",
113 "length of corrector, L= " + std::to_string(pathLength) +
114 ", shorter than distance covered during one time step, dS= " + std::to_string(minLength));
115 }
116
117 if (!kickFieldSet_m) {
118 const double momentum = std::sqrt(std::pow(designEnergy_m, 2.0) + 2.0 * designEnergy_m * RefPartBunch_m->getM());
119 const double magnitude = momentum / (Physics::c * pathLength);
120 kickField_m = magnitude * RefPartBunch_m->getQ() * Vector_t(kickY_m, -kickX_m, 0.0);
121 }
122
123 online_m = true;
124}
125
126void Corrector::setDesignEnergy(const double& ekin, bool changeable) {
128 designEnergy_m = ekin;
129 designEnergyChangeable_m = changeable;
130 }
131 if (RefPartBunch_m) {
132 if (!kickFieldSet_m) {
133 const double pathLength = getGeometry().getElementLength();
134 const double momentum = std::sqrt(std::pow(designEnergy_m, 2.0) + 2.0 * designEnergy_m * RefPartBunch_m->getM());
135 const double magnitude = momentum / (Physics::c * pathLength);
136 kickField_m = magnitude * RefPartBunch_m->getQ() * Vector_t(kickY_m, -kickX_m, 0.0);
137 }
138 }
139}
140
141bool Corrector::bends() const {
142 return false;
143}
144
145void Corrector::getDimensions(double &zBegin, double &zEnd) const
146{
147 zBegin = 0.0;
148 zEnd = getElementLength();
149}
150
153}
ElementType
Definition: ElementBase.h:88
Tps< T > pow(const Tps< T > &x, int y)
Integer power.
Definition: TpsMath.h:76
Tps< T > sqrt(const Tps< T > &x)
Square root.
Definition: TpsMath.h:91
const std::string name
constexpr double c
The velocity of light in m/s.
Definition: Physics.h:45
double getGamma(Vector_t p)
Definition: Util.h:45
ParticlePos_t & R
double getQ() const
Access to reference data.
ParticleAttrib< Vector_t > P
double getdT() const
double getM() const
virtual void visitCorrector(const Corrector &)=0
Apply the algorithm to a closed orbit corrector.
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
Interface for general corrector.
Definition: Corrector.h:35
virtual StraightGeometry & getGeometry()=0
Return the corrector geometry.
virtual ~Corrector()
Definition: Corrector.cpp:59
virtual void getDimensions(double &zBegin, double &zEnd) const
Definition: Corrector.cpp:145
virtual void goOnline(const double &kineticEnergy)
Definition: Corrector.cpp:108
virtual bool bends() const
Definition: Corrector.cpp:141
virtual void initialise(PartBunchBase< double, 3 > *bunch, double &startField, double &endField)
Definition: Corrector.cpp:100
virtual ElementType getType() const
Get element type std::string.
Definition: Corrector.cpp:151
double designEnergy_m
Definition: Corrector.h:117
double kickX_m
Definition: Corrector.h:115
bool designEnergyChangeable_m
Definition: Corrector.h:118
virtual void accept(BeamlineVisitor &) const
Apply a visitor to Corrector.
Definition: Corrector.cpp:63
Vector_t kickField_m
Definition: Corrector.h:121
virtual bool apply(const size_t &i, const double &t, Vector_t &E, Vector_t &B)
Definition: Corrector.cpp:67
double kickY_m
Definition: Corrector.h:116
virtual void setDesignEnergy(const double &ekin, bool changeable=true)
Definition: Corrector.cpp:126
bool kickFieldSet_m
Definition: Corrector.h:119
virtual void finalise()
Definition: Corrector.cpp:105
bool getFlagDeleteOnTransverseExit() const
Definition: ElementBase.h:613
virtual double getElementLength() const
Get design length.
Definition: ElementBase.h:414
bool isInsideTransverse(const Vector_t &r) const
virtual double getElementLength() const
Get design length.
Vektor< double, 3 > Vector_t
Definition: Vektor.h:6