<< CL_oe_kep2car Coordinates and frames CL_oe_kep2cireq >>

CelestLab >> Coordinates and frames > CL_oe_kep2cir

CL_oe_kep2cir

Keplerian to circular adapted orbital elements

Calling Sequence

[cir,jacob] = CL_oe_kep2cir(kep)

Description

Parameters

kep:

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

cir:

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

jacob:

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

Authors

See also

Examples

// Example 1
kep = [7000.e3;0.01;1.8;0.1;0.2;0.3];
cir = CL_oe_kep2cir(kep);

// Example 2
kep = [7000.e3;0.01;1.8;0.1;0.2;0.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_oe_kep2cireq >>