pylbo.visualisation.modes.cartesian_2d
Classes
Class for handling Cartesian 2D plots of the eigenmode solutions. |
Module Contents
- class pylbo.visualisation.modes.cartesian_2d.CartesianSlicePlot2D(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, **kwargs)[source]
Bases:
pylbo.visualisation.modes.mode_figure.ModeFigure
Class for handling Cartesian 2D plots of the eigenmode solutions.
- Parameters:
data (ModeVisualisationData) – The data for the visualisation.
u2 (float or ndarray) – The \(y\) 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.
**kwargs – Additional keyword arguments to be passed to
matplotlib.pyplot.imshow()
.
- _validate_slicing_axis(slicing_axis: str, allowed_axes: list[str]) str [source]
Validates the slicing axis.
- _validate_u2(u2: float, slicing_axis: str, axis: str) float [source]
Validates the combination of u2 and slicing axis.
- _validate_u3(u3: float, slicing_axis: str, axis: str) float [source]
Validates the combination of u3 and slicing axis.
- set_contours(levels=None, fill=False) None [source]
Sets up a contour plot instead of an image plot.
- create_animation(times: numpy.ndarray, filename: str, fps: float = 10, dpi: int = 200) None [source]
- _update_view(updated_solution: numpy.ndarray) None [source]
Updates the axes with the new solution. If a contour plot is used, the contour lines are cleared and redrawn. If an image plot is used, the image is updated.
- Parameters:
updated_solution (np.ndarray) – The new solution.
- _update_view_clims(solution: numpy.ndarray) None [source]
- _update_contour_plot(updated_solution: numpy.ndarray) None [source]