<< CL_man_inclination DEPRECATED CL_matSort >>

CelestLab >> DEPRECATED > CL_man_sma

CL_man_sma

Change of semi-major axis (elliptical orbits) - DEPRECATED

Calling Sequence

[dv,anv] = CL_man_sma(ai,ei,af [,posman,mu])

Description

Parameters

ai :

Initial semi major axis [m] (1xN or 1x1)

ei:

Initial eccentricity (1xN or 1x1)

af :

Final semi major axis [m] (1xN or 1x1)

posman:

(optional) Flag specifying the position of the maneuver: 0 or "per" -> periapsis, 1 or "apo" -> apoapsis. Default is at the periapsis. (1xN or 1x1)

mu :

(optional) Gravitational constant. [m^3/s^2] (default value is %CL_mu)

dv :

Delta_v in spherical coordinates in the "qsw" frame [lambda;phi;|dv|] [rad,rad,m/s] (3xN)

anv:

True anomaly at the position of maneuver [rad] (1xN)

Authors

See also

Examples

ai = 7200.e3;
af = 7000.e3;
ei = 0.1;
[dv,anv] = CL_man_sma(ai,ei,af)
// Check results :
kep = [ai ; ei ; %pi/2 ; 0 ; 0 ; anv];
kep1 = CL_man_applyDv(kep,dv)

Report an issue
<< CL_man_inclination DEPRECATED CL_matSort >>