<< CL_op_rava2ae Orbit properties CL_op_repeatGroundTracks >>

CelestLab >> Orbit properties > CL_op_repeat2smaInc

CL_op_repeat2smaInc

Semi major axis and inclination corresponding to (N,P,Q)

Calling Sequence

[sma,inc] = CL_op_repeat2smaInc(N,P,Q,ecc,sso [,incInput,er,mu,j2,rotr_pla,rotr_pla_sun])

Description

Parameters

N:

Values of N (1x1 or 1xNt)

P:

Values of P (1x1 or 1xNt)

Q:

Values of Q (1x1 or 1xNt)

ecc:

Eccentricity (1x1 or 1xNt)

sso:

1 = sun synchronous orbits, 0 = fixed inclination (1x1)

incInput :

(mandatory in case sso=0, unused otherwise) inclinations (rad) (1x1 or 1xNt)

er:

(optional) equatorial radius [m] (default is %CL_eqRad)

mu:

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

j2:

(optional) second zonal harmonic coefficient (default is %CL_j1jn(2))

rotr_pla :

(optional) rotation rate of the planet (default is %CL_rotrBody) (1x1)

rotr_pla_sun :

(optional) mean apparent rotation rate of the Sun around the planet (default is %CL_rotrBodySun) (1x1)

sma:

Semi major axis (m). sma is %nan if value cannot be computed. (1xNt)

inc:

Inclination (rad). inc is %nan if value cannot be computed. (1xNt)

Authors

See also

Examples

N = 15;
P = 3;
Q = 16;
ecc = 0.01;
sso = 0;
incInput = CL_deg2rad(98);
[sma,inc] = CL_op_repeat2smaInc(N,P,Q,ecc,sso,incInput)

N = [15,15];
P = [3,5];
Q = [16,6];
ecc = [0.01, 0.001];
sso = 1 ;
[sma,inc] = CL_op_repeat2smaInc(N,P,Q,ecc,sso)

Report an issue
<< CL_op_rava2ae Orbit properties CL_op_repeatGroundTracks >>