Something went wrong on our end
-
Gamelin Alexis authored
Can compute the CSR impedance for free space and parallel plates model. WakeFunction not implemented yet.
Gamelin Alexis authoredCan compute the CSR impedance for free space and parallel plates model. WakeFunction not implemented yet.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
__init__.py 1.17 KiB
# -*- coding: utf-8 -*-
"""
Created on Tue Jan 14 12:25:30 2020
@author: gamelina
"""
from mbtrack2.collective_effects.instabilities import mbi_threshold, cbi_threshold, lcbi_growth_rate_mode, lcbi_growth_rate, plot_critical_mass
from mbtrack2.collective_effects.resistive_wall import (skin_depth, CircularResistiveWall, Coating)
from mbtrack2.collective_effects.resonator import Resonator, PureInductive, PureResistive
from mbtrack2.collective_effects.tapers import StupakovRectangularTaper, StupakovCircularTaper
from mbtrack2.collective_effects.wakefield import ComplexData, Impedance, WakeFunction, WakeField
from mbtrack2.collective_effects.utilities import read_CST, read_IW2D, spectral_density
from mbtrack2.collective_effects.utilities import gaussian_bunch_spectrum, beam_spectrum, effective_impedance
from mbtrack2.collective_effects.utilities import yokoya_elliptic, beam_loss_factor
from mbtrack2.collective_effects.utilities import double_sided_impedance, read_IW2D_folder
from mbtrack2.collective_effects.utilities import gaussian_bunch
from mbtrack2.collective_effects.impedance_model import ImpedanceModel
from mbtrack2.collective_effects.csr import (FreeSpaceCSR, ParallelPlatesCSR)