pylbo.visualisation.modes.cylindrical_2d

Module Contents

Classes

CylindricalSlicePlot2D

Class for handling cylindrical 2D plots of the eigenmode solutions.

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.

  • figsize (tuple[int, int]) – The size of the figure.

  • 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().

set_plot_arrays() None[source]
_draw_image() None[source]
_draw_contours() None[source]
draw_eigenfunction() None[source]
get_view_xlabel() str[source]
get_view_ylabel() str[source]
_create_figure_layout(figsize: tuple[int, int]) tuple[matplotlib.figure.Figure, dict][source]