Skip to content
Snippets Groups Projects
Commit ddb9f275 authored by Gamelin Alexis's avatar Gamelin Alexis
Browse files

Refactor and small improvements on CavityResonator

Add comments.
Remove usage of bins, use only center.
parent 09a96856
No related branches found
No related tags found
No related merge requests found
...@@ -169,14 +169,13 @@ class CavityResonator(): ...@@ -169,14 +169,13 @@ class CavityResonator():
def init_tracking(self, beam): def init_tracking(self, beam):
""" """
Initialization of the tracking Initialization of the tracking.
Parameters Parameters
---------- ----------
beam : Beam object beam : Beam object
""" """
if beam.mpi_switch: if beam.mpi_switch:
self.bunch_index = beam.mpi.bunch_num # Number of the tracked bunch in this processor self.bunch_index = beam.mpi.bunch_num # Number of the tracked bunch in this processor
...@@ -185,10 +184,19 @@ class CavityResonator(): ...@@ -185,10 +184,19 @@ class CavityResonator():
self.tracking = True self.tracking = True
self.nturn = 0 self.nturn = 0
def track(self, beam, ref_frame="beam"): def track(self, beam):
"""version type mbtrack + formule analytique """
Track a Beam object through the CavityResonator object.
phasor is given at t=0 synchronous particle of the bunch 0 Can be used with or without mpi.
The beam phasor is given at t=0 (synchronous particle) of the first
non empty bunch.
Parameters
----------
beam : Beam object
""" """
if self.tracking is False: if self.tracking is False:
...@@ -200,7 +208,6 @@ class CavityResonator(): ...@@ -200,7 +208,6 @@ class CavityResonator():
if beam.mpi_switch: if beam.mpi_switch:
# get shared bunch profile for current bunch # get shared bunch profile for current bunch
bins = beam.mpi.bins_all[j]
center = beam.mpi.center_all[j] center = beam.mpi.center_all[j]
profile = beam.mpi.profile_all[j] profile = beam.mpi.profile_all[j]
bin_length = center[1]-center[0] bin_length = center[1]-center[0]
...@@ -216,19 +223,18 @@ class CavityResonator(): ...@@ -216,19 +223,18 @@ class CavityResonator():
energy_change = bunch["tau"]*0 energy_change = bunch["tau"]*0
# phasor is given at t=0 synchronous particle of the bunch # remove part of beam phasor decay to be at the start of the binning (=bins[0])
# remove part of beam phasor decay to be at the start of the binning self.phasor_decay(center[0] - bin_length/2, ref_frame="beam")
self.phasor_decay(bins[0], ref_frame=ref_frame)
if index != self.bunch_index: if index != self.bunch_index:
self.phasor_evol(profile, bin_length, charge_per_mp, ref_frame=ref_frame) self.phasor_evol(profile, bin_length, charge_per_mp, ref_frame="beam")
else: else:
# modify beam phasor # modify beam phasor
for i, center0 in enumerate(center): for i, center0 in enumerate(center):
mp_per_bin = profile[i] mp_per_bin = profile[i]
if mp_per_bin == 0: if mp_per_bin == 0:
self.phasor_decay(bin_length, ref_frame=ref_frame) self.phasor_decay(bin_length, ref_frame="beam")
continue continue
ind = (sorted_index == i) ind = (sorted_index == i)
...@@ -239,22 +245,32 @@ class CavityResonator(): ...@@ -239,22 +245,32 @@ class CavityResonator():
energy_change[ind] = Vtot / self.ring.E0 energy_change[ind] = Vtot / self.ring.E0
self.beam_phasor -= 2*charge_per_mp*self.loss_factor*mp_per_bin self.beam_phasor -= 2*charge_per_mp*self.loss_factor*mp_per_bin
self.phasor_decay(bin_length, ref_frame=ref_frame) self.phasor_decay(bin_length, ref_frame="beam")
self.phasor_decay(-1*bins[-1], ref_frame=ref_frame) # phasor decay to be at t=0 of the current bunch (=-1*bins[-1])
self.phasor_decay(self.distance[index] * self.ring.T1, ref_frame=ref_frame) self.phasor_decay(-1 * (center[-1] + bin_length/2), ref_frame="beam")
# phasor decay to be at t=0 of the next bunch
self.phasor_decay( (self.distance[index] * self.ring.T1), ref_frame="beam")
if index == self.bunch_index: if index == self.bunch_index:
# apply kick # apply kick
bunch["delta"] += energy_change bunch["delta"] += energy_change
bunch.energy_change = energy_change
self.nturn += 1 self.nturn += 1
def init_phasor(self, beam): def init_phasor(self, beam):
"""version type mbtrack + formule analytique""" """
Initialize the beam phasor for a given beam distribution.
Follow the same steps as the track method but in the "rf" reference
frame and without any modifications on the beam.
Parameters
----------
beam : Beam object
"""
if self.tracking is False: if self.tracking is False:
self.init_tracking(beam) self.init_tracking(beam)
...@@ -267,7 +283,6 @@ class CavityResonator(): ...@@ -267,7 +283,6 @@ class CavityResonator():
if beam.mpi_switch: if beam.mpi_switch:
# get shared bunch profile for current bunch # get shared bunch profile for current bunch
bins = beam.mpi.bins_all[j]
center = beam.mpi.center_all[j] center = beam.mpi.center_all[j]
profile = beam.mpi.profile_all[j] profile = beam.mpi.profile_all[j]
bin_length = center[1]-center[0] bin_length = center[1]-center[0]
...@@ -278,11 +293,10 @@ class CavityResonator(): ...@@ -278,11 +293,10 @@ class CavityResonator():
bin_length = center[1]-center[0] bin_length = center[1]-center[0]
charge_per_mp = bunch.charge_per_mp charge_per_mp = bunch.charge_per_mp
# phasor is given at t=0 synchronous particle of the bunch self.phasor_decay(center[0] - bin_length/2, ref_frame="rf")
# remove part of beam phasor decay to be at the start of the binning
self.phasor_decay(bins[0], ref_frame="rf")
self.phasor_evol(profile, bin_length, charge_per_mp, ref_frame="rf") self.phasor_evol(profile, bin_length, charge_per_mp, ref_frame="rf")
self.phasor_decay( (self.distance[index] * self.ring.T1) - bins[-1], ref_frame="rf") self.phasor_decay(-1 * (center[-1] + bin_length/2), ref_frame="rf")
self.phasor_decay( (self.distance[index] * self.ring.T1), ref_frame="rf")
def phasor_decay(self, time, ref_frame="beam"): def phasor_decay(self, time, ref_frame="beam"):
""" """
...@@ -293,6 +307,8 @@ class CavityResonator(): ...@@ -293,6 +307,8 @@ class CavityResonator():
---------- ----------
time : float time : float
Time span in [s], can be positive or negative. Time span in [s], can be positive or negative.
ref_frame : string, optional
Reference frame to be used, can be "beam" or "rf".
""" """
if ref_frame == "beam": if ref_frame == "beam":
...@@ -305,6 +321,8 @@ class CavityResonator(): ...@@ -305,6 +321,8 @@ class CavityResonator():
def phasor_evol(self, profile, bin_length, charge_per_mp, ref_frame="beam"): def phasor_evol(self, profile, bin_length, charge_per_mp, ref_frame="beam"):
""" """
Compute the beam phasor evolution during the crossing of a bunch. Compute the beam phasor evolution during the crossing of a bunch.
Assume that the phasor decay happens before the beam loading.
Parameters Parameters
---------- ----------
...@@ -314,6 +332,9 @@ class CavityResonator(): ...@@ -314,6 +332,9 @@ class CavityResonator():
Length of a bin in [s]. Length of a bin in [s].
charge_per_mp : float charge_per_mp : float
Charge per macro-particle in [C]. Charge per macro-particle in [C].
ref_frame : string, optional
Reference frame to be used, can be "beam" or "rf".
""" """
if ref_frame == "beam": if ref_frame == "beam":
delta = self.wr delta = self.wr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment