Hardware Loop Plot¶

- class HardwareLoopPlot(title=None)[source]¶
-
Base class for all plots visualized during hardware loop runtime.
- Parameters:
title (
str
|None
) – Title of the hardware loop plot. If not specified, resorts to the default title of the plot.
- abstract _initial_plot(sample, axes)[source]¶
Initial plot of the hardware loop plot.
Abstract subroutine of
HardwareLoopPlot.update_plot()
.- Parameters:
- Return type:
TypeVar
(VT
, bound=Visualization
)
Returns: The plotted information including axes and lines.
- abstract _prepare_plot()[source]¶
Prepare the figure for the hardware loop plot.
Returns: The prepared figure and axes to be plotted into.
- abstract _update_plot(sample, visualization)[source]¶
Update the hardware loop plot.
Abstract subroutine of
HardwareLoopPlot.update_plot()
.- Parameters:
sample (
HardwareLoopSample
) – Hardware loop sample to be plotted.visualization (
TypeVar
(VT
, bound=Visualization
)) – The visualization to be updated.
- Return type:
- prepare_plot()[source]¶
Prepare the figure for the hardware loop plot.
Returns: The prepared figure and axes to be plotted into.
- update_plot(sample)[source]¶
Update the hardware loop plot.
Internally calls the abstract
_update_plot()
method.- Parameters:
sample (
HardwareLoopSample
) – Hardware loop sample to be plotted.- Raises:
RuntimeError – If the hardware loop is not set.
- Return type:
- property hardware_loop: HardwareLoop | None¶
Hardware loop this plot is attached to.