<< CL_kp_M2E Orbit properties CL_kp_M2v >>

CelestLab >> Orbit properties > CL_kp_M2Ecir

CL_kp_M2Ecir

Mean arg. of latitude to eccentric arg. of latitude (Kepler's equation)

Calling Sequence

psoE = CL_kp_M2Ecir(ex,ey,psoM)

Description

Parameters

ex:

x component of eccentricity vector (PxN or Px1)

ey:

y component of eccentricity vector (PxN or Px1)

psoM:

Mean argument of latitude (=w+M) [rad] (PxN or Px1)

psoE:

Eccentric argument of latitude (=w+E) [rad] (PxN)

Authors

Bibliography

See also

Examples

pom = 2*%pi/3;
ecc = 0.001;
ex = ecc * cos(pom);
ey = ecc * sin(pom);
M = (0:4)*%pi/4;
E = CL_kp_M2Ecir(ex,ey,pom+M) - pom;

// Now using CL_kp_M2E :
E = CL_kp_M2E(ecc,M)
<< CL_kp_M2E Orbit properties CL_kp_M2v >>