CADETProcess.solution.SolutionVolume.plot#
- SolutionVolume.plot(start: float | None = None, end: float | None = None, x_axis_in_minutes: bool | None = True, ax: Axes | None = None, update_layout: bool | None = True, **kwargs: Any) Axes[source]#
Plot the unit operation”s volume over time.
- Parameters:
- startOptional[float]
Start time for plotting in seconds. If None is provided, the first data point will be used as the start time. The default is None.
- endOptional[float]
End time for plotting in seconds. If None is provided, the last data point will be used as the end time. The default is None.
- x_axis_in_minutesOptional[bool], default=True
If True, the x-axis will be plotted using minutes.
- axOptional[Axes]
Axes to plot on.
- update_layoutOptional[bool], default=True
If True, update the figure”s layout.
- **kwargsAny
Additional arguments passed down to ax.plot()
- Returns:
- Axes
Axes object with the plot.
See also
CADETProcess.plot