Source code for rocketpy.prints.fluid_prints

[docs] class _FluidPrints: """Class that holds prints methods for Fluid class. Attributes ---------- _FluidPrints.fluid : fluid Fluid object that will be used for the prints. """
[docs] def __init__( self, fluid, ): """Initializes _FluidPrints class Parameters ---------- fluid: Fluid Instance of the Fluid class. Returns ------- None """ self.fluid = fluid return None
[docs] def all(self): """Prints out all data available about the Fluid. Returns ------- None """ return None