Class TLEPropagatorBuilder
- All Implemented Interfaces:
Cloneable,PropagatorBuilder
- Since:
- 6.0
- Author:
- Pascal Parraud, Thomas Paulet
-
Constructor Summary
ConstructorsConstructorDescriptionTLEPropagatorBuilder(TLE templateTLE, PositionAngleType positionAngleType, double positionScale, DataContext dataContext, TleGenerationAlgorithm generationAlgorithm) Build a new instance.TLEPropagatorBuilder(TLE templateTLE, PositionAngleType positionAngleType, double positionScale, DataContext dataContext, TleGenerationAlgorithm generationAlgorithm, AttitudeProvider attitudeProvider) Build a new instance.TLEPropagatorBuilder(TLE templateTLE, PositionAngleType positionAngleType, double positionScale, TleGenerationAlgorithm generationAlgorithm) Build a new instance. -
Method Summary
Modifier and TypeMethodDescriptionbuildPropagator(double[] normalizedParameters) Build a propagator.clone().Getter for the template TLE.Methods inherited from class org.orekit.propagation.conversion.AbstractAnalyticalPropagatorBuilder
addImpulseManeuver, buildLeastSquaresModel, clearImpulseManeuvers, getImpulseManeuversMethods inherited from class org.orekit.propagation.conversion.AbstractPropagatorBuilder
addAdditionalDerivativesProvider, addSupportedParameters, buildPropagator, createInitialOrbit, deselectDynamicParameters, getAdditionalDerivativesProviders, getAttitudeProvider, getFrame, getInitialOrbitDate, getMass, getMu, getOrbitalParametersDrivers, getOrbitType, getPositionAngleType, getPositionScale, getPropagationParametersDrivers, getSelectedNormalizedParameters, resetOrbit, setAttitudeProvider, setMass, setParameters
-
Constructor Details
-
TLEPropagatorBuilder
@DefaultDataContext public TLEPropagatorBuilder(TLE templateTLE, PositionAngleType positionAngleType, double positionScale, TleGenerationAlgorithm generationAlgorithm) Build a new instance. This constructor uses thedefault data context.The template TLE is used as a model to
create initial orbit. It defines the inertial frame, the central attraction coefficient, orbit type, satellite number, classification, .... and is also used together with thepositionScaleto convert from thenormalizedparameters used by the callers of this builder to the real orbital parameters.- Parameters:
templateTLE- reference TLE from which real orbits will be builtpositionAngleType- position angle type to usepositionScale- scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)generationAlgorithm- TLE generation algorithm- Since:
- 12.0
- See Also:
-
TLEPropagatorBuilder
public TLEPropagatorBuilder(TLE templateTLE, PositionAngleType positionAngleType, double positionScale, DataContext dataContext, TleGenerationAlgorithm generationAlgorithm) Build a new instance.The template TLE is used as a model to
create initial orbit. It defines the inertial frame, the central attraction coefficient, orbit type, satellite number, classification, .... and is also used together with thepositionScaleto convert from thenormalizedparameters used by the callers of this builder to the real orbital parameters. The default attitude provider is aligned with the orbit's inertial frame.- Parameters:
templateTLE- reference TLE from which real orbits will be builtpositionAngleType- position angle type to usepositionScale- scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)dataContext- used to access frames and time scales.generationAlgorithm- TLE generation algorithm- Since:
- 12.0
- See Also:
-
TLEPropagatorBuilder
public TLEPropagatorBuilder(TLE templateTLE, PositionAngleType positionAngleType, double positionScale, DataContext dataContext, TleGenerationAlgorithm generationAlgorithm, AttitudeProvider attitudeProvider) Build a new instance.The template TLE is used as a model to
create initial orbit. It defines the inertial frame, the central attraction coefficient, orbit type, satellite number, classification, .... and is also used together with thepositionScaleto convert from thenormalizedparameters used by the callers of this builder to the real orbital parameters.- Parameters:
templateTLE- reference TLE from which real orbits will be builtpositionAngleType- position angle type to usepositionScale- scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)dataContext- used to access frames and time scales.generationAlgorithm- TLE generation algorithmattitudeProvider- attitude law to use- Since:
- 12.2
-
-
Method Details
-
clone
..- Overrides:
clonein classAbstractPropagatorBuilder<TLEPropagator>
-
buildPropagator
Build a propagator.- Specified by:
buildPropagatorin interfacePropagatorBuilder- Specified by:
buildPropagatorin classAbstractPropagatorBuilder<TLEPropagator>- Parameters:
normalizedParameters- normalized values for the selected parameters- Returns:
- an initialized propagator
-
getTemplateTLE
Getter for the template TLE.- Returns:
- the template TLE
-