Class NumericalPropagatorBuilder
- All Implemented Interfaces:
Cloneable,PropagatorBuilder
- Since:
- 6.0
- Author:
- Pascal Parraud
-
Constructor Summary
ConstructorsConstructorDescriptionNumericalPropagatorBuilder(Orbit referenceOrbit, ODEIntegratorBuilder builder, PositionAngleType positionAngleType, double positionScale) Build a new instance.NumericalPropagatorBuilder(Orbit referenceOrbit, ODEIntegratorBuilder builder, PositionAngleType positionAngleType, double positionScale, AttitudeProvider attitudeProvider) Build a new instance. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddForceModel(ForceModel model) Add a force model to the global perturbation model.voidaddImpulseManeuver(ImpulseManeuver impulseManeuver) Add impulse maneuver.buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer) Build a new batch least squares model.buildPropagator(double[] normalizedParameters) Build a propagator.voidRemove all impulse maneuvers.clone().Get the list of all force models.Methods inherited from class org.orekit.propagation.conversion.AbstractIntegratedPropagatorBuilder
buildPropagator, getIntegratorBuilder, getPropagationTypeMethods inherited from class org.orekit.propagation.conversion.AbstractPropagatorBuilder
addAdditionalDerivativesProvider, addSupportedParameters, createInitialOrbit, deselectDynamicParameters, getAdditionalDerivativesProviders, getAttitudeProvider, getFrame, getInitialOrbitDate, getMass, getMu, getOrbitalParametersDrivers, getOrbitType, getPositionAngleType, getPositionScale, getPropagationParametersDrivers, getSelectedNormalizedParameters, resetOrbit, setAttitudeProvider, setMass, setParameters
-
Constructor Details
-
NumericalPropagatorBuilder
public NumericalPropagatorBuilder(Orbit referenceOrbit, ODEIntegratorBuilder builder, PositionAngleType positionAngleType, double positionScale) Build a new instance.The reference orbit is used as a model to
create initial orbit. It defines the inertial frame, the central attraction coefficient, 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:
referenceOrbit- reference orbit from which real orbits will be builtbuilder- first order integrator builderpositionAngleType- position angle type to usepositionScale- scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)- Since:
- 8.0
- See Also:
-
NumericalPropagatorBuilder
public NumericalPropagatorBuilder(Orbit referenceOrbit, ODEIntegratorBuilder builder, PositionAngleType positionAngleType, double positionScale, AttitudeProvider attitudeProvider) Build a new instance.The reference orbit is used as a model to
create initial orbit. It defines the inertial frame, the central attraction coefficient, and is also used together with thepositionScaleto convert from thenormalizedparameters used by the callers of this builder to the real orbital parameters.- Parameters:
referenceOrbit- reference orbit from which real orbits will be builtbuilder- first order integrator builderpositionAngleType- position angle type to usepositionScale- scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)attitudeProvider- attitude law.- Since:
- 10.1
-
-
Method Details
-
clone
..- Overrides:
clonein classAbstractPropagatorBuilder<NumericalPropagator>
-
addImpulseManeuver
Add impulse maneuver.- Parameters:
impulseManeuver- impulse maneuver- Since:
- 12.2
-
clearImpulseManeuvers
public void clearImpulseManeuvers()Remove all impulse maneuvers.- Since:
- 12.2
-
getAllForceModels
Get the list of all force models.- Returns:
- the list of all force models
- Since:
- 9.2
-
addForceModel
Add a force model to the global perturbation model.If this method is not called at all, the integrated orbit will follow a Keplerian evolution only.
- Parameters:
model- perturbingForceModelto add
-
buildPropagator
Build a propagator.- Specified by:
buildPropagatorin interfacePropagatorBuilder- Specified by:
buildPropagatorin classAbstractIntegratedPropagatorBuilder<NumericalPropagator>- Parameters:
normalizedParameters- normalized values for the selected parameters- Returns:
- an initialized propagator
-
buildLeastSquaresModel
public BatchLSModel buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer) Build a new batch least squares model.- Parameters:
builders- builders to use for propagationmeasurements- measurementsestimatedMeasurementsParameters- estimated measurements parametersobserver- observer to be notified at model calls- Returns:
- a new model for the Batch Least Squares orbit determination
-