CADETProcess.solution.SolutionBulk.plot_at_time

CADETProcess.solution.SolutionBulk.plot_at_time#

SolutionBulk.plot_at_time(t: float, components: list[str] | None = None, *args: Any, **kwargs: Any) tuple[Figure, Axes | tuple[Axes]][source]#

Plot bulk solution over space at given time.

Parameters:
tfloat

Time for plotting. If t == -1, the final solution is plotted.

componentsOptional[list[str]]

List of components to be plotted. If None, all components are plotted.

*argsAny

Optional arguments passed to _plot_solution_1D.

**kwargsAny

Optional keyword arguments passed to _plot_solution_1D.

Returns:
tuple[plt.Figure, plt.Axes | tuple[plt.Axes]]

The Matplotlib Figure and Axes objects.

See also

_plot_solution_1D
_plot_2D
slice_solution
CADETProcess.plotting