public class DSSTPropagatorBuilder extends AbstractPropagatorBuilder implements OrbitDeterminationPropagatorBuilder
Constructor and Description |
---|
DSSTPropagatorBuilder(Orbit referenceOrbit,
ODEIntegratorBuilder builder,
double positionScale,
PropagationType propagationType,
PropagationType stateType)
Build a new instance.
|
DSSTPropagatorBuilder(Orbit referenceOrbit,
ODEIntegratorBuilder builder,
double positionScale,
PropagationType propagationType,
PropagationType stateType,
AttitudeProvider attitudeProvider)
Build a new instance.
|
Modifier and Type | Method and Description |
---|---|
void |
addForceModel(DSSTForceModel model)
Add a force model to the global perturbation model.
|
AbstractKalmanModel |
buildKalmanModel(List<OrbitDeterminationPropagatorBuilder> propagatorBuilders,
List<CovarianceMatrixProvider> covarianceMatricesProviders,
ParameterDriversList estimatedMeasurementsParameters,
CovarianceMatrixProvider measurementProcessNoiseMatrix)
Build a new Kalman model.
|
DSSTBatchLSModel |
buildLSModel(OrbitDeterminationPropagatorBuilder[] builders,
List<ObservedMeasurement<?>> measurements,
ParameterDriversList estimatedMeasurementsParameters,
ModelObserver observer)
Build a new batch least squares model.
|
DSSTPropagator |
buildPropagator(double[] normalizedParameters)
Build a propagator.
|
DSSTPropagatorBuilder |
copy()
Create a copy of a DSSTPropagatorBuilder object.
|
List<DSSTForceModel> |
getAllForceModels()
Get the list of all force models.
|
ODEIntegratorBuilder |
getIntegratorBuilder()
Get the integrator builder.
|
double |
getMass()
Get the mass.
|
PropagationType |
getPropagationType()
Get the type of the orbit used for the propagation (mean or osculating).
|
PropagationType |
getStateType()
Get the type of the elements used to define the orbital state (mean or osculating).
|
void |
resetOrbit(Orbit newOrbit,
PropagationType orbitType)
Reset the orbit in the propagator builder.
|
void |
setMass(double mass)
Set the initial mass.
|
addAdditionalDerivativesProvider, addAdditionalEquations, addSupportedParameter, createInitialOrbit, deselectDynamicParameters, getAdditionalDerivativesProviders, getAdditionalEquations, getAttitudeProvider, getFrame, getInitialOrbitDate, getMu, getOrbitalParametersDrivers, getOrbitType, getPositionAngle, getPositionScale, getPropagationParametersDrivers, getSelectedNormalizedParameters, resetOrbit, setAttitudeProvider, setParameters
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
resetOrbit
getFrame, getInitialOrbitDate, getOrbitalParametersDrivers, getOrbitType, getPositionAngle, getPropagationParametersDrivers, getSelectedNormalizedParameters
public DSSTPropagatorBuilder(Orbit referenceOrbit, ODEIntegratorBuilder builder, double positionScale, PropagationType propagationType, PropagationType stateType)
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 the positionScale
to convert from the normalized
parameters used by the
callers of this builder to the real orbital parameters.
referenceOrbit
- reference orbit from which real orbits will be builtbuilder
- first order integrator builderpositionScale
- scaling factor used for orbital parameters normalization
(typically set to the expected standard deviation of the position)propagationType
- type of the orbit used for the propagation (mean or osculating)stateType
- type of the elements used to define the orbital state (mean or osculating)DSSTPropagatorBuilder(Orbit, ODEIntegratorBuilder, double, PropagationType,
PropagationType, AttitudeProvider)
public DSSTPropagatorBuilder(Orbit referenceOrbit, ODEIntegratorBuilder builder, double positionScale, PropagationType propagationType, PropagationType stateType, AttitudeProvider attitudeProvider)
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 the positionScale
to convert from the normalized
parameters used by the
callers of this builder to the real orbital parameters.
referenceOrbit
- reference orbit from which real orbits will be builtbuilder
- first order integrator builderpositionScale
- scaling factor used for orbital parameters normalization
(typically set to the expected standard deviation of the position)propagationType
- type of the orbit used for the propagation (mean or osculating)stateType
- type of the elements used to define the orbital state (mean or osculating)attitudeProvider
- attitude law.public PropagationType getPropagationType()
public PropagationType getStateType()
public DSSTPropagatorBuilder copy()
public ODEIntegratorBuilder getIntegratorBuilder()
public List<DSSTForceModel> getAllForceModels()
public double getMass()
public void setMass(double mass)
mass
- the mass (kg)public void addForceModel(DSSTForceModel model)
If this method is not called at all, the integrated orbit will follow a Keplerian evolution only.
model
- perturbing DSSTForceModel
to addpublic void resetOrbit(Orbit newOrbit, PropagationType orbitType)
newOrbit
- newOrbit New orbit to set in the propagator builderorbitType
- orbit type (MEAN or OSCULATING)public DSSTPropagator buildPropagator(double[] normalizedParameters)
buildPropagator
in interface PropagatorBuilder
normalizedParameters
- normalized values for the selected parameterspublic DSSTBatchLSModel buildLSModel(OrbitDeterminationPropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)
buildLSModel
in interface OrbitDeterminationPropagatorBuilder
builders
- builders to use for propagationmeasurements
- measurementsestimatedMeasurementsParameters
- estimated measurements parametersobserver
- observer to be notified at model callspublic AbstractKalmanModel buildKalmanModel(List<OrbitDeterminationPropagatorBuilder> propagatorBuilders, List<CovarianceMatrixProvider> covarianceMatricesProviders, ParameterDriversList estimatedMeasurementsParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix)
buildKalmanModel
in interface OrbitDeterminationPropagatorBuilder
propagatorBuilders
- propagators builders used to evaluate the orbits.covarianceMatricesProviders
- providers for covariance matricesestimatedMeasurementsParameters
- measurement parameters to estimatemeasurementProcessNoiseMatrix
- provider for measurement process noise matrixCopyright © 2002-2022 CS GROUP. All rights reserved.