SLPLFindPower:

Path: Orbit/StraightLine

% Finds required power, ideal power-limited rocket, straight-line traj.
 This is an analytic solution for the rocket jet power.
 Power limit is the only constraint; thrust and exhaust velocity can go to
 zero or infinity. Uses Leitmann's 1961 result that the optimal
 acceleration profile is linear in time. The optimal can be either: 

 * Constrained fuel and time, maximized distance OR 
 * Constrained distance and time, minimized fuel OR
 * Constrained fuel and distance, minimized time.

 The acceleration profile is:

   a(t) = A*(tF-tau-t)

 a is acceleration, A is a constant, tau is a constant, t is mission time,
 tF is the final time.

 Type SLPLFindPower for a demo.

--------------------------------------------------------------------------
	  Form:
   [Pj,A,tau] = SLPLFindPower( xF, tF, vF, mDry, m0 )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   xF      (1,:) Final distance (km)
   tF      (1,:) Final time (s)
   vF      (1,:) Final velocity (km/s).
                 Rendezvous/insertion: vF = 0.
                 Intercept/flyby: vF = [], unconstrained
   mDry    (1,:) Dry mass: Engine, payload, tanks, structure (kg)
   m0      (1,:) Initial (wet) mass (kg)

   -------
   Outputs
   -------
   Pj      (1,:) Jet power (eta*P, eta*sigma*mE) (W)
   A       (1,:) Acceleration scale parameter, (m/s^3)
   tau     (1,:) Time between turnaround and tF (s)

--------------------------------------------------------------------------
   Reference: Leitmann, George. "Minimum Transfer Time for a Power-Limited
              Rocket." Journal of Applied Mechanics 28, no. 2 (June 1,
              1961): 171-78. https://doi.org/10.1115/1.3641648.
--------------------------------------------------------------------------
   See also: SLPLTrajectory
--------------------------------------------------------------------------

Children:

AC: ACData/ACTConstants
SC: SCData/sCTConstants
Common: CommonData/Constants
Common: CommonData/SwooshWatermark
Common: CommonData/xSplashSmall
Common: Database/Constant
Common: General/CellToMat
Common: General/DeleteCell
Common: General/MatToCell
Common: General/Watermark
Common: Graphics/DistanceLabel
Common: Graphics/NewFig
Common: Graphics/Plot2D
Common: Graphics/PltStyle
Common: Graphics/TimeLabl

Back to the Orbit Module page