-
Notifications
You must be signed in to change notification settings - Fork 29
Description
Lines 614-619 of wakes.py define the transverse resistive wall wake:
def wake(dt, *args, **kwargs):
y = (Yokoya_factor * (np.sign(dt + np.abs(self.dt_min)) - 1) / 2. *
np.sqrt(kwargs['beta']) * self.resistive_wall_length / np.pi /
self.pipe_radius**3 * np.sqrt(-mu_r / np.pi /
self.conductivity / dt.clip(max=-abs(self.dt_min))))*np.sqrt(Z_0*c)
return yAs I understand it, for a Yokoya factor of 1 this equivalent to
The expected form of this wake can be found in Equation 130 of F. Zimmerman's paper, "Resistive-wall wake and impedance for nonultrarelativistic beams" with the
Compared to this,
Many Thanks.