Source code for rocketpy.plots.fluid_plots

[docs] class _FluidPlots: """Class that holds plot methods for Fluid class. Attributes ---------- _FluidPlots.fluid : Fluid Fluid object that will be used for the plots. """
[docs] def __init__(self, fluid): """Initializes _MotorClass class. Parameters ---------- fluid : Fluid Instance of the Fluid class Returns ------- None """ self.fluid = fluid return None
[docs] def all(self): """Prints out all graphs available about the Fluid. It simply calls all the other plotter methods in this class. Return ------ None """ return None