Class HighamHall54IntegratorBuilder
- java.lang.Object
-
- org.orekit.propagation.conversion.AbstractIntegratorBuilder<T>
-
- org.orekit.propagation.conversion.AbstractVariableStepIntegratorBuilder<HighamHall54Integrator>
-
- org.orekit.propagation.conversion.HighamHall54IntegratorBuilder
-
- All Implemented Interfaces:
ExplicitRungeKuttaIntegratorBuilder,ODEIntegratorBuilder
public class HighamHall54IntegratorBuilder extends AbstractVariableStepIntegratorBuilder<HighamHall54Integrator> implements ExplicitRungeKuttaIntegratorBuilder
Builder for HighamHall54Integrator.- Since:
- 6.0
- Author:
- Pascal Parraud
-
-
Constructor Summary
Constructors Constructor Description HighamHall54IntegratorBuilder(double minStep, double maxStep, double dP)Build a new instance using default integration tolerances.HighamHall54IntegratorBuilder(double minStep, double maxStep, ToleranceProvider toleranceProvider)Build a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected HighamHall54IntegratorbuildIntegrator(double[][] tolerances)Builds an integrator from input absolute and relative tolerances.-
Methods inherited from class org.orekit.propagation.conversion.AbstractVariableStepIntegratorBuilder
buildIntegrator, buildIntegrator, getDefaultToleranceProvider, getMaxStep, getMinStep, getTolerances, getTolerances
-
Methods inherited from class org.orekit.propagation.conversion.AbstractIntegratorBuilder
buildIntegrator
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.conversion.ExplicitRungeKuttaIntegratorBuilder
buildIntegrator, buildIntegrator, buildIntegrator
-
-
-
-
Constructor Detail
-
HighamHall54IntegratorBuilder
public HighamHall54IntegratorBuilder(double minStep, double maxStep, double dP)Build a new instance using default integration tolerances.- Parameters:
minStep- minimum step size (s)maxStep- maximum step size (s)dP- position error (m)- See Also:
HighamHall54Integrator
-
HighamHall54IntegratorBuilder
public HighamHall54IntegratorBuilder(double minStep, double maxStep, ToleranceProvider toleranceProvider)Build a new instance.- Parameters:
minStep- minimum step size (s)maxStep- maximum step size (s)toleranceProvider- integration tolerance provider- Since:
- 12.2
- See Also:
HighamHall54Integrator
-
-
Method Detail
-
buildIntegrator
protected HighamHall54Integrator buildIntegrator(double[][] tolerances)
Builds an integrator from input absolute and relative tolerances.- Specified by:
buildIntegratorin classAbstractVariableStepIntegratorBuilder<HighamHall54Integrator>- Parameters:
tolerances- tolerance array- Returns:
- integrator
-
-