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
bb0b5ed3
Commit
bb0b5ed3
authored
2 years ago
by
Alexis GAMELIN
Browse files
Options
Downloads
Patches
Plain Diff
[Fix] ExponentialDamper
parent
9b6fbb54
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mbtrack2/tracking/feedback.py
+1
-4
1 addition, 4 deletions
mbtrack2/tracking/feedback.py
with
1 addition
and
4 deletions
mbtrack2/tracking/feedback.py
+
1
−
4
View file @
bb0b5ed3
...
...
@@ -30,15 +30,12 @@ class ExponentialDamper(Element):
self
.
plane
=
plane
if
self
.
plane
==
"
x
"
:
self
.
action
=
"
xp
"
self
.
damp_idx
=
0
self
.
mean_idx
=
1
elif
self
.
plane
==
"
y
"
:
self
.
action
=
"
yp
"
self
.
damp_idx
=
1
self
.
mean_idx
=
3
elif
self
.
plane
==
"
s
"
:
self
.
action
=
"
delta
"
self
.
damp_idx
=
2
self
.
mean_idx
=
5
else
:
raise
ValueError
(
f
"
plane should be x, y or s, not
{
self
.
plane
}
"
)
...
...
@@ -55,7 +52,7 @@ class ExponentialDamper(Element):
bunch : Bunch or Beam object
"""
bunch
[
self
.
action
]
-=
(
2
*
self
.
ring
.
T0
/
self
.
damping_time
[
self
.
damp_idx
]
*
self
.
damping_time
*
np
.
sin
(
self
.
phase_diff
)
*
bunch
.
mean
[
self
.
mean_idx
])
...
...
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