Skip to content
Snippets Groups Projects
Commit f1e7dea9 authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

[Fix] Bug in BeamLoadingEquilibrium class

Fix a hard coded value of  0.5 A ...
parent 432853b8
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ class BeamLoadingEquilibrium():
cavity = self.cavity_list[i]
if cavity.m == 1:
cavity.theta = x[-1]
cavity.set_generator(0.5)
cavity.set_generator(self.I0)
self.update_potentials()
else:
self.F = x[::2]
......@@ -180,8 +180,8 @@ class BeamLoadingEquilibrium():
if z2 is None:
z2 = self.B2
z0 = np.linspace(z1, z2, 1000)
plt.plot(z0, self.rho(z0))
plt.xlabel("z [m]")
plt.plot(z0/c*1e12, self.rho(z0))
plt.xlabel(r"$\tau$ [ps]")
plt.title("Equilibrium bunch profile")
def voltage(self, z):
......
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