<< CL_man_dvSmaEccv Trajectory and maneuvers CL_man_lambert >>

CelestLab >> Trajectory and maneuvers > CL_man_dvSmaT

CL_man_dvSmaT

Change of semi-major axis by a tangential maneuver (elliptical orbits)

Calling Sequence

[deltav,dv,anv] = CL_man_dvSmaT(ai,ei,af,anvman [,mu])
man = CL_man_dvSmaT(ai,ei,af,anvman [,mu], res="s")

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)

anvman :

True anomaly at the position of the maneuver. (1xN or 1x1)

mu :

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

res :

(string, optional) Type of output: "d" or "s" for . Default is "d".

deltav :

Norm of velocity increment. [m/s] (1xN)

dv :

Velocity increment (in cartesian coordinates) in the "qsw" local frame [m/s] (3xN)

anv :

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

man :

Structure containing all the output data.

Authors

See also

Examples

ai = 7200.e3;
ei = 0.1;
af = 7000.e3;
anvman = %pi/4;
[deltav,dv,anv] = CL_man_dvSmaT(ai,ei,af,anvman)

// Check results :
anm = CL_kp_v2M(ei,anv); // mean anomaly
kep = [ai ; ei ; %pi/2 ; 0 ; 0 ; anm];
CL_man_applyDvKep(kep,dv)

Report an issue
<< CL_man_dvSmaEccv Trajectory and maneuvers CL_man_lambert >>