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

Fix free space CSR expression

Take into account length
parent 127a41e6
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ class FreeSpaceCSR(WakeField):
Beams 7.5 (2004): 054403.
"""
Zl = (self.Z0 / (2*np.pi) * gamma(2/3) *
Zl = (self.Z0 * self.length / (2*np.pi) * gamma(2/3) *
(-1j * 2 * np.pi * frequency / (3 * c * self.radius**2) )**(1/3) )
return Zl
......
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