Quick Plot#
- class pybamm.QuickPlot(solutions, output_variables=None, labels=None, colors=None, linestyles=None, shading='auto', figsize=None, n_rows=None, time_unit=None, spatial_unit='um', variable_limits='fixed', n_t_linear=100)[source]#
Generates a quick plot of a subset of key outputs of the model so that the model outputs can be easily assessed.
- Parameters:
solutions ((iter of)
pybamm.Solution
orpybamm.Simulation
) – The numerical solution(s) for the model(s), or the simulation object(s) containing the solution(s).output_variables (list of str, optional) – List of variables to plot
labels (list of str, optional) – Labels for the different models. Defaults to model names
colors (list of str, optional) – The colors to loop over when plotting. Defaults to None, in which case the default color loop defined by matplotlib style sheet or rcParams is used.
linestyles (list of str, optional) – The linestyles to loop over when plotting. Defaults to [“-”, “:”, “–”, “-.”]
shading (str, optional) – The shading to use for 2D plots. Defaults to “auto”.
figsize (tuple of floats, optional) – The size of the figure to make
n_rows (int, optional) – The number of rows to use. If None (default), floor(n // sqrt(n)) is used where n = len(output_variables) so that the plot is as square as possible
time_unit (str, optional) – Format for the time output (“hours”, “minutes”, or “seconds”)
spatial_unit (str, optional) – Format for the spatial axes (“m”, “mm”, or “um”)
variable_limits (str or dict of str, optional) – How to set the axis limits (for 0D or 1D variables) or colorbar limits (for 2D variables). Options are:
n_t_linear (int, optional) –
The number of linearly spaced time points added to the t axis for each sub-solution. Note: this is only used if the solution has hermite interpolation enabled.
”fixed” (default): keep all axes fixes so that all data is visible
”tight”: make axes tight to plot at each time
dictionary: fine-grain control for each variable, can be either “fixed” or “tight” or a specific tuple (lower, upper).
- create_gif(number_of_images=80, duration=0.1, output_filename='plot.gif')[source]#
Generates x plots over a time span of max_t - min_t and compiles them to create a GIF.
- dynamic_plot(show_plot=True, step=None)[source]#
Generate a dynamic plot with a slider to control the time.
- pybamm.dynamic_plot(*args, **kwargs)[source]#
Creates a
pybamm.QuickPlot
object (with arguments ‘args’ and keyword arguments ‘kwargs’) and then callspybamm.QuickPlot.dynamic_plot()
. The key-word argument ‘show_plot’ is passed to the ‘dynamic_plot’ method, not the QuickPlot class.- Returns:
plot – The ‘QuickPlot’ object that was created
- Return type: