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