<< CL_kp_M2Ecir DEPRECATED CL_man_apsidesLine >>

CelestLab >> DEPRECATED > CL_man_applyDv

CL_man_applyDv

Effect of maneuver on orbital elements - DEPRECATED

Calling Sequence

kep_dv = CL_man_applyDv(kep,dv_local [,mu])

Description

Parameters

kep:

Initial (osculating) Keplerian elements [m,rad] (6xN)

dv_local:

delta-V in spherical coordinates in the QSW local frame [lambda;phi;|dv|] [rad,rad,m/s] (3xN)

mu :

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

kep_dv:

(Osculating) Keplerian elements including the effect of the maneuver [m,rad] (6xN)

Authors

See also

Examples

// Manoeuvre : 7200km to 7000km :
ai = 7200.e3;
af = 7000.e3;
[delta_v,dv1,dv2,anv1,anv2] = CL_man_hohmann(ai,af);

// Check results using CL_man_applyDv:
kep = [ai ; 0 ; %pi/2 ; 0 ; 0 ; anv1];
kep1 = CL_man_applyDv(kep,dv1);
kep1(6) = anv2;
kep2 = CL_man_applyDv(kep1,dv2)

Report an issue
<< CL_kp_M2Ecir DEPRECATED CL_man_apsidesLine >>