Uses of Class
org.orekit.frames.LOFType
-
Packages that use LOFType Package Description org.orekit.estimation.sequential The sequential package provides an implementation of a Kalman Filter engine to perform an orbit determination.org.orekit.files.ccsds.definitions This package contains definitions for CCSDS objects (frames, time systems...).org.orekit.frames This package provides classes to handle frames and transforms between them.org.orekit.propagation Propagationorg.orekit.utils This package provides useful objects. -
-
Uses of LOFType in org.orekit.estimation.sequential
Methods in org.orekit.estimation.sequential that return LOFType Modifier and Type Method Description LOFType
UnivariateProcessNoise. getLofType()
Getter for the lofType.Constructors in org.orekit.estimation.sequential with parameters of type LOFType Constructor Description UnivariateProcessNoise(RealMatrix initialCovarianceMatrix, LOFType lofType, PositionAngleType positionAngleType, UnivariateFunction[] lofCartesianOrbitalParametersEvolution, UnivariateFunction[] propagationParametersEvolution)
Simple constructor.UnivariateProcessNoise(RealMatrix initialCovarianceMatrix, LOFType lofType, PositionAngleType positionAngleType, UnivariateFunction[] lofCartesianOrbitalParametersEvolution, UnivariateFunction[] propagationParametersEvolution, UnivariateFunction[] measurementsParametersEvolution)
Simple constructor. -
Uses of LOFType in org.orekit.files.ccsds.definitions
Methods in org.orekit.files.ccsds.definitions that return LOFType Modifier and Type Method Description LOFType
OrbitRelativeFrame. getLofType()
Get the type of Local Orbital frame. -
Uses of LOFType in org.orekit.frames
Methods in org.orekit.frames that return LOFType Modifier and Type Method Description static LOFType
LOFType. valueOf(String name)
Returns the enum constant of this type with the specified name.static LOFType[]
LOFType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.orekit.frames with parameters of type LOFType Modifier and Type Method Description <T extends CalculusFieldElement<T>>
FieldRotation<T>LOFType. rotationFromLOF(Field<T> field, LOFType fromLOF, FieldPVCoordinates<T> pv)
Get the rotation from inputlocal orbital frame
to the instance.Rotation
LOFType. rotationFromLOF(LOFType fromLOF, PVCoordinates pv)
Get the rotation from inputlocal orbital frame
to the instance. -
Uses of LOFType in org.orekit.propagation
Methods in org.orekit.propagation that return LOFType Modifier and Type Method Description LOFType
AbstractStateCovarianceInterpolator. getOutLOF()
Get output local orbital frame.Constructors in org.orekit.propagation with parameters of type LOFType Constructor Description AbstractStateCovarianceInterpolator(int interpolationPoints, double extrapolationThreshold, TimeInterpolator<Orbit> orbitInterpolator, LOFType outLOF)
Constructor.StateCovarianceBlender(SmoothStepFactory.SmoothStepFunction blendingFunction, TimeInterpolator<Orbit> orbitInterpolator, LOFType outLOF)
Constructor.StateCovarianceKeplerianHermiteInterpolator(int interpolationPoints, double extrapolationThreshold, TimeInterpolator<Orbit> orbitInterpolator, CartesianDerivativesFilter filter, LOFType outLOF)
Constructor using an output local orbital frame.StateCovarianceKeplerianHermiteInterpolator(int interpolationPoints, TimeInterpolator<Orbit> orbitInterpolator, LOFType outLOF)
Constructor using an output local orbital frame and : Default extrapolation threshold value (DEFAULT_EXTRAPOLATION_THRESHOLD_SEC
s) Use of position and two time derivatives during interpolation As this implementation of interpolation is polynomial, it should be used only with small number of interpolation points (about 10-20 points) in order to avoid Runge's phenomenon and numerical problems (including NaN appearing).StateCovarianceKeplerianHermiteInterpolator(int interpolationPoints, TimeInterpolator<Orbit> orbitInterpolator, CartesianDerivativesFilter filter, LOFType outLOF)
Constructor using an output local orbital frame and : Use of position and two time derivatives during interpolation As this implementation of interpolation is polynomial, it should be used only with small number of interpolation points (about 10-20 points) in order to avoid Runge's phenomenon and numerical problems (including NaN appearing).StateCovarianceKeplerianHermiteInterpolator(TimeInterpolator<Orbit> orbitInterpolator, LOFType outLOF)
Constructor using an output local orbital frame and : Default number of interpolation points ofDEFAULT_INTERPOLATION_POINTS
Default extrapolation threshold value (DEFAULT_EXTRAPOLATION_THRESHOLD_SEC
s) Use of position and two time derivatives during interpolation As this implementation of interpolation is polynomial, it should be used only with small number of interpolation points (about 10-20 points) in order to avoid Runge's phenomenon and numerical problems (including NaN appearing). -
Uses of LOFType in org.orekit.utils
Methods in org.orekit.utils with parameters of type LOFType Modifier and Type Method Description static RealMatrix
CartesianCovarianceUtils. convertFromLofType(LOFType lofType, RealMatrix covarianceMatrix, Vector3D position, Vector3D velocity)
Convert input position-velocity covariance matrix from local frame to reference one.static RealMatrix
CartesianCovarianceUtils. convertToLofType(Vector3D position, Vector3D velocity, RealMatrix covarianceMatrix, LOFType lofType)
Convert input position-velocity covariance matrix from reference frame to local one.
-