Class AbstractVariableStepIntegratorBuilder
- java.lang.Object
-
- org.orekit.propagation.conversion.AbstractVariableStepIntegratorBuilder
-
- All Implemented Interfaces:
ODEIntegratorBuilder
- Direct Known Subclasses:
AdamsBashforthIntegratorBuilder
,AdamsMoultonIntegratorBuilder
,DormandPrince54IntegratorBuilder
,DormandPrince853IntegratorBuilder
,GraggBulirschStoerIntegratorBuilder
,HighamHall54IntegratorBuilder
public abstract class AbstractVariableStepIntegratorBuilder extends Object implements ODEIntegratorBuilder
Abstract class for integrator builder using variable step size.- Since:
- 12.2
- Author:
- Romain Serra
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractVariableStepIntegratorBuilder(double minStep, double maxStep, double dP)
Constructor.protected
AbstractVariableStepIntegratorBuilder(double minStep, double maxStep, double dP, double dV)
Constructor with expected velocity error.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected double[][]
getTolerances(Orbit orbit, OrbitType orbitType)
Computes tolerances.-
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.ODEIntegratorBuilder
buildIntegrator, buildIntegrator
-
-
-
-
Constructor Detail
-
AbstractVariableStepIntegratorBuilder
protected AbstractVariableStepIntegratorBuilder(double minStep, double maxStep, double dP)
Constructor. Should only use this constructor withOrbit
.- Parameters:
minStep
- minimum step size (s)maxStep
- maximum step size (s)dP
- position error (m)
-
AbstractVariableStepIntegratorBuilder
protected AbstractVariableStepIntegratorBuilder(double minStep, double maxStep, double dP, double dV)
Constructor with expected velocity error.- Parameters:
minStep
- minimum step size (s)maxStep
- maximum step size (s)dP
- position error (m)dV
- velocity error (m/s)
-
-