Class DormandPrince853FieldIntegratorBuilder<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.conversion.AbstractVariableStepFieldIntegratorBuilder<T>
-
- org.orekit.propagation.conversion.DormandPrince853FieldIntegratorBuilder<T>
-
- Type Parameters:
T
- type of the field elements
- All Implemented Interfaces:
FieldODEIntegratorBuilder<T>
public class DormandPrince853FieldIntegratorBuilder<T extends CalculusFieldElement<T>> extends AbstractVariableStepFieldIntegratorBuilder<T>
Builder for DormandPrince853FieldIntegrator.- Since:
- 12.0
- Author:
- Pascal Parraud, Vincent Cucchietti
-
-
Constructor Summary
Constructors Constructor Description DormandPrince853FieldIntegratorBuilder(double minStep, double maxStep, double dP)
Build a new instance using default integration tolerances.DormandPrince853FieldIntegratorBuilder(double minStep, double maxStep, ToleranceProvider toleranceProvider)
Build a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected DormandPrince853FieldIntegrator<T>
buildIntegrator(Field<T> field, double[][] tolerances)
Build integrator from absolute and relative tolerances.DormandPrince853IntegratorBuilder
toODEIntegratorBuilder()
Form a non-Field equivalent.-
Methods inherited from class org.orekit.propagation.conversion.AbstractVariableStepFieldIntegratorBuilder
buildIntegrator, buildIntegrator, getDefaultToleranceProvider, getMaxStep, getMinStep, getToleranceProvider, getTolerances, getTolerances
-
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.FieldODEIntegratorBuilder
buildIntegrator, buildIntegrator
-
-
-
-
Constructor Detail
-
DormandPrince853FieldIntegratorBuilder
public DormandPrince853FieldIntegratorBuilder(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:
DormandPrince853FieldIntegrator
-
DormandPrince853FieldIntegratorBuilder
public DormandPrince853FieldIntegratorBuilder(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:
- 13.0
- See Also:
DormandPrince853FieldIntegrator
-
-
Method Detail
-
buildIntegrator
protected DormandPrince853FieldIntegrator<T> buildIntegrator(Field<T> field, double[][] tolerances)
Build integrator from absolute and relative tolerances.- Specified by:
buildIntegrator
in classAbstractVariableStepFieldIntegratorBuilder<T extends CalculusFieldElement<T>>
- Parameters:
field
- fieldtolerances
- array of tolerances- Returns:
- integrator
-
toODEIntegratorBuilder
public DormandPrince853IntegratorBuilder toODEIntegratorBuilder()
Form a non-Field equivalent.- Returns:
- ODE integrator builder
-
-