<< CL_oe_kep2car Coordinates and frames CL_rot_angVelocity >>

CelestLab >> Coordinates and frames > CL_oe_kep2cir

CL_oe_kep2cir

Keplerian to circular orbital elements

Calling Sequence

[cir,jacob] = CL_oe_kep2cir(kep)

Description

Parameters

kep:

Keplerian orbital elements [sma;ecc;inc;pom;gom;anm] [m,rad] (6xN)

cir:

Orbital elements adapted to near-circular orbits [sma;ex;ey;inc;gom;pso] [m,rad] (6xN)

jacob:

(optional) Transformation jacobian (See Orbital elements for more details) (6x6xN)

Authors

See also

Examples

// Example 1
kep = [7000.e3; 0.1; 0.5; 1; 2; 3];
cir = CL_oe_kep2cir(kep);

// Example 2
kep = [7000.e3; 0.1; 0.5; 1; 2; 3];
[cir, jacob1] = CL_oe_kep2cir(kep);
[kep2, jacob2] = CL_oe_cir2kep(cir);
kep2 - kep // => zero
jacob2 * jacob1 // => identity

Report an issue
<< CL_oe_kep2car Coordinates and frames CL_rot_angVelocity >>