public class CircularParameters extends AbstractOrbitalParameters
The parameters used internally are the circular elements which can be related to keplerian elements as follows:
The conversion equations from and to keplerian elements given above hold only when both sides are unambiguously
defined, i.e. when orbit is neither equatorial nor circular. When orbit is circular (but not equatorial), the
circular parameters are still unambiguously defined whereas some keplerian elements (more precisely ω and
Ω) become ambiguous. When orbit is equatorial, neither the keplerian nor the circular parameters can be defined
unambiguously. equinoctial parameters
is the recommended way to represent orbits.
Constructor and Description |
---|
CircularParameters(double aIn,
double exIn,
double eyIn,
double iIn,
double raanIn,
double alpha,
PositionAngle type,
double mu)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object object)
Test for the equality of two orbits.
|
double |
getA()
Get the semi-major axis.
|
double |
getAlpha(PositionAngle type)
Get the latitude argument.
|
double |
getAlphaE()
Get the eccentric latitude argument.
|
double |
getAlphaM()
Get the mean latitude argument.
|
double |
getAlphaV()
Get the true latitude argument.
|
AlternateEquinoctialParameters |
getAlternateEquinoctialParameters()
Convert current orbital parameters into alternate equinoctial parameters.
|
ApsisAltitudeParameters |
getApsisAltitudeParameters(double ae)
Convert current orbital parameters into apsis (using altitude) parameters.
|
ApsisRadiusParameters |
getApsisRadiusParameters()
Convert current orbital parameters into apsis (using radius) parameters.
|
CartesianParameters |
getCartesianParameters()
Convert current orbital parameters into cartesian parameters.
|
double |
getCircularEx()
Get the first component of the circular eccentricity vector.
|
double |
getCircularEy()
Get the second component of the circular eccentricity vector.
|
CircularParameters |
getCircularParameters()
Convert current orbital parameters into circular parameters.
|
EquatorialParameters |
getEquatorialParameters()
Convert current orbital parameters into equatorial parameters.
|
EquinoctialParameters |
getEquinoctialParameters()
Convert current orbital parameters into equinoctial parameters.
|
double |
getI()
Get the inclination.
|
KeplerianParameters |
getKeplerianParameters()
Convert current orbital parameters into Keplerian parameters.
|
ReentryParameters |
getReentryParameters(double ae,
double f)
Convert current orbital parameters into reentry parameters.
|
double |
getRightAscensionOfAscendingNode()
Get the right ascension of the ascending node.
|
StelaEquinoctialParameters |
getStelaEquinoctialParameters()
Convert current orbital parameters into Stela equinoctial parameters.
|
int |
hashCode()
Get a hashCode for the orbit.
|
String |
toString()
Returns a string representation of this Orbit object.
|
getMu
public CircularParameters(double aIn, double exIn, double eyIn, double iIn, double raanIn, double alpha, PositionAngle type, double mu)
aIn
- semi-major axis (m)exIn
- e cos(ω), first component of circular eccentricity vectoreyIn
- e sin(ω), second component of circular eccentricity vectoriIn
- inclination (rad)raanIn
- right ascension of ascending node (Ω, rad)alpha
- an + ω, mean, eccentric or true latitude argument (rad)type
- type of latitude argumentmu
- central attraction coefficient (m3/s2)IllegalArgumentException
- if eccentricity is equal to 1 or largerpublic double getA()
public double getCircularEx()
public double getCircularEy()
public double getI()
public double getRightAscensionOfAscendingNode()
public double getAlpha(PositionAngle type)
type
- type of the anglepublic double getAlphaV()
public double getAlphaE()
public double getAlphaM()
public CartesianParameters getCartesianParameters()
CartesianParameters
public KeplerianParameters getKeplerianParameters()
KeplerianParameters
public CircularParameters getCircularParameters()
CircularParameters
public EquatorialParameters getEquatorialParameters()
EquatorialParameters
public EquinoctialParameters getEquinoctialParameters()
EquinoctialParameters
public ApsisAltitudeParameters getApsisAltitudeParameters(double ae)
ae
- equatorial radius (m)ApsisAltitudeParameters
public ApsisRadiusParameters getApsisRadiusParameters()
ApsisRadiusParameters
public ReentryParameters getReentryParameters(double ae, double f)
ae
- equatorial radius (m)f
- flattening (f = (a-b)/a)ReentryParameters
public StelaEquinoctialParameters getStelaEquinoctialParameters()
StelaEquinoctialParameters
public AlternateEquinoctialParameters getAlternateEquinoctialParameters()
AlternateEquinoctialParameters
public String toString()
public boolean equals(Object object)
Orbits are considered equals if they have the same type and all their attributes are equals. In particular, the orbits frame are considered equals if they represent the same instance. If they have the same attributes but are not the same instance, the method will return false.
equals
in interface IOrbitalParameters
equals
in class Object
object
- Object to test for equality to thispublic int hashCode()
hashCode
in interface IOrbitalParameters
hashCode
in class Object
Copyright © 2021 CNES. All rights reserved.