astro.ConstantContinuousBurn#
- class hohmannpy.astro.ConstantContinuousBurn(start_time, end_time, thrust, masses=None, inertial=False)#
Continuous burn where the supplied thrust is constant.
- Parameters:
start_time (Any[float,
Time]) – The time at which the burn is to begin. Can either be the relative time since mission start in seconds or aTimeobject.end_time (Any[float,
Time]) – The time at which the burn is to end. Can either be the relative time since mission start in seconds or aTimeobject.thrust (np.ndarray) – Constant thrust to burn at as a (3, ) array.
masses (Any[Optional[scipy.BSpline, Callable]]) – The mass can optionally change over the course of the burn. If it does, the masses of the satellite over time can be provided as either a (N, 2) lookup table of (time, mass) entries where the first row is the mass at
start_timeand the last is the mass atend_timeor alternatively as a function. Can not be a lambda function as this interferes with parallel processing capabilities.inertial (bool) – Whether the
velocity_changeis parameterized in planet-centered inertial coordinates.
- Variables:
thrust (np.ndarray) – Constant thrust to burn at as a (3, ) array. By default, this is assumed to be in the satellite’s radial-transverse-normal (RTN) frame unless
inertialis set toTrue.
- evaluate(time, state, satellite)#
See
ContinuousBurn.evaluate().