Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mbtrack2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PA
Collective Effects
mbtrack2
Commits
6cb37ed6
Commit
6cb37ed6
authored
3 years ago
by
Watanyu Foosang
Browse files
Options
Downloads
Patches
Plain Diff
Fix ADTS handling algorithm and add its docstring
parent
957c8b55
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tracking/element.py
+10
-5
10 additions, 5 deletions
tracking/element.py
tracking/synchrotron.py
+13
-0
13 additions, 0 deletions
tracking/synchrotron.py
with
23 additions
and
5 deletions
tracking/element.py
+
10
−
5
View file @
6cb37ed6
...
@@ -154,10 +154,15 @@ class TransverseMap(Element):
...
@@ -154,10 +154,15 @@ class TransverseMap(Element):
self
.
dispersion
=
self
.
ring
.
optics
.
local_dispersion
self
.
dispersion
=
self
.
ring
.
optics
.
local_dispersion
self
.
phase_advance
=
self
.
ring
.
tune
[
0
:
2
]
*
2
*
np
.
pi
self
.
phase_advance
=
self
.
ring
.
tune
[
0
:
2
]
*
2
*
np
.
pi
if
self
.
ring
.
adts
.
all
()
==
0
:
if
self
.
ring
.
adts
is
not
None
:
self
.
adts_option
=
False
else
:
self
.
adts_option
=
True
self
.
adts_option
=
True
self
.
adts_poly
=
np
.
array
([
np
.
poly1d
(
self
.
ring
.
adts
[
0
]),
np
.
poly1d
(
self
.
ring
.
adts
[
1
]),
np
.
poly1d
(
self
.
ring
.
adts
[
2
]),
np
.
poly1d
(
self
.
ring
.
adts
[
3
])])
else
:
self
.
adts_option
=
False
@Element.parallel
@Element.parallel
def
track
(
self
,
bunch
):
def
track
(
self
,
bunch
):
...
@@ -174,10 +179,10 @@ class TransverseMap(Element):
...
@@ -174,10 +179,10 @@ class TransverseMap(Element):
# Compute phase advance which depends on energy via chromaticity and ADTS
# Compute phase advance which depends on energy via chromaticity and ADTS
if
self
.
adts_option
is
True
:
if
self
.
adts_option
is
True
:
phase_advance_x
=
self
.
phase_advance
[
0
]
*
(
1
+
self
.
ring
.
chro
[
0
]
*
bunch
[
"
delta
"
]
+
phase_advance_x
=
self
.
phase_advance
[
0
]
*
(
1
+
self
.
ring
.
chro
[
0
]
*
bunch
[
"
delta
"
]
+
self
.
ring
.
adts
[
0
](
bunch
[
'
x
'
])
+
self
.
ring
.
adts
[
2
](
bunch
[
'
y
'
]))
self
.
adts_poly
[
0
](
bunch
[
'
x
'
])
+
self
.
adts_poly
[
2
](
bunch
[
'
y
'
]))
phase_advance_y
=
self
.
phase_advance
[
1
]
*
(
1
+
self
.
ring
.
chro
[
1
]
*
bunch
[
"
delta
"
]
+
phase_advance_y
=
self
.
phase_advance
[
1
]
*
(
1
+
self
.
ring
.
chro
[
1
]
*
bunch
[
"
delta
"
]
+
self
.
ring
.
adts
[
1
](
bunch
[
'
x
'
])
+
self
.
ring
.
adts
[
3
](
bunch
[
'
y
'
]))
self
.
adts_poly
[
1
](
bunch
[
'
x
'
])
+
self
.
adts_poly
[
3
](
bunch
[
'
y
'
]))
else
:
else
:
phase_advance_x
=
self
.
phase_advance
[
0
]
*
(
1
+
self
.
ring
.
chro
[
0
]
*
bunch
[
"
delta
"
])
phase_advance_x
=
self
.
phase_advance
[
0
]
*
(
1
+
self
.
ring
.
chro
[
0
]
*
bunch
[
"
delta
"
])
...
...
This diff is collapsed.
Click to expand it.
tracking/synchrotron.py
+
13
−
0
View file @
6cb37ed6
...
@@ -44,6 +44,19 @@ class Synchrotron:
...
@@ -44,6 +44,19 @@ class Synchrotron:
Horizontal and vertical (non-normalized) chromaticities.
Horizontal and vertical (non-normalized) chromaticities.
U0 : float, optional
U0 : float, optional
Energy loss per turn in [eV].
Energy loss per turn in [eV].
adts : array of shape (4,) or None, optional
Array that contains arrays of polynomial
'
s coefficients, in decreasing
powers, used to determine Amplitude-Dependent Tune Shifts (ADTS).
The order of the elements strictly needs to be
[coef_xx, coef_yx, coef_xy, coef_yy], where x and y denote the horizontal
and the vertical plane, respectively, and coef_PQ means the polynomial
'
s
coefficients of the ADTS in plane P due to the offset in plane Q.
For example, if the tune shift in y due to the offset x is characterized
by the equation dQy(x) = 3*x**2 + 2*x + 1, then coef_yx takes the form
np.array([3, 2, 1]).
Use None, to exclude the ADTS calculation.
Attributes
Attributes
----------
----------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment