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
c39271de
Commit
c39271de
authored
2 years ago
by
Alexis GAMELIN
Browse files
Options
Downloads
Patches
Plain Diff
Add PTBL threshold computation
parent
4e5eec7b
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/utilities/beamloading.py
+67
-0
67 additions, 0 deletions
mbtrack2/utilities/beamloading.py
with
67 additions
and
0 deletions
mbtrack2/utilities/beamloading.py
+
67
−
0
View file @
c39271de
...
...
@@ -308,3 +308,70 @@ class BeamLoadingEquilibrium():
self
.
plot_rho
(
self
.
B1
/
4
,
self
.
B2
/
4
)
return
sol
def
PTBL_threshold
(
self
,
I0
,
m
=
None
,
MC_index
=
0
,
HC_index
=
1
):
"""
Compute the periodic transient beam loading (PTBL) instability
threshold based on [1].
The beam_equilibrium method should be called before the PTBL_threshold
one.
Eq. (22) and (23) have been modified for cosine voltage convention
for the main cavity.
Parameters
----------
I0 : float
Beam total current in [A].
m : int, optional
Number of bunches in the beam.
The default is None. If None, uniform filling is assumed.
MC_index : int, optional
Index of the main cavity in cavity_list. The default is 0.
HC_index : TYPE, optional
Index of the harmonic cavity in cavity_list. The default is 1.
Returns
-------
eta : float
Amplification factor, if bigger than 1 then the beam is possibly
in the PTBL regime, Eq. (22) of [1].
RQth : float
R/Q threshold, Eq. (24) of [1].
f : float
f function, Eq. (23) of [1].
Reference
---------
[1] : He, T. (2022). Novel perturbation method for judging the
stability of the equilibrium solution in the presence of passive
harmonic cavities. Physical Review Accelerators and Beams, 25(9),
094402.
"""
if
m
is
None
:
m
=
self
.
ring
.
h
MC
=
self
.
cavity_list
[
MC_index
]
HC
=
self
.
cavity_list
[
HC_index
]
a
=
np
.
exp
(
-
HC
.
wr
*
self
.
ring
.
T0
/
(
2
*
HC
.
Q
))
theta
=
HC
.
detune
*
2
*
np
.
pi
*
self
.
ring
.
T0
dtheta
=
np
.
arcsin
((
1
-
a
)
*
np
.
cos
(
theta
/
2
)
/
(
np
.
sqrt
(
1
+
a
**
2
-
2
*
a
*
np
.
cos
(
theta
))))
k
=
np
.
arange
(
1
,
m
)
d_k
=
np
.
exp
(
-
1
*
HC
.
wr
*
self
.
ring
.
T0
*
(
k
-
1
)
/
(
2
*
HC
.
Q
*
m
))
theta_k
=
(
theta
/
2
+
dtheta
-
(
k
-
1
)
/
m
*
theta
)
eps_k
=
1
-
np
.
sin
(
np
.
pi
/
2
-
k
*
2
*
np
.
pi
/
m
)
num
=
np
.
sum
(
eps_k
*
d_k
*
np
.
cos
(
theta_k
))
f
=
num
/
(
m
*
np
.
sqrt
(
1
+
a
**
2
-
2
*
a
*
np
.
cos
(
theta
))
)
eta
=
(
2
*
np
.
pi
*
HC
.
m
**
2
*
self
.
F
[
HC_index
]
*
self
.
ring
.
h
*
I0
*
HC
.
Rs
/
HC
.
Q
*
f
/
(
MC
.
Vc
*
np
.
sin
(
MC
.
theta
-
self
.
PHI
[
HC_index
]
/
HC
.
m
)
)
)
RQth
=
(
MC
.
Vc
*
np
.
sin
(
MC
.
theta
-
self
.
PHI
[
HC_index
]
/
HC
.
m
)
/
(
2
*
np
.
pi
*
HC
.
m
**
2
*
self
.
F
[
1
]
*
self
.
ring
.
h
*
I0
*
f
))
return
(
eta
,
RQth
,
f
)
\ No newline at end of file
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