pylbo.visualisation.modes.cylindrical_2d
Classes
Class for handling cylindrical 2D plots of the eigenmode solutions. |
Module Contents
- class pylbo.visualisation.modes.cylindrical_2d.CylindricalSlicePlot2D(data: pylbo.visualisation.modes.mode_data.ModeVisualisationData, u2: float | numpy.ndarray, u3: float | numpy.ndarray, time: float, slicing_axis: str, figsize: tuple[int, int], show_ef_panel: bool, polar: bool, **kwargs)[source]
Bases:
pylbo.visualisation.modes.cartesian_2d.CartesianSlicePlot2D
Class for handling cylindrical 2D plots of the eigenmode solutions.
- Parameters:
data (ModeVisualisationData) – The data for the visualisation.
u2 (float or ndarray) – The \(\theta\) coordinate of the eigenmode solution.
u3 (float or ndarray) – The \(z\) coordinate of the eigenmode solution.
time (float) – The time at which the eigenmode solution is calculated.
slicing_axis (str) – The axis along which the eigenmode solution is sliced.
show_ef_panel (bool) – Whether to show the eigenfunction panel.
polar (bool) – Whether to use polar coordinates for the plot.
**kwargs – Additional keyword arguments to be passed to
matplotlib.pyplot.pcolormesh()
.