Class KeplerianPropagatorBuilder

All Implemented Interfaces:
Cloneable, PropagatorBuilder

public class KeplerianPropagatorBuilder extends AbstractAnalyticalPropagatorBuilder<KeplerianPropagator>
Builder for Keplerian propagator.
Since:
6.0
Author:
Pascal Parraud
  • Constructor Details

    • KeplerianPropagatorBuilder

      public KeplerianPropagatorBuilder(Orbit templateOrbit, PositionAngleType positionAngleType, double positionScale)
      Build a new instance.

      The template orbit is used as a model to create initial orbit. It defines the inertial frame, the central attraction coefficient, the orbit type, 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. The default attitude provider is aligned with the orbit's inertial frame.

      Parameters:
      templateOrbit - reference orbit from which real orbits will be built
      positionAngleType - position angle type to use
      positionScale - scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)
      Since:
      8.0
      See Also:
    • KeplerianPropagatorBuilder

      public KeplerianPropagatorBuilder(Orbit templateOrbit, PositionAngleType positionAngleType, double positionScale, AttitudeProvider attitudeProvider)
      Build a new instance.

      The template orbit is used as a model to create initial orbit. It defines the inertial frame, the central attraction coefficient, the orbit type, 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.

      Parameters:
      templateOrbit - reference orbit from which real orbits will be built
      positionAngleType - position angle type to use
      positionScale - scaling factor used for orbital parameters normalization (typically set to the expected standard deviation of the position)
      attitudeProvider - attitude law to use.
      Since:
      10.1
  • Method Details