<< CL_oe_cireq2car Coordinates and frames CL_oe_convert >>

CelestLab >> Coordinates and frames > CL_oe_cireq2kep

CL_oe_cireq2kep

Circular equatorial orbital elements to Keplerian orbital elements

Calling Sequence

[kep,jacob] = CL_oe_cireq2kep(cireq)

Description

Parameters

cireq:

Circular equatorial orbital elements [sma;ex;ey;ix;iy;L] [m,rad] (6xN)

kep:

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

jacob:

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

Authors

See also

Examples

// Example 1
cireq = [7000.e3; -7e-3; 1e-4; 1e-4; -2e-3; 3];
kep = CL_oe_cireq2kep(cireq);

// Example 2
cireq = [7000.e3; -7e-3; 1e-4; 1e-4; -2e-3; 3];
[kep,jacob1] = CL_oe_cireq2kep(cireq);
[cireq2,jacob2] = CL_oe_kep2cireq(kep);
cireq - cireq2 // zero
jacob1*jacob2 // identity

Report an issue
<< CL_oe_cireq2car Coordinates and frames CL_oe_convert >>